Overview
GLMR Balance
1,568.047632682332966678 GLMR
GLMR Value
$571.29 (@ $0.36/GLMR)More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 21,358 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Add Native Gas | 8521954 | 8 days ago | IN | 5.95591886 GLMR | 0.029032 | ||||
Add Native Gas | 8486188 | 10 days ago | IN | 0.84181645 GLMR | 0.02919974 | ||||
Add Native Gas | 8486007 | 10 days ago | IN | 4.2034021 GLMR | 0.03429811 | ||||
Add Native Gas | 8481271 | 10 days ago | IN | 0.78416883 GLMR | 0.029032 | ||||
Add Native Gas | 8464814 | 12 days ago | IN | 4.42915518 GLMR | 0.0638704 | ||||
Add Native Gas | 8460688 | 12 days ago | IN | 0.71257206 GLMR | 0.0347616 | ||||
Add Native Gas | 8457483 | 12 days ago | IN | 0.71557606 GLMR | 0.0319352 | ||||
Add Native Gas | 8453505 | 12 days ago | IN | 1.09860479 GLMR | 0.029032 | ||||
Add Native Gas | 8444466 | 13 days ago | IN | 1.03407169 GLMR | 0.029032 | ||||
Add Native Gas | 8325655 | 21 days ago | IN | 4.52155121 GLMR | 0.029032 | ||||
Add Native Gas | 7901345 | 51 days ago | IN | 1.11775223 GLMR | 0.02903231 | ||||
Add Native Gas | 7742255 | 63 days ago | IN | 3.52216051 GLMR | 0.029032 | ||||
Add Native Gas | 7703421 | 65 days ago | IN | 1.44430509 GLMR | 0.02903627 | ||||
Add Native Gas | 7648134 | 69 days ago | IN | 3.14621702 GLMR | 0.02919974 | ||||
Add Native Gas | 7603269 | 72 days ago | IN | 0.9538376 GLMR | 0.029032 | ||||
Add Native Gas | 7538530 | 77 days ago | IN | 1.34969179 GLMR | 0.02171593 | ||||
Add Native Gas | 7232939 | 99 days ago | IN | 3.14690238 GLMR | 0.00731418 | ||||
Add Native Gas | 7232930 | 99 days ago | IN | 3.15559247 GLMR | 0.0079838 | ||||
Add Native Gas | 7077411 | 109 days ago | IN | 3.40543168 GLMR | 0.007242 | ||||
Add Native Gas | 6891353 | 123 days ago | IN | 1.5375635 GLMR | 0.007258 | ||||
Add Native Gas | 6891353 | 123 days ago | IN | 9.51808575 GLMR | 0.007258 | ||||
Add Native Gas | 6889285 | 123 days ago | IN | 1.4975814 GLMR | 0.007258 | ||||
Add Native Gas | 6889285 | 123 days ago | IN | 2.00817409 GLMR | 0.007258 | ||||
Add Native Gas | 6889285 | 123 days ago | IN | 2.00817409 GLMR | 0.007258 | ||||
Add Native Gas | 6889285 | 123 days ago | IN | 0.99677248 GLMR | 0.007258 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
8635198 | 45 mins ago | 1.22436197 GLMR | ||||
8635029 | 1 hr ago | 0.96031837 GLMR | ||||
8634688 | 1 hr ago | 0.69997057 GLMR | ||||
8634554 | 1 hr ago | 3.78104962 GLMR | ||||
8634543 | 1 hr ago | 0.87530774 GLMR | ||||
8634322 | 2 hrs ago | 0.9616814 GLMR | ||||
8634316 | 2 hrs ago | 0.96071567 GLMR | ||||
8634294 | 2 hrs ago | 0.9616814 GLMR | ||||
8634274 | 2 hrs ago | 0.81486835 GLMR | ||||
8634226 | 2 hrs ago | 0.85442972 GLMR | ||||
8634225 | 2 hrs ago | 0.96335787 GLMR | ||||
8634208 | 2 hrs ago | 0.96335787 GLMR | ||||
8634164 | 2 hrs ago | 0.96456504 GLMR | ||||
8634150 | 2 hrs ago | 0.96456504 GLMR | ||||
8634142 | 2 hrs ago | 0.96456504 GLMR | ||||
8634140 | 2 hrs ago | 0.83455535 GLMR | ||||
8634106 | 2 hrs ago | 0.96602539 GLMR | ||||
8634007 | 2 hrs ago | 0.96861411 GLMR | ||||
8633911 | 2 hrs ago | 3.23805387 GLMR | ||||
8633894 | 3 hrs ago | 1.27724954 GLMR | ||||
8633871 | 3 hrs ago | 0.96963844 GLMR | ||||
8633814 | 3 hrs ago | 0.9669949 GLMR | ||||
8633691 | 3 hrs ago | 0.96938984 GLMR | ||||
8633588 | 3 hrs ago | 0.9683325 GLMR | ||||
8633481 | 3 hrs ago | 0.97246123 GLMR |
Loading...
Loading
Contract Name:
AxelarGasServiceProxy
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at moonbeam.moonscan.io on 2022-09-02 */ /** *Submitted for verification at Etherscan.io on 2022-08-31 */ // Sources flattened with hardhat v2.9.9 https://hardhat.org // File contracts/interfaces/IUpgradable.sol // SPDX-License-Identifier: MIT pragma solidity 0.8.9; // General interface for upgradable contracts interface IUpgradable { error NotOwner(); error InvalidOwner(); error InvalidCodeHash(); error InvalidImplementation(); error SetupFailed(); error NotProxy(); event Upgraded(address indexed newImplementation); event OwnershipTransferred(address indexed newOwner); // Get current owner function owner() external view returns (address); function contractId() external pure returns (bytes32); function implementation() external view returns (address); function upgrade( address newImplementation, bytes32 newImplementationCodeHash, bytes calldata params ) external; function setup(bytes calldata data) external; } // File contracts/util/Proxy.sol contract Proxy { error InvalidImplementation(); error SetupFailed(); error EtherNotAccepted(); error NotOwner(); error AlreadyInitialized(); // bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1) bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; // keccak256('owner') bytes32 internal constant _OWNER_SLOT = 0x02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0; constructor() { // solhint-disable-next-line no-inline-assembly assembly { sstore(_OWNER_SLOT, caller()) } } function init( address implementationAddress, address newOwner, bytes memory params ) external { address owner; // solhint-disable-next-line no-inline-assembly assembly { owner := sload(_OWNER_SLOT) } if (msg.sender != owner) revert NotOwner(); if (implementation() != address(0)) revert AlreadyInitialized(); if (IUpgradable(implementationAddress).contractId() != contractId()) revert InvalidImplementation(); // solhint-disable-next-line no-inline-assembly assembly { sstore(_IMPLEMENTATION_SLOT, implementationAddress) sstore(_OWNER_SLOT, newOwner) } // solhint-disable-next-line avoid-low-level-calls (bool success, ) = implementationAddress.delegatecall( // keccak('setup(bytes)') selector abi.encodeWithSelector(0x9ded06df, params) ); if (!success) revert SetupFailed(); } // solhint-disable-next-line no-empty-blocks function contractId() internal pure virtual returns (bytes32) {} 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 virtual { revert EtherNotAccepted(); } } // File contracts/gas-service/AxelarGasServiceProxy.sol contract AxelarGasServiceProxy is Proxy { function contractId() internal pure override returns (bytes32) { return keccak256('axelar-gas-service'); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"EtherNotAccepted","type":"error"},{"inputs":[],"name":"InvalidImplementation","type":"error"},{"inputs":[],"name":"NotOwner","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":"address","name":"implementationAddress","type":"address"},{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bytes","name":"params","type":"bytes"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50337f02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c055610677806100436000396000f3fe6080604052600436106100385760003560e01c8063378dfd8e146100bf5780635c60da1b146100e15780639ded06df1461012c5761006f565b3661006f576040517f3733483400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006100997f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90503660008037600080366000845af43d6000803e8080156100ba573d6000f35b3d6000fd5b3480156100cb57600080fd5b506100df6100da366004610465565b61014b565b005b3480156100ed57600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546040516001600160a01b03909116815260200160405180910390f35b34801561013857600080fd5b506100df610147366004610537565b5050565b7f02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c054336001600160a01b038216146101af576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006101d97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b031614610219576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffaa2f015f2ce5aee225904728de2def86eb8837491efd21f1a04fc20d8e923f6846001600160a01b0316638291286c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561027357600080fd5b505afa158015610287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ab91906105a9565b146102e2576040517f68155f9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b837f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55827f02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0556000846001600160a01b0316639ded06df8460405160240161034a91906105f2565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516103989190610625565b600060405180830381855af49150503d80600081146103d3576040519150601f19603f3d011682016040523d82523d6000602084013e6103d8565b606091505b5050905080610413576040517f97905dfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b80356001600160a01b038116811461043157600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060006060848603121561047a57600080fd5b6104838461041a565b92506104916020850161041a565b9150604084013567ffffffffffffffff808211156104ae57600080fd5b818601915086601f8301126104c257600080fd5b8135818111156104d4576104d4610436565b604051601f8201601f19908116603f011681019083821181831017156104fc576104fc610436565b8160405282815289602084870101111561051557600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000806020838503121561054a57600080fd5b823567ffffffffffffffff8082111561056257600080fd5b818501915085601f83011261057657600080fd5b81358181111561058557600080fd5b86602082850101111561059757600080fd5b60209290920196919550909350505050565b6000602082840312156105bb57600080fd5b5051919050565b60005b838110156105dd5781810151838201526020016105c5565b838111156105ec576000848401525b50505050565b60208152600082518060208401526106118160408501602087016105c2565b601f01601f19169190910160400192915050565b600082516106378184602087016105c2565b919091019291505056fea2646970667358221220651952c349510bec880aaba14c95732e193a934d9454dc378b340fc36d6ef99c64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106100385760003560e01c8063378dfd8e146100bf5780635c60da1b146100e15780639ded06df1461012c5761006f565b3661006f576040517f3733483400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006100997f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b90503660008037600080366000845af43d6000803e8080156100ba573d6000f35b3d6000fd5b3480156100cb57600080fd5b506100df6100da366004610465565b61014b565b005b3480156100ed57600080fd5b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546040516001600160a01b03909116815260200160405180910390f35b34801561013857600080fd5b506100df610147366004610537565b5050565b7f02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c054336001600160a01b038216146101af576040517f30cd747100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006101d97f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b031614610219576040517f0dc149f000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7ffaa2f015f2ce5aee225904728de2def86eb8837491efd21f1a04fc20d8e923f6846001600160a01b0316638291286c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561027357600080fd5b505afa158015610287573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ab91906105a9565b146102e2576040517f68155f9a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b837f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55827f02016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0556000846001600160a01b0316639ded06df8460405160240161034a91906105f2565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516103989190610625565b600060405180830381855af49150503d80600081146103d3576040519150601f19603f3d011682016040523d82523d6000602084013e6103d8565b606091505b5050905080610413576040517f97905dfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b80356001600160a01b038116811461043157600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060006060848603121561047a57600080fd5b6104838461041a565b92506104916020850161041a565b9150604084013567ffffffffffffffff808211156104ae57600080fd5b818601915086601f8301126104c257600080fd5b8135818111156104d4576104d4610436565b604051601f8201601f19908116603f011681019083821181831017156104fc576104fc610436565b8160405282815289602084870101111561051557600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000806020838503121561054a57600080fd5b823567ffffffffffffffff8082111561056257600080fd5b818501915085601f83011261057657600080fd5b81358181111561058557600080fd5b86602082850101111561059757600080fd5b60209290920196919550909350505050565b6000602082840312156105bb57600080fd5b5051919050565b60005b838110156105dd5781810151838201526020016105c5565b838111156105ec576000848401525b50505050565b60208152600082518060208401526106118160408501602087016105c2565b601f01601f19169190910160400192915050565b600082516106378184602087016105c2565b919091019291505056fea2646970667358221220651952c349510bec880aaba14c95732e193a934d9454dc378b340fc36d6ef99c64736f6c63430008090033
Deployed Bytecode Sourcemap
3974:170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3880:18;;;;;;;;;;;;;;3974:170;3298:22;3323:16;3055:20;3049:27;;2866:228;3323:16;3298:41;;3450:14;3447:1;3444;3431:34;3553:1;3550;3534:14;3531:1;3515:14;3508:5;3495:60;3590:16;3587:1;3584;3569:38;3630:6;3650:68;;;;3769:16;3766:1;3759:27;3650:68;3686:16;3683:1;3676:27;1728:1008;;;;;;;;;;-1:-1:-1;1728:1008:0;;;;;:::i;:::-;;:::i;:::-;;2866:228;;;;;;;;;;-1:-1:-1;3055:20:0;3049:27;2866:228;;-1:-1:-1;;;;;1642:55:1;;;1624:74;;1612:2;1597:18;2866:228:0;;;;;;;3152:45;;;;;;;;;;-1:-1:-1;3152:45:0;;;;;:::i;:::-;;;;1728:1008;1986:11;1980:18;2023:10;-1:-1:-1;;;;;2023:19:0;;;2019:42;;2051:10;;;;;;;;;;;;;;2019:42;2104:1;2076:16;3055:20;3049:27;;2866:228;2076:16;-1:-1:-1;;;;;2076:30:0;;2072:63;;2115:20;;;;;;;;;;;;;;2072:63;4102:31;2162:21;-1:-1:-1;;;;;2150:45:0;;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:63;2146:99;;2222:23;;;;;;;;;;;;;;2146:99;2368:21;2346:20;2339:51;2424:8;2411:11;2404:29;2515:12;2533:21;-1:-1:-1;;;;;2533:34:0;2653:10;2665:6;2630:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2533:150;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2514:169;;;2699:7;2694:34;;2715:13;;;;;;;;;;;;;;2694:34;1855:881;;1728:1008;;;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:184::-;267:77;264:1;257:88;364:4;361:1;354:15;388:4;385:1;378:15;404:1069;490:6;498;506;559:2;547:9;538:7;534:23;530:32;527:52;;;575:1;572;565:12;527:52;598:29;617:9;598:29;:::i;:::-;588:39;;646:38;680:2;669:9;665:18;646:38;:::i;:::-;636:48;;735:2;724:9;720:18;707:32;758:18;799:2;791:6;788:14;785:34;;;815:1;812;805:12;785:34;853:6;842:9;838:22;828:32;;898:7;891:4;887:2;883:13;879:27;869:55;;920:1;917;910:12;869:55;956:2;943:16;978:2;974;971:10;968:36;;;984:18;;:::i;:::-;1059:2;1053:9;1027:2;1113:13;;-1:-1:-1;;1109:22:1;;;1133:2;1105:31;1101:40;1089:53;;;1157:18;;;1177:22;;;1154:46;1151:72;;;1203:18;;:::i;:::-;1243:10;1239:2;1232:22;1278:2;1270:6;1263:18;1318:7;1313:2;1308;1304;1300:11;1296:20;1293:33;1290:53;;;1339:1;1336;1329:12;1290:53;1395:2;1390;1386;1382:11;1377:2;1369:6;1365:15;1352:46;1440:1;1435:2;1430;1422:6;1418:15;1414:24;1407:35;1461:6;1451:16;;;;;;;404:1069;;;;;:::o;1709:591::-;1779:6;1787;1840:2;1828:9;1819:7;1815:23;1811:32;1808:52;;;1856:1;1853;1846:12;1808:52;1896:9;1883:23;1925:18;1966:2;1958:6;1955:14;1952:34;;;1982:1;1979;1972:12;1952:34;2020:6;2009:9;2005:22;1995:32;;2065:7;2058:4;2054:2;2050:13;2046:27;2036:55;;2087:1;2084;2077:12;2036:55;2127:2;2114:16;2153:2;2145:6;2142:14;2139:34;;;2169:1;2166;2159:12;2139:34;2214:7;2209:2;2200:6;2196:2;2192:15;2188:24;2185:37;2182:57;;;2235:1;2232;2225:12;2182:57;2266:2;2258:11;;;;;2288:6;;-1:-1:-1;1709:591:1;;-1:-1:-1;;;;1709:591:1:o;2305:184::-;2375:6;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;-1:-1:-1;2467:16:1;;2305:184;-1:-1:-1;2305:184:1:o;2494:258::-;2566:1;2576:113;2590:6;2587:1;2584:13;2576:113;;;2666:11;;;2660:18;2647:11;;;2640:39;2612:2;2605:10;2576:113;;;2707:6;2704:1;2701:13;2698:48;;;2742:1;2733:6;2728:3;2724:16;2717:27;2698:48;;2494:258;;;:::o;2757:381::-;2904:2;2893:9;2886:21;2867:4;2936:6;2930:13;2979:6;2974:2;2963:9;2959:18;2952:34;2995:66;3054:6;3049:2;3038:9;3034:18;3029:2;3021:6;3017:15;2995:66;:::i;:::-;3122:2;3101:15;-1:-1:-1;;3097:29:1;3082:45;;;;3129:2;3078:54;;2757:381;-1:-1:-1;;2757:381:1:o;3143:274::-;3272:3;3310:6;3304:13;3326:53;3372:6;3367:3;3360:4;3352:6;3348:17;3326:53;:::i;:::-;3395:16;;;;;3143:274;-1:-1:-1;;3143:274:1:o
Swarm Source
ipfs://651952c349510bec880aaba14c95732e193a934d9454dc378b340fc36d6ef99c
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARB | 22.25% | $3,886.41 | 1.1194 | $4,350.48 | |
ARB | 0.01% | $1.14 | 2.5442 | $2.9 | |
ARB | 0.01% | $0.999029 | 2.0587 | $2.06 | |
BSC | 18.44% | $715.62 | 5.0389 | $3,605.96 | |
BSC | <0.01% | $717.86 | 0.00124264 | $0.892 | |
BASE | 14.24% | $3,885.28 | 0.7167 | $2,784.6 | |
BASE | 0.26% | $1 | 51.17 | $51.22 | |
BASE | 0.03% | $0.999602 | 5.2858 | $5.28 | |
FTM | 13.26% | $1.29 | 2,009.4416 | $2,593.58 | |
POL | 5.88% | $0.676514 | 1,699.5004 | $1,149.74 | |
ETH | 4.94% | $3,883.99 | 0.2485 | $965.1 | |
ETH | 0.02% | $4,595.22 | 0.00100671 | $4.63 | |
ETH | 0.02% | $0.999691 | 3.2161 | $3.22 | |
ETH | <0.01% | $3,883.99 | 0.00012656 | $0.4915 | |
OP | 2.96% | $3,885.28 | 0.1491 | $579.43 | |
OP | <0.01% | $0.999547 | 0.8413 | $0.8409 | |
AVAX | 2.93% | $50.64 | 11.2976 | $572.13 | |
AVAX | <0.01% | $50.93 | 0.0362 | $1.84 | |
GLMR | Moonbeam (GLMR) | 2.92% | $0.364329 | 1,568.0476 | $571.29 |
LINEA | 2.68% | $3,880.43 | 0.1349 | $523.59 | |
CELO | 2.15% | $0.996138 | 422.5784 | $420.95 | |
BLAST | 2.01% | $3,883.24 | 0.1011 | $392.49 | |
MANTLE | 1.89% | $1.13 | 326.7537 | $370.4 | |
FRAXTAL | 1.57% | $3,880.54 | 0.0794 | $307.95 | |
SCROLL | 1.51% | $3,880.43 | 0.076 | $294.73 |
[ 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.