Contract
0x2ca21fe3ef379402cb92e5574b92d8091e1aef1e
1
Contract Overview
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x7a16dd66f2dd55c36d42b9fe27f93beae1eaad39bd306c0c6cc58c8d629a9c65 | Swap Out | 63080444 | 8 days 11 hrs ago | 0xc301b8887314530e1ea64c593125421c2190bfaf | IN | 0x2ca21fe3ef379402cb92e5574b92d8091e1aef1e | 0 FTM | 0.007665062934 | |
0xf0e16c08524a740e892c3a3e56c1363a591bedbbc797d6d1ac26b2bf81de71fe | Swap Out | 63080312 | 8 days 11 hrs ago | 0xc301b8887314530e1ea64c593125421c2190bfaf | IN | 0x2ca21fe3ef379402cb92e5574b92d8091e1aef1e | 0 FTM | 0.007617246231 | |
0xcbe9a2585e304a37b3187d05e0a7185304d4361fc46b37cdc618bb12fbad3676 | 0x60806040 | 63079696 | 8 days 11 hrs ago | 0xc301b8887314530e1ea64c593125421c2190bfaf | IN | Create: MultichainDeusEscrow | 0 FTM | 0.069661651844 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xcbe9a2585e304a37b3187d05e0a7185304d4361fc46b37cdc618bb12fbad3676 | 63079696 | 8 days 11 hrs ago | 0xc301b8887314530e1ea64c593125421c2190bfaf | Contract Creation | 0 FTM |
[ Download CSV Export ]
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:
MultichainDeusEscrow
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2023-05-25 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; /************************************************** * Interfaces **************************************************/ interface IERC20 { function approve(address, uint256) external; } interface IRouter { function anySwapOutUnderlying( address token, address to, uint amount, uint toChainID ) external; } /************************************************** * Multichain Escrow **************************************************/ contract MultichainDeusEscrow { address public owner = 0xb532E6deE59b9812bc76f409DF68507a5CbEd7ed; // Multisig address public operator = 0xc301b8887314530E1EA64C593125421C2190BFaf; // c30 address public target = 0x5108C7DeB7deA5E38B4A7CdCA206aC71A33A674a; // VestingDeus on Arbitrum IRouter public constant router = IRouter(0xb576C9403f39829565BD6051695E2AC7Ecf850E2); // Multichain router IERC20 public constant deus = IERC20(0xDE5ed76E7c05eC5e4572CfC88d1ACEA165109E44); // Deus address anyDeus = 0xf7b38053A4885c99279c4955CB843797e04455f8; uint256 constant arbitrumChainId = 42161; // Arbi chain id modifier onlyOwner() { require(msg.sender == owner, "Caller is not the owner"); _; } modifier onlyOperator() { require(msg.sender == operator, "Caller is not the operator"); _; } constructor() { deus.approve(address(router), type(uint256).max); } /************************************************** * Escrow logic **************************************************/ function swapOut(uint256 amount) external onlyOperator { router.anySwapOutUnderlying(anyDeus, target, amount, arbitrumChainId); } /************************************************** * Management **************************************************/ function setOwner(address _owner) external onlyOwner { owner = _owner; } function setTarget(address _target) external onlyOwner { target = _target; } /************************************************** * Execution **************************************************/ enum Operation { Call, DelegateCall } /** * @notice Allow owner to have complete control over vesting contract * @param to The target address * @param value The amount of gas token to send with the transaction * @param data Raw input data * @param operation CALL or DELEGATECALL */ function execute( address to, uint256 value, bytes calldata data, Operation operation ) external onlyOwner returns (bool success) { if (operation == Operation.Call) success = executeCall(to, value, data); else if (operation == Operation.DelegateCall) success = executeDelegateCall(to, data); require(success == true, "Transaction failed"); } /** * @notice Execute an arbitrary call from the context of this contract * @param to The target address * @param value The amount of gas token to send with the transaction * @param data Raw input data */ function executeCall( address to, uint256 value, bytes memory data ) internal returns (bool success) { assembly { success := call( gas(), to, value, add(data, 0x20), mload(data), 0, 0 ) let returnDataSize := returndatasize() returndatacopy(0, 0, returnDataSize) switch success case 0 { revert(0, returnDataSize) } default { return(0, returnDataSize) } } } /** * @notice Execute a delegateCall from the context of this contract * @param to The target address * @param data Raw input data */ function executeDelegateCall( address to, bytes memory data ) internal returns (bool success) { assembly { success := delegatecall( gas(), to, add(data, 0x20), mload(data), 0, 0 ) let returnDataSize := returndatasize() returndatacopy(0, 0, returnDataSize) switch success case 0 { revert(0, returnDataSize) } default { return(0, returnDataSize) } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"deus","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum MultichainDeusEscrow.Operation","name":"operation","type":"uint8"}],"name":"execute","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"setTarget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"target","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405273b532e6dee59b9812bc76f409df68507a5cbed7ed6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c301b8887314530e1ea64c593125421c2190bfaf600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735108c7deb7dea5e38b4a7cdca206ac71a33a674a600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f7b38053a4885c99279c4955cb843797e04455f8600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561016357600080fd5b5073de5ed76e7c05ec5e4572cfc88d1acea165109e4473ffffffffffffffffffffffffffffffffffffffff1663095ea7b373b576c9403f39829565bd6051695e2ac7ecf850e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016101e7929190610278565b600060405180830381600087803b15801561020157600080fd5b505af1158015610215573d6000803e3d6000fd5b505050506102a1565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102498261021e565b9050919050565b6102598161023e565b82525050565b6000819050919050565b6102728161025f565b82525050565b600060408201905061028d6000830185610250565b61029a6020830184610269565b9392505050565b610cb4806102b06000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806374d945d91161006657806374d945d914610120578063776d1a011461013c5780638da5cb5b14610158578063d4b8399214610176578063f887ea401461019457610093565b806313af4035146100985780634bc537a8146100b457806351945447146100d2578063570ca73514610102575b600080fd5b6100b260048036038101906100ad91906107ee565b6101b2565b005b6100bc610283565b6040516100c9919061087a565b60405180910390f35b6100ec60048036038101906100e79190610955565b61029b565b6040516100f991906109f8565b60405180910390f35b61010a61047b565b6040516101179190610a22565b60405180910390f35b61013a60048036038101906101359190610a3d565b6104a1565b005b610156600480360381019061015191906107ee565b6105ff565b005b6101606106d1565b60405161016d9190610a22565b60405180910390f35b61017e6106f5565b60405161018b9190610a22565b60405180910390f35b61019c61071b565b6040516101a99190610a8b565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023790610b03565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b73de5ed76e7c05ec5e4572cfc88d1acea165109e4481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461032c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161032390610b03565b60405180910390fd5b600060018111156103405761033f610b23565b5b82600181111561035357610352610b23565b5b036103ae576103a7868686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610733565b905061042b565b6001808111156103c1576103c0610b23565b5b8260018111156103d4576103d3610b23565b5b0361042a576104278685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061075d565b90505b5b6001151581151514610472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046990610b9e565b60405180910390fd5b95945050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890610c0a565b60405180910390fd5b73b576c9403f39829565bd6051695e2ac7ecf850e273ffffffffffffffffffffffffffffffffffffffff1663edbdf5e2600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461a4b16040518563ffffffff1660e01b81526004016105ca9493929190610c39565b600060405180830381600087803b1580156105e457600080fd5b505af11580156105f8573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490610b03565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73b576c9403f39829565bd6051695e2ac7ecf850e281565b600080600083516020850186885af190503d806000803e816000811461075857816000f35b816000fd5b6000806000835160208501865af490503d806000803e816000811461078157816000f35b816000fd5b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006107bb82610790565b9050919050565b6107cb816107b0565b81146107d657600080fd5b50565b6000813590506107e8816107c2565b92915050565b60006020828403121561080457610803610786565b5b6000610812848285016107d9565b91505092915050565b6000819050919050565b600061084061083b61083684610790565b61081b565b610790565b9050919050565b600061085282610825565b9050919050565b600061086482610847565b9050919050565b61087481610859565b82525050565b600060208201905061088f600083018461086b565b92915050565b6000819050919050565b6108a881610895565b81146108b357600080fd5b50565b6000813590506108c58161089f565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126108f0576108ef6108cb565b5b8235905067ffffffffffffffff81111561090d5761090c6108d0565b5b602083019150836001820283011115610929576109286108d5565b5b9250929050565b6002811061093d57600080fd5b50565b60008135905061094f81610930565b92915050565b60008060008060006080868803121561097157610970610786565b5b600061097f888289016107d9565b9550506020610990888289016108b6565b945050604086013567ffffffffffffffff8111156109b1576109b061078b565b5b6109bd888289016108da565b935093505060606109d088828901610940565b9150509295509295909350565b60008115159050919050565b6109f2816109dd565b82525050565b6000602082019050610a0d60008301846109e9565b92915050565b610a1c816107b0565b82525050565b6000602082019050610a376000830184610a13565b92915050565b600060208284031215610a5357610a52610786565b5b6000610a61848285016108b6565b91505092915050565b6000610a7582610847565b9050919050565b610a8581610a6a565b82525050565b6000602082019050610aa06000830184610a7c565b92915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b6000610aed601783610aa6565b9150610af882610ab7565b602082019050919050565b60006020820190508181036000830152610b1c81610ae0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000610b88601283610aa6565b9150610b9382610b52565b602082019050919050565b60006020820190508181036000830152610bb781610b7b565b9050919050565b7f43616c6c6572206973206e6f7420746865206f70657261746f72000000000000600082015250565b6000610bf4601a83610aa6565b9150610bff82610bbe565b602082019050919050565b60006020820190508181036000830152610c2381610be7565b9050919050565b610c3381610895565b82525050565b6000608082019050610c4e6000830187610a13565b610c5b6020830186610a13565b610c686040830185610c2a565b610c756060830184610c2a565b9594505050505056fea2646970667358221220fa6aaa9d2c2c01391ab8dff4f08d5ccc2ad296b3d38b7f6eec69dd9190ddadb064736f6c63430008110033
Deployed ByteCode Sourcemap
589:4320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2035:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1013:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2732:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;710:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1731:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2129:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;626:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;792:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;892:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2035:86;1304:5;;;;;;;;;;1290:19;;:10;:19;;;1282:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2107:6:::1;2099:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;2035:86:::0;:::o;1013:89::-;1059:42;1013:89;:::o;2732:427::-;2889:12;1304:5;;;;;;;;;;;1290:19;;:10;:19;;;1282:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2931:14:::1;2918:27;;;;;;;;:::i;:::-;;:9;:27;;;;;;;;:::i;:::-;;::::0;2914:180:::1;;2957:28;2969:2;2973:5;2980:4;;2957:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;:28::i;:::-;2947:38;;2914:180;;;3018:22;3005:35:::0;::::1;;;;;;;:::i;:::-;;:9;:35;;;;;;;;:::i;:::-;;::::0;3001:93:::1;;3065:29;3085:2;3089:4;;3065:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;:29::i;:::-;3055:39;;3001:93;2914:180;3124:4;3113:15;;:7;:15;;;3105:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2732:427:::0;;;;;;;:::o;710:68::-;;;;;;;;;;;;;:::o;1731:143::-;1420:8;;;;;;;;;;;1406:22;;:10;:22;;;1398:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;942:42:::1;1797:27;;;1825:7;;;;;;;;;;;1834:6;;;;;;;;;;;1842;1219:5;1797:69;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;1731:143:::0;:::o;2129:90::-;1304:5;;;;;;;;;;1290:19;;:10;:19;;;1282:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2204:7:::1;2195:6;;:16;;;;;;;;;;;;;;;;;;2129:90:::0;:::o;626:65::-;;;;;;;;;;;;:::o;792:66::-;;;;;;;;;;;;;:::o;892:93::-;942:42;892:93;:::o;3407:680::-;3526:12;3762:1;3742;3718:4;3712:11;3688:4;3682;3678:15;3654:5;3633:2;3609:5;3586:192;3575:203;;3814:16;3865:14;3862:1;3859;3844:36;3901:7;3927:1;3922:66;;;;4039:14;4036:1;4029:25;3922:66;3958:14;3955:1;3948:25;4258:648;4361:12;4581:1;4561;4537:4;4531:11;4507:4;4501;4497:15;4476:2;4452:5;4421:176;4410:187;;4633:16;4684:14;4681:1;4678;4663:36;4720:7;4746:1;4741:66;;;;4858:14;4855:1;4848:25;4741:66;4777:14;4774:1;4767:25;88:117:1;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:60::-;1204:3;1225:5;1218:12;;1176:60;;;:::o;1242:142::-;1292:9;1325:53;1343:34;1352:24;1370:5;1352:24;:::i;:::-;1343:34;:::i;:::-;1325:53;:::i;:::-;1312:66;;1242:142;;;:::o;1390:126::-;1440:9;1473:37;1504:5;1473:37;:::i;:::-;1460:50;;1390:126;;;:::o;1522:138::-;1584:9;1617:37;1648:5;1617:37;:::i;:::-;1604:50;;1522:138;;;:::o;1666:155::-;1765:49;1808:5;1765:49;:::i;:::-;1760:3;1753:62;1666:155;;:::o;1827:246::-;1932:4;1970:2;1959:9;1955:18;1947:26;;1983:83;2063:1;2052:9;2048:17;2039:6;1983:83;:::i;:::-;1827:246;;;;:::o;2079:77::-;2116:7;2145:5;2134:16;;2079:77;;;:::o;2162:122::-;2235:24;2253:5;2235:24;:::i;:::-;2228:5;2225:35;2215:63;;2274:1;2271;2264:12;2215:63;2162:122;:::o;2290:139::-;2336:5;2374:6;2361:20;2352:29;;2390:33;2417:5;2390:33;:::i;:::-;2290:139;;;;:::o;2435:117::-;2544:1;2541;2534:12;2558:117;2667:1;2664;2657:12;2681:117;2790:1;2787;2780:12;2817:552;2874:8;2884:6;2934:3;2927:4;2919:6;2915:17;2911:27;2901:122;;2942:79;;:::i;:::-;2901:122;3055:6;3042:20;3032:30;;3085:18;3077:6;3074:30;3071:117;;;3107:79;;:::i;:::-;3071:117;3221:4;3213:6;3209:17;3197:29;;3275:3;3267:4;3259:6;3255:17;3245:8;3241:32;3238:41;3235:128;;;3282:79;;:::i;:::-;3235:128;2817:552;;;;;:::o;3375:112::-;3461:1;3454:5;3451:12;3441:40;;3477:1;3474;3467:12;3441:40;3375:112;:::o;3493:165::-;3552:5;3590:6;3577:20;3568:29;;3606:46;3646:5;3606:46;:::i;:::-;3493:165;;;;:::o;3664:989::-;3774:6;3782;3790;3798;3806;3855:3;3843:9;3834:7;3830:23;3826:33;3823:120;;;3862:79;;:::i;:::-;3823:120;3982:1;4007:53;4052:7;4043:6;4032:9;4028:22;4007:53;:::i;:::-;3997:63;;3953:117;4109:2;4135:53;4180:7;4171:6;4160:9;4156:22;4135:53;:::i;:::-;4125:63;;4080:118;4265:2;4254:9;4250:18;4237:32;4296:18;4288:6;4285:30;4282:117;;;4318:79;;:::i;:::-;4282:117;4431:64;4487:7;4478:6;4467:9;4463:22;4431:64;:::i;:::-;4413:82;;;;4208:297;4544:2;4570:66;4628:7;4619:6;4608:9;4604:22;4570:66;:::i;:::-;4560:76;;4515:131;3664:989;;;;;;;;:::o;4659:90::-;4693:7;4736:5;4729:13;4722:21;4711:32;;4659:90;;;:::o;4755:109::-;4836:21;4851:5;4836:21;:::i;:::-;4831:3;4824:34;4755:109;;:::o;4870:210::-;4957:4;4995:2;4984:9;4980:18;4972:26;;5008:65;5070:1;5059:9;5055:17;5046:6;5008:65;:::i;:::-;4870:210;;;;:::o;5086:118::-;5173:24;5191:5;5173:24;:::i;:::-;5168:3;5161:37;5086:118;;:::o;5210:222::-;5303:4;5341:2;5330:9;5326:18;5318:26;;5354:71;5422:1;5411:9;5407:17;5398:6;5354:71;:::i;:::-;5210:222;;;;:::o;5438:329::-;5497:6;5546:2;5534:9;5525:7;5521:23;5517:32;5514:119;;;5552:79;;:::i;:::-;5514:119;5672:1;5697:53;5742:7;5733:6;5722:9;5718:22;5697:53;:::i;:::-;5687:63;;5643:117;5438:329;;;;:::o;5773:140::-;5837:9;5870:37;5901:5;5870:37;:::i;:::-;5857:50;;5773:140;;;:::o;5919:159::-;6020:51;6065:5;6020:51;:::i;:::-;6015:3;6008:64;5919:159;;:::o;6084:250::-;6191:4;6229:2;6218:9;6214:18;6206:26;;6242:85;6324:1;6313:9;6309:17;6300:6;6242:85;:::i;:::-;6084:250;;;;:::o;6340:169::-;6424:11;6458:6;6453:3;6446:19;6498:4;6493:3;6489:14;6474:29;;6340:169;;;;:::o;6515:173::-;6655:25;6651:1;6643:6;6639:14;6632:49;6515:173;:::o;6694:366::-;6836:3;6857:67;6921:2;6916:3;6857:67;:::i;:::-;6850:74;;6933:93;7022:3;6933:93;:::i;:::-;7051:2;7046:3;7042:12;7035:19;;6694:366;;;:::o;7066:419::-;7232:4;7270:2;7259:9;7255:18;7247:26;;7319:9;7313:4;7309:20;7305:1;7294:9;7290:17;7283:47;7347:131;7473:4;7347:131;:::i;:::-;7339:139;;7066:419;;;:::o;7491:180::-;7539:77;7536:1;7529:88;7636:4;7633:1;7626:15;7660:4;7657:1;7650:15;7677:168;7817:20;7813:1;7805:6;7801:14;7794:44;7677:168;:::o;7851:366::-;7993:3;8014:67;8078:2;8073:3;8014:67;:::i;:::-;8007:74;;8090:93;8179:3;8090:93;:::i;:::-;8208:2;8203:3;8199:12;8192:19;;7851:366;;;:::o;8223:419::-;8389:4;8427:2;8416:9;8412:18;8404:26;;8476:9;8470:4;8466:20;8462:1;8451:9;8447:17;8440:47;8504:131;8630:4;8504:131;:::i;:::-;8496:139;;8223:419;;;:::o;8648:176::-;8788:28;8784:1;8776:6;8772:14;8765:52;8648:176;:::o;8830:366::-;8972:3;8993:67;9057:2;9052:3;8993:67;:::i;:::-;8986:74;;9069:93;9158:3;9069:93;:::i;:::-;9187:2;9182:3;9178:12;9171:19;;8830:366;;;:::o;9202:419::-;9368:4;9406:2;9395:9;9391:18;9383:26;;9455:9;9449:4;9445:20;9441:1;9430:9;9426:17;9419:47;9483:131;9609:4;9483:131;:::i;:::-;9475:139;;9202:419;;;:::o;9627:118::-;9714:24;9732:5;9714:24;:::i;:::-;9709:3;9702:37;9627:118;;:::o;9751:553::-;9928:4;9966:3;9955:9;9951:19;9943:27;;9980:71;10048:1;10037:9;10033:17;10024:6;9980:71;:::i;:::-;10061:72;10129:2;10118:9;10114:18;10105:6;10061:72;:::i;:::-;10143;10211:2;10200:9;10196:18;10187:6;10143:72;:::i;:::-;10225;10293:2;10282:9;10278:18;10269:6;10225:72;:::i;:::-;9751:553;;;;;;;:::o
Swarm Source
ipfs://fa6aaa9d2c2c01391ab8dff4f08d5ccc2ad296b3d38b7f6eec69dd9190ddadb0
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.