Comment on page
Pet Eggs
ERC20: Eggs are based on the ERC20 standard. For more information, please view the documentation by OpenZeppelin: https://docs.openzeppelin.com/contracts/4.x/erc20
Eggs have 0 decimals
Name | Mainnet | Testnet |
---|---|---|
![]() | 0xa61Bac689AD6867a605633520D70C49e1dCce853 | 0xC6b00B4005883C1Ff09fa1351B0f49027bCAB71a |
![]() | 0xf2D479DaEdE7F9e270a90615F8b1C52F3C487bC7 | 0xdbEE8C336B06f2d30a6d2bB3817a3Ae0E34f4900 |
![]() | 0x8D2bC53106063A37bb3DDFCa8CfC1D262a9BDCeB | 0xA9A8cc1AC7e7505a69cAca2E068716395CebE562 |
![]() | 0x7E121418cC5080C96d967cf6A033B0E541935097 | 0xC2198E513A341DA3Fb26b9dAf8d5b6C5480ceAB4 |
![]() | 0x72F860bF73ffa3FC42B97BbcF43Ae80280CFcdc3 | 0x53b14727E0EdDDFc2958D65Ec6F86D1A3329e72F |
Name | Mainnet | Testnet |
---|---|---|
![]() | 0x29ADd7D022c591D56eb4aFd262075dA900C67ab1 | 0xc9518D678Ea37488E8901b0687C02056CFe88C13 |
![]() | 0xc9731BE04F217543E3010cCbf903E858EFde840f | 0xDEe702F3a2284B8Dbd1C3f7C85E6bda967DC566D |
![]() | 0xb1Ec534fBBfEBd4563A4B0055E744286CE490f26 | 0xF2143c7c8Dfca976415bDf7d37dfa63aed8Ef741 |
![]() | 0xfd29ebdE0dd1331C19BBF54518df94b442ACb38C | 0xBed733A13D2cF00A807427a47B4556Faa649984B |
![]() | 0x0A73aF98781bad9BCb80A71241F129EA877eF1b7 | 0x7E235f17c4ec372F9DD42916Cbd19C5b73d4C22E |
interface IInventoryItem {
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
function allowance(address owner, address spender) view returns (uint256);
function approve(address spender, uint256 amount) returns (bool);
function balanceOf(address account) view returns (uint256);
function burn(uint256 amount);
function burnFrom(address account, uint256 amount);
function decimals() view returns (uint8);
function decreaseAllowance(address spender, uint256 subtractedValue) returns (bool);
function increaseAllowance(address spender, uint256 addedValue) returns (bool);
function name() view returns (string);
function paused() view returns (bool);
function symbol() view returns (string);
function totalSupply() view returns (uint256);
function transfer(address to, uint256 amount) returns (bool);
function transferFrom(address from, address to, uint256 amount) returns (bool);
}
InventoryItem.json
12KB
Code
These contracts have been deprecated and should not be used. They are listed here for data analysis and tracking purposes only.
Name | Mainnet | Testnet |
---|---|---|
![]() | 0x9678518e04Fe02FB30b55e2D0e554E26306d0892 | 0x9D9675170946eAffb3A750DB75AB4B559cC91668 |
![]() | 0x9edb3Da18be4B03857f3d39F83e5C6AAD67bc148 | 0x7b81c426162977525084dEe06Cb9D73F8A9fD77e |
![]() | 0x6d605303e9Ac53C59A3Da1ecE36C9660c7A71da5 | 0xa5fFbff0b47B05cAd7Ab217Ea103F546a4Dae31F |
![]() | 0x95d02C1Dc58F05A015275eB49E107137D9Ee81Dc | 0x2dd97351F41411B2fAf0FbEb4235737815c7857b |
![]() | 0x3dB1fd0Ad479A46216919758144FD15A21C3e93c | 0x6D02EF7f7686c3330a40A0AD9218b66A957C9405 |
Last modified 11mo ago