Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Shiba Inu
Overview
Max Total Supply
5,044,447,445,957.359144301444745829 xSHIB
Holders
40,418 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000007963210323 xSHIBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BuryShib
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 5000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.6.12;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/math/SafeMath.sol";// BuryShib is the coolest pit in town. You come in with some Shib, and leave with more! The longer you stay, the more Shib you get.//// This contract handles swapping to and from xShib.contract BuryShib is ERC20("xShib Staked Shiba Inu", "xSHIB"){using SafeMath for uint256;IERC20 public immutable shib;// Define the Shib token contractconstructor(IERC20 _shib) public {require(address(_shib) != address(0), "_shib is a zero address");shib = _shib;}// Enter the doghouse. Pay some SHIBs. Earn some shares.// Locks Shib and mints xShibfunction enter(uint256 _amount) public {// Gets the amount of Shib locked in the contract
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @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 `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address recipient, uint256 amount) external returns (bool);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;import "../../utils/Context.sol";import "./IERC20.sol";import "../../math/SafeMath.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin guidelines: functions revert instead* of returning `false` on failure. This behavior is nonetheless conventional* and does not conflict with the expectations of ERC20 applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.* This allows applications to reconstruct the allowance for all accounts just* by listening to said events. Other implementations of the EIP may not emit
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.8.0;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {uint256 c = a + b;if (c < a) return (false, 0);
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <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 GSN 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 payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 5000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}},"metadata": {"useLiteralContent": true},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_shib","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shib","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200135638038062001356833981810160405260208110156200003757600080fd5b5051604080518082018252601681527f7853686962205374616b656420536869626120496e75000000000000000000006020828101918252835180850190945260058452643c29a424a160d91b9084015281519192916200009b9160039162000133565b508051620000b190600490602084019062000133565b50506005805460ff19166012179055506001600160a01b0381166200011d576040805162461bcd60e51b815260206004820152601760248201527f5f736869622069732061207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b60601b6001600160601b031916608052620001cf565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b60805160601c61115562000201600039806104c4528061054b528061063b52806107ba52806108e252506111556000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806367dfd4c91161008c578063a457c2d711610066578063a457c2d7146102b7578063a59f3e0c146102e3578063a9059cbb14610300578063dd62ed3e1461032c576100ea565b806367dfd4c91461026a57806370a082311461028957806395d89b41146102af576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc5780633726b0a21461021a578063395093511461023e576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761035a565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561040e565b604080519115158252519081900360200190f35b6101b461042c565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610432565b6102046104b9565b6040805160ff9092168252519081900360200190f35b6102226104c2565b604080516001600160a01b039092168252519081900360200190f35b6101986004803603604081101561025457600080fd5b506001600160a01b0381351690602001356104e6565b6102876004803603602081101561028057600080fd5b5035610534565b005b6101b46004803603602081101561029f57600080fd5b50356001600160a01b03166106b4565b6100f76106cf565b610198600480360360408110156102cd57600080fd5b506001600160a01b03813516906020013561074e565b610287600480360360208110156102f957600080fd5b50356107b6565b6101986004803603604081101561031657600080fd5b506001600160a01b03813516906020013561092a565b6101b46004803603604081101561034257600080fd5b506001600160a01b038135811691602001351661093e565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b600061042261041b610969565b848461096d565b5060015b92915050565b60025490565b600061043f848484610a59565b6104af8461044b610969565b6104aa85604051806060016040528060288152602001611069602891396001600160a01b038a16600090815260016020526040812090610489610969565b6001600160a01b031681526020810191909152604001600020549190610bb4565b61096d565b5060019392505050565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006104226104f3610969565b846104aa8560016000610504610969565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c4b565b600061053e61042c565b905060006105ef826105e97f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156105b657600080fd5b505afa1580156105ca573d6000803e3d6000fd5b505050506040513d60208110156105e057600080fd5b50518690610cac565b90610d05565b90506105fb3384610d6c565b604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810183905290516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a9059cbb9160448083019260209291908290030181600087803b15801561068357600080fd5b505af1158015610697573d6000803e3d6000fd5b505050506040513d60208110156106ad57600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104045780601f106103d957610100808354040283529160200191610404565b600061042261075b610969565b846104aa856040518060600160405280602581526020016110fb6025913960016000610785610969565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb4565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561082557600080fd5b505afa158015610839573d6000803e3d6000fd5b505050506040513d602081101561084f57600080fd5b50519050600061085d61042c565b905080158061086a575081155b1561087e576108793384610e68565b61089c565b600061088e836105e98685610cac565b905061089a3382610e68565b505b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810185905290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916323b872dd9160648083019260209291908290030181600087803b15801561068357600080fd5b6000610422610937610969565b8484610a59565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166109b25760405162461bcd60e51b81526004018080602001828103825260248152602001806110d76024913960400191505060405180910390fd5b6001600160a01b0382166109f75760405162461bcd60e51b81526004018080602001828103825260228152602001806110006022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a9e5760405162461bcd60e51b81526004018080602001828103825260258152602001806110b26025913960400191505060405180910390fd5b6001600160a01b038216610ae35760405162461bcd60e51b8152600401808060200182810382526023815260200180610fbb6023913960400191505060405180910390fd5b610aee838383610f58565b610b2b81604051806060016040528060268152602001611022602691396001600160a01b0386166000908152602081905260409020549190610bb4565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5a9082610c4b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c435760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c08578181015183820152602001610bf0565b50505050905090810190601f168015610c355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ca5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610cbb57506000610426565b82820282848281610cc857fe5b0414610ca55760405162461bcd60e51b81526004018080602001828103825260218152602001806110486021913960400191505060405180910390fd5b6000808211610d5b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381610d6457fe5b049392505050565b6001600160a01b038216610db15760405162461bcd60e51b81526004018080602001828103825260218152602001806110916021913960400191505060405180910390fd5b610dbd82600083610f58565b610dfa81604051806060016040528060228152602001610fde602291396001600160a01b0385166000908152602081905260409020549190610bb4565b6001600160a01b038316600090815260208190526040902055600254610e209082610f5d565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ec3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610ecf60008383610f58565b600254610edc9082610c4b565b6002556001600160a01b038216600090815260208190526040902054610f029082610c4b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082821115610fb4576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206aea87a795faef05c255456441c3619e599062d6d2a4def427440760fa97ee9e64736f6c634300060c003300000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806367dfd4c91161008c578063a457c2d711610066578063a457c2d7146102b7578063a59f3e0c146102e3578063a9059cbb14610300578063dd62ed3e1461032c576100ea565b806367dfd4c91461026a57806370a082311461028957806395d89b41146102af576100ea565b806323b872dd116100c857806323b872dd146101c6578063313ce567146101fc5780633726b0a21461021a578063395093511461023e576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f761035a565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561040e565b604080519115158252519081900360200190f35b6101b461042c565b60408051918252519081900360200190f35b610198600480360360608110156101dc57600080fd5b506001600160a01b03813581169160208101359091169060400135610432565b6102046104b9565b6040805160ff9092168252519081900360200190f35b6102226104c2565b604080516001600160a01b039092168252519081900360200190f35b6101986004803603604081101561025457600080fd5b506001600160a01b0381351690602001356104e6565b6102876004803603602081101561028057600080fd5b5035610534565b005b6101b46004803603602081101561029f57600080fd5b50356001600160a01b03166106b4565b6100f76106cf565b610198600480360360408110156102cd57600080fd5b506001600160a01b03813516906020013561074e565b610287600480360360208110156102f957600080fd5b50356107b6565b6101986004803603604081101561031657600080fd5b506001600160a01b03813516906020013561092a565b6101b46004803603604081101561034257600080fd5b506001600160a01b038135811691602001351661093e565b60038054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b600061042261041b610969565b848461096d565b5060015b92915050565b60025490565b600061043f848484610a59565b6104af8461044b610969565b6104aa85604051806060016040528060288152602001611069602891396001600160a01b038a16600090815260016020526040812090610489610969565b6001600160a01b031681526020810191909152604001600020549190610bb4565b61096d565b5060019392505050565b60055460ff1690565b7f00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce81565b60006104226104f3610969565b846104aa8560016000610504610969565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610c4b565b600061053e61042c565b905060006105ef826105e97f00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156105b657600080fd5b505afa1580156105ca573d6000803e3d6000fd5b505050506040513d60208110156105e057600080fd5b50518690610cac565b90610d05565b90506105fb3384610d6c565b604080517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810183905290516001600160a01b037f00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce169163a9059cbb9160448083019260209291908290030181600087803b15801561068357600080fd5b505af1158015610697573d6000803e3d6000fd5b505050506040513d60208110156106ad57600080fd5b5050505050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104045780601f106103d957610100808354040283529160200191610404565b600061042261075b610969565b846104aa856040518060600160405280602581526020016110fb6025913960016000610785610969565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610bb4565b60007f00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561082557600080fd5b505afa158015610839573d6000803e3d6000fd5b505050506040513d602081101561084f57600080fd5b50519050600061085d61042c565b905080158061086a575081155b1561087e576108793384610e68565b61089c565b600061088e836105e98685610cac565b905061089a3382610e68565b505b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810185905290516001600160a01b037f00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce16916323b872dd9160648083019260209291908290030181600087803b15801561068357600080fd5b6000610422610937610969565b8484610a59565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166109b25760405162461bcd60e51b81526004018080602001828103825260248152602001806110d76024913960400191505060405180910390fd5b6001600160a01b0382166109f75760405162461bcd60e51b81526004018080602001828103825260228152602001806110006022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a9e5760405162461bcd60e51b81526004018080602001828103825260258152602001806110b26025913960400191505060405180910390fd5b6001600160a01b038216610ae35760405162461bcd60e51b8152600401808060200182810382526023815260200180610fbb6023913960400191505060405180910390fd5b610aee838383610f58565b610b2b81604051806060016040528060268152602001611022602691396001600160a01b0386166000908152602081905260409020549190610bb4565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b5a9082610c4b565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c435760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c08578181015183820152602001610bf0565b50505050905090810190601f168015610c355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610ca5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082610cbb57506000610426565b82820282848281610cc857fe5b0414610ca55760405162461bcd60e51b81526004018080602001828103825260218152602001806110486021913960400191505060405180910390fd5b6000808211610d5b576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381610d6457fe5b049392505050565b6001600160a01b038216610db15760405162461bcd60e51b81526004018080602001828103825260218152602001806110916021913960400191505060405180910390fd5b610dbd82600083610f58565b610dfa81604051806060016040528060228152602001610fde602291396001600160a01b0385166000908152602081905260409020549190610bb4565b6001600160a01b038316600090815260208190526040902055600254610e209082610f5d565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038216610ec3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610ecf60008383610f58565b600254610edc9082610c4b565b6002556001600160a01b038216600090815260208190526040902054610f029082610c4b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082821115610fb4576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206aea87a795faef05c255456441c3619e599062d6d2a4def427440760fa97ee9e64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
-----Decoded View---------------
Arg [0] : _shib (address): 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.