Source Code
Overview
FTM Balance
0.516677600819319744 FTM
More Info
ContractCreator
Multichain Info
N/A
Latest 25 from a total of 159,668 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add Native Gas | 28000044 | 33 days ago | IN | 1.47560584 FTM | 0.00003023 | ||||
Add Native Gas | 27999848 | 33 days ago | IN | 0 FTM | 0.00007373 | ||||
Add Native Gas | 26953410 | 60 days ago | IN | 0 FTM | 0.00007373 | ||||
Add Native Gas | 26953300 | 60 days ago | IN | 0.18509874 FTM | 0.00003023 | ||||
Add Native Gas | 26950354 | 60 days ago | IN | 0 FTM | 0.00007373 | ||||
Add Native Gas | 26949111 | 61 days ago | IN | 0.17824422 FTM | 0.00003023 | ||||
Add Native Gas | 26706176 | 103 days ago | IN | 0.29707882 FTM | 0.00003023 | ||||
Add Native Gas | 26393029 | 138 days ago | IN | 0.29747703 FTM | 0.00003023 | ||||
Add Native Gas | 26367302 | 147 days ago | IN | 0.28287408 FTM | 0.00003021 | ||||
Add Native Gas | 26367218 | 147 days ago | IN | 0.27649816 FTM | 0.00003021 | ||||
Add Native Gas | 26339775 | 152 days ago | IN | 1.97928803 FTM | 0.00003023 | ||||
Add Native Gas | 26284539 | 158 days ago | IN | 1.90208765 FTM | 0.00003023 | ||||
Add Native Gas | 26262452 | 161 days ago | IN | 1.97182552 FTM | 0.00003023 | ||||
Add Native Gas | 26262445 | 161 days ago | IN | 1.97750698 FTM | 0.00005972 | ||||
Add Native Gas | 26262287 | 161 days ago | IN | 2.984784 FTM | 0.00003023 | ||||
Add Native Gas | 26208396 | 167 days ago | IN | 0.20350469 FTM | 0.00003023 | ||||
Add Native Gas | 26183761 | 170 days ago | IN | 0.37235952 FTM | 0.00003023 | ||||
Add Native Gas | 26183701 | 170 days ago | IN | 0.50656118 FTM | 0.00003023 | ||||
Add Native Gas | 26183297 | 170 days ago | IN | 0.20954601 FTM | 0.00003023 | ||||
Add Native Gas | 26183296 | 170 days ago | IN | 0.20926285 FTM | 0.00003023 | ||||
Add Native Gas | 26183252 | 170 days ago | IN | 0.20812985 FTM | 0.00003023 | ||||
Add Native Gas | 26183176 | 170 days ago | IN | 0.20729568 FTM | 0.00003023 | ||||
Add Native Gas | 26183045 | 170 days ago | IN | 0.21024218 FTM | 0.00003023 | ||||
Add Native Gas | 26182863 | 170 days ago | IN | 0.21395431 FTM | 0.00003023 | ||||
Add Native Gas | 26182793 | 170 days ago | IN | 0.21228301 FTM | 0.00003023 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
26948581 | 61 days ago | 0.21 FTM | ||||
26948560 | 61 days ago | 0.21 FTM | ||||
26948558 | 61 days ago | 0.21 FTM | ||||
26948542 | 61 days ago | 0.21 FTM | ||||
26939198 | 63 days ago | 5 FTM | ||||
26935801 | 64 days ago | 0.21 FTM | ||||
26935766 | 64 days ago | 0.21 FTM | ||||
26935589 | 64 days ago | 0.5 FTM | ||||
26930690 | 65 days ago | 0.21 FTM | ||||
26930598 | 65 days ago | 0.3 FTM | ||||
26930597 | 65 days ago | 0.3 FTM | ||||
26930572 | 65 days ago | 0.3 FTM | ||||
26930567 | 65 days ago | 9 FTM | ||||
26930561 | 65 days ago | 0.0000009 FTM | ||||
26930534 | 65 days ago | 0 FTM | ||||
26930529 | 65 days ago | 0 FTM | ||||
26930290 | 65 days ago | 0.5 FTM | ||||
26930287 | 65 days ago | 0.5 FTM | ||||
26930286 | 65 days ago | 0.5 FTM | ||||
26928446 | 66 days ago | 0.5 FTM | ||||
26928333 | 66 days ago | 0.5 FTM | ||||
26928326 | 66 days ago | 0.5 FTM | ||||
26928244 | 66 days ago | 0.5 FTM | ||||
26915169 | 68 days ago | 0.5 FTM | ||||
26800902 | 89 days ago | 3 FTM |
Loading...
Loading
Contract Name:
AxelarGasReceiverProxy
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at testnet.ftmscan.com on 2022-06-20 */ // Root file: src/gas-receiver/AxelarGasReceiverProxy.sol // SPDX-License-Identifier: MIT pragma solidity 0.8.9; contract AxelarGasReceiverProxy { error SetupFailed(); error EtherNotAccepted(); // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1) bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; constructor(address gasReceiverImplementation, bytes memory params) { // solhint-disable-next-line no-inline-assembly assembly { sstore(_IMPLEMENTATION_SLOT, gasReceiverImplementation) } // solhint-disable-next-line avoid-low-level-calls (bool success, ) = gasReceiverImplementation.delegatecall( //0x9ded06df is the setup selector. abi.encodeWithSelector(0x9ded06df, params) ); if (!success) revert SetupFailed(); } function implementation() public view returns (address implementation_) { // solhint-disable-next-line no-inline-assembly assembly { implementation_ := sload(_IMPLEMENTATION_SLOT) } } // solhint-disable-next-line no-empty-blocks function setup(bytes calldata data) public {} // solhint-disable-next-line no-complex-fallback fallback() external payable { address implementaion_ = implementation(); // solhint-disable-next-line no-inline-assembly assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), implementaion_, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } receive() external payable { revert EtherNotAccepted(); } }
[{"inputs":[{"internalType":"address","name":"gasReceiverImplementation","type":"address"},{"internalType":"bytes","name":"params","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EtherNotAccepted","type":"error"},{"inputs":[],"name":"SetupFailed","type":"error"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161045e38038061045e83398101604081905261002f9161015d565b817f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc556000826001600160a01b0316639ded06df83604051602401610074919061022b565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516100ad919061025e565b600060405180830381855af49150503d80600081146100e8576040519150601f19603f3d011682016040523d82523d6000602084013e6100ed565b606091505b505090508061010f576040516397905dfb60e01b815260040160405180910390fd5b50505061027a565b634e487b7160e01b600052604160045260246000fd5b60005b83811015610148578181015183820152602001610130565b83811115610157576000848401525b50505050565b6000806040838503121561017057600080fd5b82516001600160a01b038116811461018757600080fd5b60208401519092506001600160401b03808211156101a457600080fd5b818501915085601f8301126101b857600080fd5b8151818111156101ca576101ca610117565b604051601f8201601f19908116603f011681019083821181831017156101f2576101f2610117565b8160405282815288602084870101111561020b57600080fd5b61021c83602083016020880161012d565b80955050505050509250929050565b602081526000825180602084015261024a81604085016020870161012d565b601f01601f19169190910160400192915050565b6000825161027081846020870161012d565b9190910192915050565b6101d5806102896000396000f3fe60806040526004361061002d5760003560e01c80635c60da1b146100b45780639ded06df1461010c57610064565b36610064576040517f3733483400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061008e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90503660008037600080366000845af43d6000803e8080156100af573d6000f35b3d6000fd5b3480156100c057600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5460405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561011857600080fd5b5061012b61012736600461012d565b5050565b005b6000806020838503121561014057600080fd5b823567ffffffffffffffff8082111561015857600080fd5b818501915085601f83011261016c57600080fd5b81358181111561017b57600080fd5b86602082850101111561018d57600080fd5b6020929092019691955090935050505056fea2646970667358221220203d39a48f71cd482da7178f46b63c2ea4e679297ac50f0f3aa1c5a5076b40e464736f6c63430008090033000000000000000000000000cd6b34faf1fd1056c728a27426ab6807f84baa1b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000005b593e7b1725dc6fcbbfe80b2415b19153f94a85
Deployed Bytecode
0x60806040526004361061002d5760003560e01c80635c60da1b146100b45780639ded06df1461010c57610064565b36610064576040517f3733483400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061008e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90503660008037600080366000845af43d6000803e8080156100af573d6000f35b3d6000fd5b3480156100c057600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5460405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561011857600080fd5b5061012b61012736600461012d565b5050565b005b6000806020838503121561014057600080fd5b823567ffffffffffffffff8082111561015857600080fd5b818501915085601f83011261016c57600080fd5b81358181111561017b57600080fd5b86602082850101111561018d57600080fd5b6020929092019691955090935050505056fea2646970667358221220203d39a48f71cd482da7178f46b63c2ea4e679297ac50f0f3aa1c5a5076b40e464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cd6b34faf1fd1056c728a27426ab6807f84baa1b000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000005b593e7b1725dc6fcbbfe80b2415b19153f94a85
-----Decoded View---------------
Arg [0] : gasReceiverImplementation (address): 0xCD6b34FaF1FD1056C728A27426AB6807f84BAa1b
Arg [1] : params (bytes): 0x0000000000000000000000005b593e7b1725dc6fcbbfe80b2415b19153f94a85
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000cd6b34faf1fd1056c728a27426ab6807f84baa1b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [3] : 0000000000000000000000005b593e7b1725dc6fcbbfe80b2415b19153f94a85
Deployed Bytecode Sourcemap
122:1862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1955:18;;;;;;;;;;;;;;122:1862;1381:22;1406:16;1138:20;1132:27;;949:228;1406:16;1381:41;;1533:14;1530:1;1527;1514:34;1636:1;1633;1617:14;1614:1;1598:14;1591:5;1578:60;1673:16;1670:1;1667;1652:38;1713:6;1733:68;;;;1852:16;1849:1;1842:27;1733:68;1769:16;1766:1;1759:27;949:228;;;;;;;;;;-1:-1:-1;1138:20:0;1132:27;949:228;;190:42:1;178:55;;;160:74;;148:2;133:18;949:228:0;;;;;;;1235:45;;;;;;;;;;-1:-1:-1;1235:45:0;;;;;:::i;:::-;;;;;;245:591:1;315:6;323;376:2;364:9;355:7;351:23;347:32;344:52;;;392:1;389;382:12;344:52;432:9;419:23;461:18;502:2;494:6;491:14;488:34;;;518:1;515;508:12;488:34;556:6;545:9;541:22;531:32;;601:7;594:4;590:2;586:13;582:27;572:55;;623:1;620;613:12;572:55;663:2;650:16;689:2;681:6;678:14;675:34;;;705:1;702;695:12;675:34;750:7;745:2;736:6;732:2;728:15;724:24;721:37;718:57;;;771:1;768;761:12;718:57;802:2;794:11;;;;;824:6;;-1:-1:-1;245:591:1;;-1:-1:-1;;;;245:591:1:o
Swarm Source
ipfs://203d39a48f71cd482da7178f46b63c2ea4e679297ac50f0f3aa1c5a5076b40e4
Loading...
Loading
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.