More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 169 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem Snake | 18146610 | 39 mins ago | IN | 0 S | 0.00542503 | ||||
Redeem Snake | 18132633 | 2 hrs ago | IN | 0 S | 0.00515636 | ||||
Redeem Snake | 18130703 | 2 hrs ago | IN | 0 S | 0.00390389 | ||||
Redeem Snake | 18128609 | 2 hrs ago | IN | 0 S | 0.00425802 | ||||
Redeem Snake | 18105272 | 4 hrs ago | IN | 0 S | 0.00652563 | ||||
Redeem Snake | 18093453 | 6 hrs ago | IN | 0 S | 0.00978285 | ||||
Redeem Snake | 18086104 | 6 hrs ago | IN | 0 S | 0.00463347 | ||||
Redeem Snake | 18076959 | 7 hrs ago | IN | 0 S | 0.00390318 | ||||
Redeem Snake | 18071608 | 8 hrs ago | IN | 0 S | 0.00462671 | ||||
Redeem Snake | 18061415 | 9 hrs ago | IN | 0 S | 0.00489231 | ||||
Redeem Snake | 18055938 | 10 hrs ago | IN | 0 S | 0.00335665 | ||||
Redeem Snake | 18054449 | 10 hrs ago | IN | 0 S | 0.00335665 | ||||
Redeem Snake | 18047275 | 11 hrs ago | IN | 0 S | 0.00515636 | ||||
Redeem Snake | 18007461 | 16 hrs ago | IN | 0 S | 0.00421225 | ||||
Redeem Snake | 17978844 | 19 hrs ago | IN | 0 S | 0.00463347 | ||||
Redeem Snake | 17967643 | 21 hrs ago | IN | 0 S | 0.00489142 | ||||
Redeem Snake | 17949385 | 23 hrs ago | IN | 0 S | 0.00335665 | ||||
Redeem Snake | 17932783 | 24 hrs ago | IN | 0 S | 0.00390318 | ||||
Redeem Snake | 17917975 | 26 hrs ago | IN | 0 S | 0.00538226 | ||||
Redeem Snake | 17901319 | 27 hrs ago | IN | 0 S | 0.00489071 | ||||
Redeem Snake | 17891644 | 28 hrs ago | IN | 0 S | 0.00557397 | ||||
Redeem Snake | 17870400 | 31 hrs ago | IN | 0 S | 0.00462671 | ||||
Redeem Snake | 17862773 | 31 hrs ago | IN | 0 S | 0.00421165 | ||||
Redeem Snake | 17838827 | 34 hrs ago | IN | 0 S | 0.00432978 | ||||
Redeem Snake | 17832481 | 35 hrs ago | IN | 0 S | 0.00515636 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SnakeRedeem
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Arbiscan on 2023-05-15 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: buybackengine.sol pragma solidity ^0.8.0; contract SnakeRedeem is Ownable, ReentrancyGuard { IERC20 public SNAKE; IERC20 public WSONIC; event Redeem(address indexed user, uint256 amount); event Supply(uint256 amount); event Retrieve(uint256 amount); constructor(IERC20 _SNAKE, IERC20 _WSONIC) { SNAKE = _SNAKE; WSONIC = _WSONIC; } function redeemSnake(uint256 amount) public nonReentrant { require(SNAKE.transferFrom(msg.sender, owner(), amount), "Transfer of SNAKE failed"); require(WSONIC.balanceOf(address(this)) >= amount, "Insufficient WSONIC in contract"); require(WSONIC.transfer(msg.sender, amount), "Transfer of WSONIC failed"); emit Redeem(msg.sender, amount); } function supplyWSONIC(uint256 amount) public onlyOwner { require(WSONIC.transferFrom(msg.sender, address(this), amount), "Supply of WSONIC failed"); emit Supply(amount); } function retrieveWSONIC(uint256 amount) public onlyOwner { require(WSONIC.balanceOf(address(this)) >= amount, "Insufficient WSONIC in contract"); require(WSONIC.transfer(msg.sender, amount), "Retrieval of BASE failed"); emit Retrieve(amount); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"_SNAKE","type":"address"},{"internalType":"contract IERC20","name":"_WSONIC","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Retrieve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Supply","type":"event"},{"inputs":[],"name":"SNAKE","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WSONIC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemSnake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"retrieveWSONIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"supplyWSONIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610a02380380610a0283398101604081905261002f916100d9565b6100383361006d565b60018055600280546001600160a01b039384166001600160a01b0319918216179091556003805492909316911617905561010c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146100d457600080fd5b919050565b600080604083850312156100ec57600080fd5b6100f5836100bd565b9150610103602084016100bd565b90509250929050565b6108e78061011b6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ec578063f2fde38b146100fd578063f3ab6a7e14610110578063f40141931461012357600080fd5b80630a5df1a71461008d57806352eac9c7146100a2578063715018a6146100d15780637e40cec9146100d9575b600080fd5b6100a061009b36600461082d565b610136565b005b6003546100b5906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b6100a06103e7565b6100a06100e736600461082d565b6103fb565b6000546001600160a01b03166100b5565b6100a061010b366004610846565b6105b5565b6100a061011e36600461082d565b61062b565b6002546100b5906001600160a01b031681565b61013e61072a565b6002546001600160a01b03166323b872dd336101626000546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af11580156101b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101da9190610876565b61022b5760405162461bcd60e51b815260206004820152601860248201527f5472616e73666572206f6620534e414b45206661696c6564000000000000000060448201526064015b60405180910390fd5b6003546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015610273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102979190610898565b10156102e55760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742057534f4e494320696e20636f6e7472616374006044820152606401610222565b60035460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035a9190610876565b6103a65760405162461bcd60e51b815260206004820152601960248201527f5472616e73666572206f662057534f4e4943206661696c6564000000000000006044820152606401610222565b60405181815233907f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a69060200160405180910390a26103e460018055565b50565b6103ef610783565b6103f960006107dd565b565b610403610783565b6003546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa15801561044b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046f9190610898565b10156104bd5760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742057534f4e494320696e20636f6e7472616374006044820152606401610222565b60035460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af115801561050e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105329190610876565b61057e5760405162461bcd60e51b815260206004820152601860248201527f52657472696576616c206f662042415345206661696c656400000000000000006044820152606401610222565b6040518181527f7168014d1f0220e0c6fc272f854655453b451835dda3695efdae92ce86fcba6c906020015b60405180910390a150565b6105bd610783565b6001600160a01b0381166106225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610222565b6103e4816107dd565b610633610783565b6003546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190610876565b6106fa5760405162461bcd60e51b815260206004820152601760248201527f537570706c79206f662057534f4e4943206661696c65640000000000000000006044820152606401610222565b6040518181527f1862f918d5600ec0980589e8cc806b3c79b1e762fcbf44cc2947ba12499207eb906020016105aa565b60026001540361077c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610222565b6002600155565b6000546001600160a01b031633146103f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610222565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561083f57600080fd5b5035919050565b60006020828403121561085857600080fd5b81356001600160a01b038116811461086f57600080fd5b9392505050565b60006020828403121561088857600080fd5b8151801515811461086f57600080fd5b6000602082840312156108aa57600080fd5b505191905056fea2646970667358221220336744cb7074519ad7e0fac1c67cef792065e50ffb08aa45d74de682a723128d64736f6c634300081a00330000000000000000000000003a516e01f82c1e18916ed69a81dd498ef64bb157000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ec578063f2fde38b146100fd578063f3ab6a7e14610110578063f40141931461012357600080fd5b80630a5df1a71461008d57806352eac9c7146100a2578063715018a6146100d15780637e40cec9146100d9575b600080fd5b6100a061009b36600461082d565b610136565b005b6003546100b5906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b6100a06103e7565b6100a06100e736600461082d565b6103fb565b6000546001600160a01b03166100b5565b6100a061010b366004610846565b6105b5565b6100a061011e36600461082d565b61062b565b6002546100b5906001600160a01b031681565b61013e61072a565b6002546001600160a01b03166323b872dd336101626000546001600160a01b031690565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604481018490526064016020604051808303816000875af11580156101b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101da9190610876565b61022b5760405162461bcd60e51b815260206004820152601860248201527f5472616e73666572206f6620534e414b45206661696c6564000000000000000060448201526064015b60405180910390fd5b6003546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa158015610273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102979190610898565b10156102e55760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742057534f4e494320696e20636f6e7472616374006044820152606401610222565b60035460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061035a9190610876565b6103a65760405162461bcd60e51b815260206004820152601960248201527f5472616e73666572206f662057534f4e4943206661696c6564000000000000006044820152606401610222565b60405181815233907f222838db2794d11532d940e8dec38ae307ed0b63cd97c233322e221f998767a69060200160405180910390a26103e460018055565b50565b6103ef610783565b6103f960006107dd565b565b610403610783565b6003546040516370a0823160e01b815230600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa15801561044b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061046f9190610898565b10156104bd5760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e742057534f4e494320696e20636f6e7472616374006044820152606401610222565b60035460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af115801561050e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105329190610876565b61057e5760405162461bcd60e51b815260206004820152601860248201527f52657472696576616c206f662042415345206661696c656400000000000000006044820152606401610222565b6040518181527f7168014d1f0220e0c6fc272f854655453b451835dda3695efdae92ce86fcba6c906020015b60405180910390a150565b6105bd610783565b6001600160a01b0381166106225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610222565b6103e4816107dd565b610633610783565b6003546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af115801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae9190610876565b6106fa5760405162461bcd60e51b815260206004820152601760248201527f537570706c79206f662057534f4e4943206661696c65640000000000000000006044820152606401610222565b6040518181527f1862f918d5600ec0980589e8cc806b3c79b1e762fcbf44cc2947ba12499207eb906020016105aa565b60026001540361077c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610222565b6002600155565b6000546001600160a01b031633146103f95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610222565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561083f57600080fd5b5035919050565b60006020828403121561085857600080fd5b81356001600160a01b038116811461086f57600080fd5b9392505050565b60006020828403121561088857600080fd5b8151801515811461086f57600080fd5b6000602082840312156108aa57600080fd5b505191905056fea2646970667358221220336744cb7074519ad7e0fac1c67cef792065e50ffb08aa45d74de682a723128d64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003a516e01f82c1e18916ed69a81dd498ef64bb157000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
-----Decoded View---------------
Arg [0] : _SNAKE (address): 0x3a516e01f82c1e18916ED69a81Dd498eF64bB157
Arg [1] : _WSONIC (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003a516e01f82c1e18916ed69a81dd498ef64bb157
Arg [1] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
SONIC | 100.00% | $0.506064 | 50,591.2441 | $25,602.41 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.