Source Code
Overview
S Balance
More Info
ContractCreator
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
26030784 | 9 hrs ago | 0 S | ||||
26030784 | 9 hrs ago | 0 S | ||||
26030763 | 9 hrs ago | 0 S | ||||
26030763 | 9 hrs ago | 0 S | ||||
26030747 | 9 hrs ago | 0 S | ||||
26030747 | 9 hrs ago | 0 S | ||||
26030730 | 9 hrs ago | 0 S | ||||
26030730 | 9 hrs ago | 0 S | ||||
26030715 | 9 hrs ago | 0 S | ||||
26030715 | 9 hrs ago | 0 S | ||||
26030697 | 9 hrs ago | 0 S | ||||
26030697 | 9 hrs ago | 0 S | ||||
26030682 | 9 hrs ago | 0 S | ||||
26030682 | 9 hrs ago | 0 S | ||||
26030667 | 9 hrs ago | 0 S | ||||
26030667 | 9 hrs ago | 0 S | ||||
26030649 | 9 hrs ago | 0 S | ||||
26030649 | 9 hrs ago | 0 S | ||||
26030632 | 9 hrs ago | 0 S | ||||
26030632 | 9 hrs ago | 0 S | ||||
26030614 | 9 hrs ago | 0 S | ||||
26030614 | 9 hrs ago | 0 S | ||||
26030596 | 9 hrs ago | 0 S | ||||
26030596 | 9 hrs ago | 0 S | ||||
26030578 | 9 hrs ago | 0 S |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x4c27B2F5...d4b1a3963 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
sdaemon0xHeadOrTails
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
// File: contracts\openzeppelin\contracts\utils\ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.19; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } } // File: contracts\openzeppelin\contracts\utils\Context.sol pragma solidity ^0.8.19; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: contracts\openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.19; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: contracts/sdaemon0x/games/sdaemon0xHeadOrTails.sol pragma solidity ^0.8.19; interface ISdaemon0x_GameTreasury { function compute_game_price(uint256 amount) external view returns (uint256, uint256); function betGame(address player, uint256 amount) external; function payPlayer(address player, uint256 amount) external; } interface sdeamon0xRandomItf { function beginRandom(sdeamon0xRandomCallback CA) external returns (uint256); } interface sdeamon0xRandomCallback { function onRandomCallback(uint256 uid, uint256 res) external; } /** Head or Tails game. */ contract sdaemon0xHeadOrTails is ReentrancyGuard, Ownable, sdeamon0xRandomCallback { constructor() Ownable(0x88524E752144C15dc1a12BA3978c2d700dc97498) {} uint256 public base_price = 100000 * 10 ** 18; ISdaemon0x_GameTreasury public treasury; sdeamon0xRandomItf public randomizer; function setBasePrice(uint256 price) external onlyOwner { base_price = price; } function setGameTreasury(address addr) external onlyOwner { treasury = ISdaemon0x_GameTreasury(addr); } function setRandomizer(address addr) external onlyOwner { randomizer = sdeamon0xRandomItf(addr); } mapping(uint256 => address) public uid_player; mapping(address => uint256) public player_uid; mapping(address => bool) public playing; mapping(address => bool) public games; function final_price() public view returns (uint256, uint256) { return treasury.compute_game_price(base_price); } function play(bool face_) public nonReentrant returns (bool) { require(!playing[msg.sender]); playing[msg.sender] = true; treasury.betGame(msg.sender, base_price); uint256 uid = randomizer.beginRandom(this); uid_player[uid] = msg.sender; player_uid[msg.sender] = uid; games[msg.sender] = face_; return true; } struct SessionPlayed { address _player; //the Player bool _choice; //the choice of the plyayer bool _face; //the result od random } SessionPlayed[] public played_sessions; function getPlayedSessions() public view returns (uint256) { return played_sessions.length; } function onRandomCallback(uint256 uid, uint256 tos) external { require(msg.sender == address(randomizer)); bool face = ((tos % 1) == 0); address player = uid_player[uid]; uid_player[uid] = address(0); player_uid[player] = 0; bool choice_ = games[player]; if (choice_ == face) treasury.payPlayer(player, base_price * 2); else treasury.payPlayer(player, 0); playing[player] = false; played_sessions.push(SessionPlayed(player, choice_, face)); } }
{ "metadata": { "appendCBOR": true, "bytecodeHash": "ipfs", "useLiteralContent": false }, "optimizer": { "enabled": true, "runs": 1000000 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"base_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"final_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"games","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlayedSessions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"uid","type":"uint256"},{"internalType":"uint256","name":"tos","type":"uint256"}],"name":"onRandomCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"face_","type":"bool"}],"name":"play","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"played_sessions","outputs":[{"internalType":"address","name":"_player","type":"address"},{"internalType":"bool","name":"_choice","type":"bool"},{"internalType":"bool","name":"_face","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"player_uid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"playing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomizer","outputs":[{"internalType":"contract sdeamon0xRandomItf","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setGameTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRandomizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"contract ISdaemon0x_GameTreasury","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uid_player","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826308b309e314610d0d575081631ca594d814610ca95781634ac0b22f14610c4057816361d027b314610bed578163715018a614610b4f578163767bcab514610acc57816379131a1914610a6357816379704402146109df5781638da5cb5b1461098c578163a4b1d16814610607578163b745c5e7146105ca578163c23c87d51461038e578163c35b7add14610332578163de4b3262146102f2578163e7b0a1081461026f578163f10fb5841461021a578163f2fde38b1461012a575063ffbbd3f8146100eb57600080fd5b3461012657817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610126576020906002549051908152f35b5080fd5b919050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102165781359173ffffffffffffffffffffffffffffffffffffffff9182841680940361021257610187610e45565b83156101e3575050600154827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600155167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a380f35b908460249251917f1e4fbdf7000000000000000000000000000000000000000000000000000000008352820152fd5b8480fd5b8280fd5b82843461026c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026c575073ffffffffffffffffffffffffffffffffffffffff60209254169051908152f35b80fd5b9050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261021657359160095483101561026c57506102b8606092610ddf565b50549060ff81519273ffffffffffffffffffffffffffffffffffffffff81168452818160a01c161515602085015260a81c16151590820152f35b8390346101265760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101265761032b610e45565b3560025580f35b9050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610216578160209373ffffffffffffffffffffffffffffffffffffffff92358152600585522054169051908152f35b9190503461021657602091827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126105c657803580151580910361021257600285541461059e5790849160028355338352600785528383209182549260ff84166102125760017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0080951617905573ffffffffffffffffffffffffffffffffffffffff806003541660025490803b1561059a5787517f0ded70b5000000000000000000000000000000000000000000000000000000008152338582019081526020810193909352918791839182908490829060400103925af1801561059057889392918791610577575b5050602490825416918751998a9384927fca28204e00000000000000000000000000000000000000000000000000000000845230908401525af1801561056d57839061053d575b60019495965080845260058752858420337fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905533845260068752858420556008865260ff858420928354169116179055555160018152f35b508486813d8311610566575b6105538183610ed9565b81010312610216579451939485946104e0565b503d610549565b84513d85823e3d90fd5b61058391929450610e96565b6102125786918538610499565b87513d88823e3d90fd5b8680fd5b5090517f3ee5aeb5000000000000000000000000000000000000000000000000000000008152fd5b8380fd5b50503461012657817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610126576020906009549051908152f35b9190503461021657807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102165773ffffffffffffffffffffffffffffffffffffffff908183541633036105c65782358452600560205280842090815492808416927fffffffffffffffffffffffff0000000000000000000000000000000000000000809516905582865260066020528582812055600860205260ff828720541615159160018314600014610917578160035416600254908160011b91808304600214901517156108eb57908189923b156102165783517ff7cf8b2400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8816818b019081526020810193909352918391839182908490829060400103925af180156108e1576108cd575b50505b83875260076020528087207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0081541690558051936060850185811067ffffffffffffffff82111761089f5782528452602084019283528301926001845260095468010000000000000000811015610873578060016107ca9201600955610ddf565b9690966108485750518554925193517fffffffffffffffffffff000000000000000000000000000000000000000000009390931691161791151560a01b74ff0000000000000000000000000000000000000000169190911790151560a81b75ff00000000000000000000000000000000000000000016179091555080f35b87806024927f4e487b7100000000000000000000000000000000000000000000000000000000825252fd5b6024886041897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6041887f4e487b71000000000000000000000000000000000000000000000000000000006000525260246000fd5b6108d690610e96565b61059a578638610746565b83513d84823e3d90fd5b60248960118a7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b868260035416803b1561012657819060448451809481937ff7cf8b240000000000000000000000000000000000000000000000000000000083528a8d8401528160248401525af180156109825761096f575b50610749565b61097b90979197610e96565b9538610969565b82513d8a823e3d90fd5b50503461012657817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101265760209073ffffffffffffffffffffffffffffffffffffffff600154169051908152f35b8390346101265760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610126573573ffffffffffffffffffffffffffffffffffffffff811680910361012657610a37610e45565b7fffffffffffffffffffffffff0000000000000000000000000000000000000000600354161760035580f35b9050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610216573573ffffffffffffffffffffffffffffffffffffffff811680910361021657818360ff92602095526008855220541690519015158152f35b8390346101265760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261012657803573ffffffffffffffffffffffffffffffffffffffff811680910361021657610b25610e45565b7fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905580f35b833461026c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261026c57610b86610e45565b8073ffffffffffffffffffffffffffffffffffffffff6001547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600155167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50503461012657817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101265760209073ffffffffffffffffffffffffffffffffffffffff600354169051908152f35b9050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610216573573ffffffffffffffffffffffffffffffffffffffff811680910361021657818360ff92602095526007855220541690519015158152f35b9050346102165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610216573573ffffffffffffffffffffffffffffffffffffffff811680910361021657828291602094526006845220549051908152f35b908492503461021657827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102165781602481869373ffffffffffffffffffffffffffffffffffffffff6003541690600254907f9b0e98290000000000000000000000000000000000000000000000000000000084528301525afa9081156108e157828092610da8575b505082519182526020820152f35b915091508282813d8311610dd8575b610dc18183610ed9565b8101031261026c5750602081519101518380610d9a565b503d610db7565b600954811015610e165760096000527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0190600090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff600154163303610e6657565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b67ffffffffffffffff8111610eaa57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610eaa5760405256fea2646970667358221220ff70c1dd335041cf6665a2edcfaa1625fc4ccaeebda19fd4217a40719dbbf49164736f6c63430008130033
Deployed Bytecode Sourcemap
8228:2328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8398:45;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:65;;:::i;:::-;7129:22;;7125:93;;8228:2328;;7515:6;8228:2328;;;;;;7515:6;8228:2328;;7565:40;8228:2328;7565:40;;8228:2328;;7125:93;8228:2328;;;;;7175:31;;;;;;8228:2328;7175:31;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9827:38;8228:2328;9827:38;;;;;;;8228:2328;9827:38;;:::i;:::-;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:65;;:::i;:::-;8228:2328;8606:18;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;8899:45;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1999:1;8228:2328;;2820:18;2816:88;;8228:2328;;;1999:1;8228:2328;;9318:10;8228:2328;;9310:7;8228:2328;;;;;;;;;;;;;;9363:4;8228:2328;;;;;;;;;9378:8;8228:2328;;1999:1;8228:2328;9378:40;;;;;;8228:2328;;;9378:40;;9318:10;9378:40;;;8228:2328;;;;;;;;;;;;;;;;;;;;;;;9378:40;;;;;;;;;;;;;;;;8228:2328;;;;;;;;;;;9443:28;;;;;8228:2328;9443:28;;9466:4;9443:28;;;8228:2328;9443:28;;;;;;;;;;8228:2328;9363:4;8228:2328;;;;;;;9482:10;8228:2328;;;;;9318:10;8228:2328;;;;;;;9318:10;8228:2328;;9521:10;8228:2328;;;;;;9560:5;8228:2328;;;;;;;;;;;;;;;;;9363:4;8228:2328;;;9443:28;;;;;;;;;;;;;;;:::i;:::-;;;8228:2328;;;;;;;;;;9443:28;;;;;;;;8228:2328;;;;;;;;;9378:40;;;;;;;:::i;:::-;8228:2328;;9378:40;;;;;;;8228:2328;;;;;;;;;9378:40;8228:2328;;;2816:88;8228:2328;;;2862:30;;;;8228:2328;;;;;;;;;;;;;;;;;;;9949:15;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;10065:10;:33;8228:2328;;;;;;10166:10;8228:2328;;;;;;;;;;;;;;;;;;;;;;10231:10;8228:2328;;;;;;;10279:5;8228:2328;;;;;;;;;;10307:15;8228:2328;10307:15;;10303:135;8228:2328;;;;10337:8;8228:2328;;10364:10;8228:2328;;;;;;;;;10364:10;8228:2328;;;;;;;10337:42;;;;;;;;8228:2328;;;10337:42;;8228:2328;;;10337:42;;;8228:2328;;;;;;;;;;;;;;;;;;;;;;;10337:42;;;;;;;;;;10303:135;;;;8228:2328;;;10449:7;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:36;;8228:2328;;;10508:36;;8228:2328;;;;10487:15;8228:2328;;;;;;;;;;;;10487:15;8228:2328;;:::i;:::-;;;;;;-1:-1:-1;8228:2328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8228:2328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10337:42;;;;:::i;:::-;8228:2328;;10337:42;;;;;8228:2328;;;;;;;;;;;;;;;;;;;10303:135;8228:2328;;10409:8;8228:2328;;10409:29;;;;;8228:2328;;;;;10409:29;;;;8228:2328;10409:29;;;;;;8228:2328;;;;;;10409:29;;;;;;;;10303:135;;;;10409:29;;;;;;;:::i;:::-;;;;;;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;6190:6;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:65;;:::i;:::-;8228:2328;8714:40;8228:2328;;;8714:40;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9049:37;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5973:65;;:::i;:::-;8228:2328;;;;;;;;;;;;;;;;;;;;;5973:65;;:::i;:::-;8228:2328;;7515:6;8228:2328;;;;7515:6;8228:2328;;7565:40;;;;8228:2328;;;;;;;;;;;;;;;;;;8450:39;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9003:39;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8951:45;8228:2328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9174:8;8228:2328;;;9202:10;8228:2328;9174:39;8228:2328;9174:39;;;;8228:2328;9174:39;;;;;;;;8228:2328;9174:39;;;8228:2328;;;;;;;;;;;;;9174:39;;;;;;;;;;;;;;;;;;:::i;:::-;;;8228:2328;;;;;;;;;;;9174:39;;;;;;;;;8228:2328;10487:15;8228:2328;;;;;;10487:15;-1:-1:-1;8228:2328:0;;;;-1:-1:-1;8228:2328:0;:::o;:::-;;;;;;;;;;6280:166;8228:2328;6190:6;8228:2328;;4225:10;6340:23;6336:103;;6280:166::o;6336:103::-;8228:2328;;;6387:40;;;4225:10;6387:40;;;8228:2328;6387:40;8228:2328;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://ff70c1dd335041cf6665a2edcfaa1625fc4ccaeebda19fd4217a40719dbbf491
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.