Contract 0xbb62c2c9b77f6d7c26606de9402c177447ef0507 1

 

Contract Overview

Balance:
0 FTM

FTM Value:
$0.00

Token:
Txn Hash Method
Block
From
To
Value [Txn Fee]
0xaba0079b39e66bf020327b3f92d297330086d65f87c3eb5896fdf7b57af888450x60806040630789632023-05-25 20:17:158 days 12 hrs ago0xc301b8887314530e1ea64c593125421c2190bfaf IN  Create: MultichainDeusEscrow0 FTM0.065673399835
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0xaba0079b39e66bf020327b3f92d297330086d65f87c3eb5896fdf7b57af88845630789632023-05-25 20:17:158 days 12 hrs ago 0xc301b8887314530e1ea64c593125421c2190bfaf  Contract Creation0 FTM
[ Download CSV Export 
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:
MultichainDeusEscrow

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *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
    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(address(deus), 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

Contract ABI

[{"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"}]

608060405273b532e6dee59b9812bc76f409df68507a5cbed7ed6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c301b8887314530e1ea64c593125421c2190bfaf600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735108c7deb7dea5e38b4a7cdca206ac71a33a674a600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561010e57600080fd5b5073de5ed76e7c05ec5e4572cfc88d1acea165109e4473ffffffffffffffffffffffffffffffffffffffff1663095ea7b373b576c9403f39829565bd6051695e2ac7ecf850e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610192929190610223565b600060405180830381600087803b1580156101ac57600080fd5b505af11580156101c0573d6000803e3d6000fd5b5050505061024c565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006101f4826101c9565b9050919050565b610204816101e9565b82525050565b6000819050919050565b61021d8161020a565b82525050565b600060408201905061023860008301856101fb565b6102456020830184610214565b9392505050565b610ca68061025b6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806374d945d91161006657806374d945d914610120578063776d1a011461013c5780638da5cb5b14610158578063d4b8399214610176578063f887ea401461019457610093565b806313af4035146100985780634bc537a8146100b457806351945447146100d2578063570ca73514610102575b600080fd5b6100b260048036038101906100ad91906107e0565b6101b2565b005b6100bc610283565b6040516100c9919061086c565b60405180910390f35b6100ec60048036038101906100e79190610947565b61029b565b6040516100f991906109ea565b60405180910390f35b61010a61047b565b6040516101179190610a14565b60405180910390f35b61013a60048036038101906101359190610a2f565b6104a1565b005b610156600480360381019061015191906107e0565b6105f1565b005b6101606106c3565b60405161016d9190610a14565b60405180910390f35b61017e6106e7565b60405161018b9190610a14565b60405180910390f35b61019c61070d565b6040516101a99190610a7d565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023790610af5565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b73de5ed76e7c05ec5e4572cfc88d1acea165109e4481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461032c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161032390610af5565b60405180910390fd5b600060018111156103405761033f610b15565b5b82600181111561035357610352610b15565b5b036103ae576103a7868686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610725565b905061042b565b6001808111156103c1576103c0610b15565b5b8260018111156103d4576103d3610b15565b5b0361042a576104278685858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061074f565b90505b5b6001151581151514610472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161046990610b90565b60405180910390fd5b95945050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890610bfc565b60405180910390fd5b73b576c9403f39829565bd6051695e2ac7ecf850e273ffffffffffffffffffffffffffffffffffffffff1663edbdf5e273de5ed76e7c05ec5e4572cfc88d1acea165109e44600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461a4b16040518563ffffffff1660e01b81526004016105bc9493929190610c2b565b600060405180830381600087803b1580156105d657600080fd5b505af11580156105ea573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461067f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067690610af5565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73b576c9403f39829565bd6051695e2ac7ecf850e281565b600080600083516020850186885af190503d806000803e816000811461074a57816000f35b816000fd5b6000806000835160208501865af490503d806000803e816000811461077357816000f35b816000fd5b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006107ad82610782565b9050919050565b6107bd816107a2565b81146107c857600080fd5b50565b6000813590506107da816107b4565b92915050565b6000602082840312156107f6576107f5610778565b5b6000610804848285016107cb565b91505092915050565b6000819050919050565b600061083261082d61082884610782565b61080d565b610782565b9050919050565b600061084482610817565b9050919050565b600061085682610839565b9050919050565b6108668161084b565b82525050565b6000602082019050610881600083018461085d565b92915050565b6000819050919050565b61089a81610887565b81146108a557600080fd5b50565b6000813590506108b781610891565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126108e2576108e16108bd565b5b8235905067ffffffffffffffff8111156108ff576108fe6108c2565b5b60208301915083600182028301111561091b5761091a6108c7565b5b9250929050565b6002811061092f57600080fd5b50565b60008135905061094181610922565b92915050565b60008060008060006080868803121561096357610962610778565b5b6000610971888289016107cb565b9550506020610982888289016108a8565b945050604086013567ffffffffffffffff8111156109a3576109a261077d565b5b6109af888289016108cc565b935093505060606109c288828901610932565b9150509295509295909350565b60008115159050919050565b6109e4816109cf565b82525050565b60006020820190506109ff60008301846109db565b92915050565b610a0e816107a2565b82525050565b6000602082019050610a296000830184610a05565b92915050565b600060208284031215610a4557610a44610778565b5b6000610a53848285016108a8565b91505092915050565b6000610a6782610839565b9050919050565b610a7781610a5c565b82525050565b6000602082019050610a926000830184610a6e565b92915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f7420746865206f776e6572000000000000000000600082015250565b6000610adf601783610a98565b9150610aea82610aa9565b602082019050919050565b60006020820190508181036000830152610b0e81610ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b6000610b7a601283610a98565b9150610b8582610b44565b602082019050919050565b60006020820190508181036000830152610ba981610b6d565b9050919050565b7f43616c6c6572206973206e6f7420746865206f70657261746f72000000000000600082015250565b6000610be6601a83610a98565b9150610bf182610bb0565b602082019050919050565b60006020820190508181036000830152610c1581610bd9565b9050919050565b610c2581610887565b82525050565b6000608082019050610c406000830187610a05565b610c4d6020830186610a05565b610c5a6040830185610c1c565b610c676060830184610c1c565b9594505050505056fea264697066735822122017d796bafc5cff1fde8f9e5d685f0b2ef233349ee641004e6cf686a03ee434f364736f6c63430008110033

Deployed ByteCode Sourcemap

589:4259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1974:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1013:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2671:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;710:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1664:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2068:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;626:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;792:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;892:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1974:86;1237:5;;;;;;;;;;1223:19;;:10;:19;;;1215:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2046:6:::1;2038:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;1974:86:::0;:::o;1013:89::-;1059:42;1013:89;:::o;2671:427::-;2828:12;1237:5;;;;;;;;;;;1223:19;;:10;:19;;;1215:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:14:::1;2857:27;;;;;;;;:::i;:::-;;:9;:27;;;;;;;;:::i;:::-;;::::0;2853:180:::1;;2896:28;2908:2;2912:5;2919:4;;2896:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;:28::i;:::-;2886:38;;2853:180;;;2957:22;2944:35:::0;::::1;;;;;;;:::i;:::-;;:9;:35;;;;;;;;:::i;:::-;;::::0;2940:93:::1;;3004:29;3024:2;3028:4;;3004:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:19;:29::i;:::-;2994:39;;2940:93;2853:180;3063:4;3052:15;;:7;:15;;;3044:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:427:::0;;;;;;;:::o;710:68::-;;;;;;;;;;;;;:::o;1664:149::-;1353:8;;;;;;;;;;;1339:22;;:10;:22;;;1331:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;942:42:::1;1730:27;;;1059:42;1773:6;;;;;;;;;;;1781;1152:5;1730:75;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;1664:149:::0;:::o;2068:90::-;1237:5;;;;;;;;;;1223:19;;:10;:19;;;1215:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;2143:7:::1;2134:6;;:16;;;;;;;;;;;;;;;;;;2068:90:::0;:::o;626:65::-;;;;;;;;;;;;:::o;792:66::-;;;;;;;;;;;;;:::o;892:93::-;942:42;892:93;:::o;3346:680::-;3465:12;3701:1;3681;3657:4;3651:11;3627:4;3621;3617:15;3593:5;3572:2;3548:5;3525:192;3514:203;;3753:16;3804:14;3801:1;3798;3783:36;3840:7;3866:1;3861:66;;;;3978:14;3975:1;3968:25;3861:66;3897:14;3894:1;3887:25;4197:648;4300:12;4520:1;4500;4476:4;4470:11;4446:4;4440;4436:15;4415:2;4391:5;4360:176;4349:187;;4572:16;4623:14;4620:1;4617;4602:36;4659:7;4685:1;4680:66;;;;4797:14;4794:1;4787:25;4680:66;4716:14;4713:1;4706: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://17d796bafc5cff1fde8f9e5d685f0b2ef233349ee641004e6cf686a03ee434f3
Block Transaction Gas Used Reward
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
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.