Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Token | 15841016 | 858 days ago | IN | 0 ETH | 0.00889896 | ||||
Create Token | 12513988 | 1376 days ago | IN | 0 ETH | 0.01196232 | ||||
Create Token | 12513978 | 1376 days ago | IN | 0 ETH | 0.01225408 | ||||
Create Token | 12513974 | 1376 days ago | IN | 0 ETH | 0.01108703 | ||||
Create Token | 12513953 | 1376 days ago | IN | 0 ETH | 0.01167056 | ||||
Create Token | 12513935 | 1376 days ago | IN | 0 ETH | 0.01283761 | ||||
Create Token | 12513915 | 1376 days ago | IN | 0 ETH | 0.0137129 | ||||
Create Token | 12513905 | 1376 days ago | IN | 0 ETH | 0.01487996 | ||||
Create Token | 12513807 | 1376 days ago | IN | 0 ETH | 0.01196232 | ||||
Create Token | 12513790 | 1376 days ago | IN | 0 ETH | 0.01225408 | ||||
Create Token | 12513749 | 1376 days ago | IN | 0 ETH | 0.01575525 | ||||
Create Token | 12513702 | 1376 days ago | IN | 0 ETH | 0.01487996 | ||||
Create Token | 12508352 | 1377 days ago | IN | 0 ETH | 0.01225408 | ||||
Create Token | 12496279 | 1379 days ago | IN | 0 ETH | 0.01750584 | ||||
Create Token | 12496278 | 1379 days ago | IN | 0 ETH | 0.01429643 | ||||
Create Token | 12455970 | 1385 days ago | IN | 0 ETH | 0.02071524 | ||||
Create Token | 12314416 | 1407 days ago | IN | 0 ETH | 0.0128392 |
Latest 17 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15841016 | 858 days ago | Contract Creation | 0 ETH | |||
12513988 | 1376 days ago | Contract Creation | 0 ETH | |||
12513978 | 1376 days ago | Contract Creation | 0 ETH | |||
12513974 | 1376 days ago | Contract Creation | 0 ETH | |||
12513953 | 1376 days ago | Contract Creation | 0 ETH | |||
12513935 | 1376 days ago | Contract Creation | 0 ETH | |||
12513915 | 1376 days ago | Contract Creation | 0 ETH | |||
12513905 | 1376 days ago | Contract Creation | 0 ETH | |||
12513807 | 1376 days ago | Contract Creation | 0 ETH | |||
12513790 | 1376 days ago | Contract Creation | 0 ETH | |||
12513749 | 1376 days ago | Contract Creation | 0 ETH | |||
12513702 | 1376 days ago | Contract Creation | 0 ETH | |||
12508352 | 1377 days ago | Contract Creation | 0 ETH | |||
12496279 | 1379 days ago | Contract Creation | 0 ETH | |||
12496278 | 1379 days ago | Contract Creation | 0 ETH | |||
12455970 | 1385 days ago | Contract Creation | 0 ETH | |||
12314416 | 1407 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
TokenFactory
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-13 */ pragma solidity 0.8.1; /** * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for * deploying minimal proxy contracts, also known as "clones". * * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies * > a minimal bytecode implementation that delegates all calls to a known, fixed address. * * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the * deterministic method. * * _Available since v3.4._ */ library Clones { /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create opcode, which should never revert. */ function clone(address implementation) internal returns (address instance) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create(0, ptr, 0x37) } require(instance != address(0), "ERC1167: create failed"); } /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `implementation` and `salt` multiple time will revert, since * the clones cannot be deployed twice at the same address. */ function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create2(0, ptr, 0x37, salt) } require(instance != address(0), "ERC1167: create2 failed"); } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address implementation, bytes32 salt, address deployer) internal pure returns (address predicted) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) mstore(add(ptr, 0x38), shl(0x60, deployer)) mstore(add(ptr, 0x4c), salt) mstore(add(ptr, 0x6c), keccak256(ptr, 0x37)) predicted := keccak256(add(ptr, 0x37), 0x55) } } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address implementation, bytes32 salt) internal view returns (address predicted) { return predictDeterministicAddress(implementation, salt, address(this)); } } interface ITokenInit { function initialize(string memory name, string memory symbol, uint8 decimals, address owner, bool whitelistState) external; } contract TokenFactory { address public tokenTemplate; constructor(address _tokenTemplate) { tokenTemplate = _tokenTemplate; } event CreateToken(string name, string symbol, uint8 decimals, address owner, bool whitelistState, address contractAddress); function createToken(string memory name, string memory symbol, uint8 decimals, address owner, bool whitelistState) public returns (address) { address tokenAddress = Clones.clone(tokenTemplate); ITokenInit(tokenAddress).initialize(name, symbol, decimals, owner, whitelistState); emit CreateToken(name, symbol, decimals, owner, whitelistState, tokenAddress); return tokenAddress; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_tokenTemplate","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"uint8","name":"decimals","type":"uint8"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"bool","name":"whitelistState","type":"bool"},{"indexed":false,"internalType":"address","name":"contractAddress","type":"address"}],"name":"CreateToken","type":"event"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"whitelistState","type":"bool"}],"name":"createToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenTemplate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516108753803806108758339818101604052810190610032919061008d565b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506100ff565b600081519050610087816100e8565b92915050565b60006020828403121561009f57600080fd5b60006100ad84828501610078565b91505092915050565b60006100c1826100c8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6100f1816100b6565b81146100fc57600080fd5b50565b6107678061010e6000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80630814d3dd1461003b5780635e15a7ce14610059575b600080fd5b610043610089565b6040516100509190610448565b60405180910390f35b610073600480360381019061006e9190610318565b6100ad565b6040516100809190610448565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806100d960008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661019c565b90508073ffffffffffffffffffffffffffffffffffffffff166306ce69fd88888888886040518663ffffffff1660e01b815260040161011c959493929190610463565b600060405180830381600087803b15801561013657600080fd5b505af115801561014a573d6000803e3d6000fd5b505050507f5f41e73439885bb93d3bee5ae13cf3e9e75f18ace0a8c0490e7f06d18124008e878787878786604051610187969594939291906104c4565b60405180910390a18091505095945050505050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201527f5af43d82803e903d91602b57fd5bf3000000000000000000000000000000000060288201526037816000f0915050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561026c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026390610533565b60405180910390fd5b919050565b600061028461027f84610578565b610553565b90508281526020810184848401111561029c57600080fd5b6102a7848285610610565b509392505050565b6000813590506102be816106ec565b92915050565b6000813590506102d381610703565b92915050565b600082601f8301126102ea57600080fd5b81356102fa848260208601610271565b91505092915050565b6000813590506103128161071a565b92915050565b600080600080600060a0868803121561033057600080fd5b600086013567ffffffffffffffff81111561034a57600080fd5b610356888289016102d9565b955050602086013567ffffffffffffffff81111561037357600080fd5b61037f888289016102d9565b945050604061039088828901610303565b93505060606103a1888289016102af565b92505060806103b2888289016102c4565b9150509295509295909350565b6103c8816105c5565b82525050565b6103d7816105d7565b82525050565b60006103e8826105a9565b6103f281856105b4565b935061040281856020860161061f565b61040b816106b2565b840191505092915050565b60006104236016836105b4565b915061042e826106c3565b602082019050919050565b61044281610603565b82525050565b600060208201905061045d60008301846103bf565b92915050565b600060a082019050818103600083015261047d81886103dd565b9050818103602083015261049181876103dd565b90506104a06040830186610439565b6104ad60608301856103bf565b6104ba60808301846103ce565b9695505050505050565b600060c08201905081810360008301526104de81896103dd565b905081810360208301526104f281886103dd565b90506105016040830187610439565b61050e60608301866103bf565b61051b60808301856103ce565b61052860a08301846103bf565b979650505050505050565b6000602082019050818103600083015261054c81610416565b9050919050565b600061055d61056e565b90506105698282610652565b919050565b6000604051905090565b600067ffffffffffffffff82111561059357610592610683565b5b61059c826106b2565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006105d0826105e3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561063d578082015181840152602081019050610622565b8381111561064c576000848401525b50505050565b61065b826106b2565b810181811067ffffffffffffffff8211171561067a57610679610683565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243313136373a20637265617465206661696c656400000000000000000000600082015250565b6106f5816105c5565b811461070057600080fd5b50565b61070c816105d7565b811461071757600080fd5b50565b61072381610603565b811461072e57600080fd5b5056fea2646970667358221220894aedf1b35111e1f677c50c4d6041652b1b01cba1d2bc98e61a3d190fca1b4164736f6c634300080100330000000000000000000000000315bb211153098af4bd71f3d11d08bcae369823
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100365760003560e01c80630814d3dd1461003b5780635e15a7ce14610059575b600080fd5b610043610089565b6040516100509190610448565b60405180910390f35b610073600480360381019061006e9190610318565b6100ad565b6040516100809190610448565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806100d960008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661019c565b90508073ffffffffffffffffffffffffffffffffffffffff166306ce69fd88888888886040518663ffffffff1660e01b815260040161011c959493929190610463565b600060405180830381600087803b15801561013657600080fd5b505af115801561014a573d6000803e3d6000fd5b505050507f5f41e73439885bb93d3bee5ae13cf3e9e75f18ace0a8c0490e7f06d18124008e878787878786604051610187969594939291906104c4565b60405180910390a18091505095945050505050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201527f5af43d82803e903d91602b57fd5bf3000000000000000000000000000000000060288201526037816000f0915050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561026c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026390610533565b60405180910390fd5b919050565b600061028461027f84610578565b610553565b90508281526020810184848401111561029c57600080fd5b6102a7848285610610565b509392505050565b6000813590506102be816106ec565b92915050565b6000813590506102d381610703565b92915050565b600082601f8301126102ea57600080fd5b81356102fa848260208601610271565b91505092915050565b6000813590506103128161071a565b92915050565b600080600080600060a0868803121561033057600080fd5b600086013567ffffffffffffffff81111561034a57600080fd5b610356888289016102d9565b955050602086013567ffffffffffffffff81111561037357600080fd5b61037f888289016102d9565b945050604061039088828901610303565b93505060606103a1888289016102af565b92505060806103b2888289016102c4565b9150509295509295909350565b6103c8816105c5565b82525050565b6103d7816105d7565b82525050565b60006103e8826105a9565b6103f281856105b4565b935061040281856020860161061f565b61040b816106b2565b840191505092915050565b60006104236016836105b4565b915061042e826106c3565b602082019050919050565b61044281610603565b82525050565b600060208201905061045d60008301846103bf565b92915050565b600060a082019050818103600083015261047d81886103dd565b9050818103602083015261049181876103dd565b90506104a06040830186610439565b6104ad60608301856103bf565b6104ba60808301846103ce565b9695505050505050565b600060c08201905081810360008301526104de81896103dd565b905081810360208301526104f281886103dd565b90506105016040830187610439565b61050e60608301866103bf565b61051b60808301856103ce565b61052860a08301846103bf565b979650505050505050565b6000602082019050818103600083015261054c81610416565b9050919050565b600061055d61056e565b90506105698282610652565b919050565b6000604051905090565b600067ffffffffffffffff82111561059357610592610683565b5b61059c826106b2565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006105d0826105e3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561063d578082015181840152602081019050610622565b8381111561064c576000848401525b50505050565b61065b826106b2565b810181811067ffffffffffffffff8211171561067a57610679610683565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243313136373a20637265617465206661696c656400000000000000000000600082015250565b6106f5816105c5565b811461070057600080fd5b50565b61070c816105d7565b811461071757600080fd5b50565b61072381610603565b811461072e57600080fd5b5056fea2646970667358221220894aedf1b35111e1f677c50c4d6041652b1b01cba1d2bc98e61a3d190fca1b4164736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000315bb211153098af4bd71f3d11d08bcae369823
-----Decoded View---------------
Arg [0] : _tokenTemplate (address): 0x0315bb211153098af4bd71F3D11d08bCaE369823
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000315bb211153098af4bd71f3d11d08bcae369823
Deployed Bytecode Sourcemap
3826:716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3857:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4118:421;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3857:28;;;;;;;;;;;;:::o;4118:421::-;4249:7;4269:20;4292:27;4305:13;;;;;;;;;;4292:12;:27::i;:::-;4269:50;;4341:12;4330:35;;;4366:4;4372:6;4380:8;4390:5;4397:14;4330:82;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4428:72;4440:4;4446:6;4454:8;4464:5;4471:14;4487:12;4428:72;;;;;;;;;;;:::i;:::-;;;;;;;;4518:12;4511:19;;;4118:421;;;;;;;:::o;895:581::-;952:16;1079:4;1073:11;1110:66;1105:3;1098:79;1224:14;1218:4;1214:25;1207:4;1202:3;1198:14;1191:49;1277:66;1270:4;1265:3;1261:14;1254:90;1385:4;1380:3;1377:1;1370:20;1358:32;;1047:354;1439:1;1419:22;;:8;:22;;;;1411:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;895:581;;;:::o;7:345:1:-;;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:2;;;292:1;289;282:12;251:2;305:41;339:6;334:3;329;305:41;:::i;:::-;91:261;;;;;;:::o;358:139::-;;442:6;429:20;420:29;;458:33;485:5;458:33;:::i;:::-;410:87;;;;:::o;503:133::-;;584:6;571:20;562:29;;600:30;624:5;600:30;:::i;:::-;552:84;;;;:::o;656:273::-;;761:3;754:4;746:6;742:17;738:27;728:2;;779:1;776;769:12;728:2;819:6;806:20;844:79;919:3;911:6;904:4;896:6;892:17;844:79;:::i;:::-;835:88;;718:211;;;;;:::o;935:135::-;;1017:6;1004:20;995:29;;1033:31;1058:5;1033:31;:::i;:::-;985:85;;;;:::o;1076:1060::-;;;;;;1267:3;1255:9;1246:7;1242:23;1238:33;1235:2;;;1284:1;1281;1274:12;1235:2;1355:1;1344:9;1340:17;1327:31;1385:18;1377:6;1374:30;1371:2;;;1417:1;1414;1407:12;1371:2;1445:63;1500:7;1491:6;1480:9;1476:22;1445:63;:::i;:::-;1435:73;;1298:220;1585:2;1574:9;1570:18;1557:32;1616:18;1608:6;1605:30;1602:2;;;1648:1;1645;1638:12;1602:2;1676:63;1731:7;1722:6;1711:9;1707:22;1676:63;:::i;:::-;1666:73;;1528:221;1788:2;1814:51;1857:7;1848:6;1837:9;1833:22;1814:51;:::i;:::-;1804:61;;1759:116;1914:2;1940:53;1985:7;1976:6;1965:9;1961:22;1940:53;:::i;:::-;1930:63;;1885:118;2042:3;2069:50;2111:7;2102:6;2091:9;2087:22;2069:50;:::i;:::-;2059:60;;2013:116;1225:911;;;;;;;;:::o;2142:118::-;2229:24;2247:5;2229:24;:::i;:::-;2224:3;2217:37;2207:53;;:::o;2266:109::-;2347:21;2362:5;2347:21;:::i;:::-;2342:3;2335:34;2325:50;;:::o;2381:364::-;;2497:39;2530:5;2497:39;:::i;:::-;2552:71;2616:6;2611:3;2552:71;:::i;:::-;2545:78;;2632:52;2677:6;2672:3;2665:4;2658:5;2654:16;2632:52;:::i;:::-;2709:29;2731:6;2709:29;:::i;:::-;2704:3;2700:39;2693:46;;2473:272;;;;;:::o;2751:366::-;;2914:67;2978:2;2973:3;2914:67;:::i;:::-;2907:74;;2990:93;3079:3;2990:93;:::i;:::-;3108:2;3103:3;3099:12;3092:19;;2897:220;;;:::o;3123:112::-;3206:22;3222:5;3206:22;:::i;:::-;3201:3;3194:35;3184:51;;:::o;3241:222::-;;3372:2;3361:9;3357:18;3349:26;;3385:71;3453:1;3442:9;3438:17;3429:6;3385:71;:::i;:::-;3339:124;;;;:::o;3469:826::-;;3742:3;3731:9;3727:19;3719:27;;3792:9;3786:4;3782:20;3778:1;3767:9;3763:17;3756:47;3820:78;3893:4;3884:6;3820:78;:::i;:::-;3812:86;;3945:9;3939:4;3935:20;3930:2;3919:9;3915:18;3908:48;3973:78;4046:4;4037:6;3973:78;:::i;:::-;3965:86;;4061:68;4125:2;4114:9;4110:18;4101:6;4061:68;:::i;:::-;4139:72;4207:2;4196:9;4192:18;4183:6;4139:72;:::i;:::-;4221:67;4283:3;4272:9;4268:19;4259:6;4221:67;:::i;:::-;3709:586;;;;;;;;:::o;4301:937::-;;4602:3;4591:9;4587:19;4579:27;;4652:9;4646:4;4642:20;4638:1;4627:9;4623:17;4616:47;4680:78;4753:4;4744:6;4680:78;:::i;:::-;4672:86;;4805:9;4799:4;4795:20;4790:2;4779:9;4775:18;4768:48;4833:78;4906:4;4897:6;4833:78;:::i;:::-;4825:86;;4921:68;4985:2;4974:9;4970:18;4961:6;4921:68;:::i;:::-;4999:72;5067:2;5056:9;5052:18;5043:6;4999:72;:::i;:::-;5081:67;5143:3;5132:9;5128:19;5119:6;5081:67;:::i;:::-;5158:73;5226:3;5215:9;5211:19;5202:6;5158:73;:::i;:::-;4569:669;;;;;;;;;:::o;5244:419::-;;5448:2;5437:9;5433:18;5425:26;;5497:9;5491:4;5487:20;5483:1;5472:9;5468:17;5461:47;5525:131;5651:4;5525:131;:::i;:::-;5517:139;;5415:248;;;:::o;5669:129::-;;5730:20;;:::i;:::-;5720:30;;5759:33;5787:4;5779:6;5759:33;:::i;:::-;5710:88;;;:::o;5804:75::-;;5870:2;5864:9;5854:19;;5844:35;:::o;5885:308::-;;6037:18;6029:6;6026:30;6023:2;;;6059:18;;:::i;:::-;6023:2;6097:29;6119:6;6097:29;:::i;:::-;6089:37;;6181:4;6175;6171:15;6163:23;;5952:241;;;:::o;6199:99::-;;6285:5;6279:12;6269:22;;6258:40;;;:::o;6304:169::-;;6422:6;6417:3;6410:19;6462:4;6457:3;6453:14;6438:29;;6400:73;;;;:::o;6479:96::-;;6545:24;6563:5;6545:24;:::i;:::-;6534:35;;6524:51;;;:::o;6581:90::-;;6658:5;6651:13;6644:21;6633:32;;6623:48;;;:::o;6677:126::-;;6754:42;6747:5;6743:54;6732:65;;6722:81;;;:::o;6809:86::-;;6884:4;6877:5;6873:16;6862:27;;6852:43;;;:::o;6901:154::-;6985:6;6980:3;6975;6962:30;7047:1;7038:6;7033:3;7029:16;7022:27;6952:103;;;:::o;7061:307::-;7129:1;7139:113;7153:6;7150:1;7147:13;7139:113;;;7238:1;7233:3;7229:11;7223:18;7219:1;7214:3;7210:11;7203:39;7175:2;7172:1;7168:10;7163:15;;7139:113;;;7270:6;7267:1;7264:13;7261:2;;;7350:1;7341:6;7336:3;7332:16;7325:27;7261:2;7110:258;;;;:::o;7374:281::-;7457:27;7479:4;7457:27;:::i;:::-;7449:6;7445:40;7587:6;7575:10;7572:22;7551:18;7539:10;7536:34;7533:62;7530:2;;;7598:18;;:::i;:::-;7530:2;7638:10;7634:2;7627:22;7417:238;;;:::o;7661:180::-;7709:77;7706:1;7699:88;7806:4;7803:1;7796:15;7830:4;7827:1;7820:15;7847:102;;7939:2;7935:7;7930:2;7923:5;7919:14;7915:28;7905:38;;7895:54;;;:::o;7955:172::-;8095:24;8091:1;8083:6;8079:14;8072:48;8061:66;:::o;8133:122::-;8206:24;8224:5;8206:24;:::i;:::-;8199:5;8196:35;8186:2;;8245:1;8242;8235:12;8186:2;8176:79;:::o;8261:116::-;8331:21;8346:5;8331:21;:::i;:::-;8324:5;8321:32;8311:2;;8367:1;8364;8357:12;8311:2;8301:76;:::o;8383:118::-;8454:22;8470:5;8454:22;:::i;:::-;8447:5;8444:33;8434:2;;8491:1;8488;8481:12;8434:2;8424:77;:::o
Swarm Source
ipfs://894aedf1b35111e1f677c50c4d6041652b1b01cba1d2bc98e61a3d190fca1b41
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.