Latest 25 from a total of 44 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 24283611 | 18 days ago | IN | 9 wei | 0.00000523 | ||||
| Transfer | 24283469 | 18 days ago | IN | 7 wei | 0.00000294 | ||||
| Transfer | 24283390 | 18 days ago | IN | 1 wei | 0.0000034 | ||||
| Transfer | 24283205 | 18 days ago | IN | 1 wei | 0.00000453 | ||||
| Transfer | 24282566 | 18 days ago | IN | 2 wei | 0.00000252 | ||||
| Transfer | 24280991 | 18 days ago | IN | 1 wei | 0.0000012 | ||||
| Transfer | 24278242 | 19 days ago | IN | 2 wei | 0.00000232 | ||||
| Transfer | 24277814 | 19 days ago | IN | 5 wei | 0.00000248 | ||||
| Transfer | 24277027 | 19 days ago | IN | 3 wei | 0.0000072 | ||||
| Transfer | 24275506 | 19 days ago | IN | 4 wei | 0.00000118 | ||||
| Transfer | 24275071 | 19 days ago | IN | 2 wei | 0.00000147 | ||||
| Transfer | 24274643 | 19 days ago | IN | 7 wei | 0.00000116 | ||||
| Transfer | 24271996 | 19 days ago | IN | 4 wei | 0.00000142 | ||||
| Transfer | 24271888 | 19 days ago | IN | 7 wei | 0.00000083 | ||||
| Transfer | 24271604 | 20 days ago | IN | 3 wei | 0.00000089 | ||||
| Transfer | 24270299 | 20 days ago | IN | 1 wei | 0.00000147 | ||||
| Transfer | 24270218 | 20 days ago | IN | 5 wei | 0.00000158 | ||||
| Transfer | 24270073 | 20 days ago | IN | 0 ETH | 0.00000099 | ||||
| Transfer | 24268665 | 20 days ago | IN | 5 wei | 0.00000105 | ||||
| Transfer | 24268363 | 20 days ago | IN | 0 ETH | 0.00000087 | ||||
| Transfer | 24266559 | 20 days ago | IN | 9 wei | 0.0000006 | ||||
| Transfer | 24264165 | 21 days ago | IN | 6 wei | 0.0000007 | ||||
| 0x68747470 | 22548250 | 261 days ago | IN | 0 ETH | 0.00005296 | ||||
| 0x68747470 | 22547877 | 261 days ago | IN | 0 ETH | 0.00005296 | ||||
| 0x68747470 | 22547508 | 261 days ago | IN | 0 ETH | 0.00005296 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24414863 | 42 mins ago | 0.43102055 ETH | ||||
| Transfer | 24412605 | 8 hrs ago | 0.001 ETH | ||||
| Transfer | 24411944 | 10 hrs ago | 7.72061624 ETH | ||||
| Transfer | 24409869 | 17 hrs ago | 0.26 ETH | ||||
| Transfer | 24406997 | 27 hrs ago | 7.20848477 ETH | ||||
| Transfer | 24406293 | 29 hrs ago | 7.13027236 ETH | ||||
| Transfer | 24405648 | 31 hrs ago | 7.55905502 ETH | ||||
| Transfer | 24405151 | 33 hrs ago | 12.86998572 ETH | ||||
| Transfer | 24404332 | 36 hrs ago | 5.20624491 ETH | ||||
| Transfer | 24403392 | 39 hrs ago | 7.4713727 ETH | ||||
| Transfer | 24402641 | 41 hrs ago | 7.01515897 ETH | ||||
| Transfer | 24399916 | 2 days ago | 0.006 ETH | ||||
| Transfer | 24399377 | 2 days ago | 7.44222679 ETH | ||||
| Transfer | 24399341 | 2 days ago | 0.002 ETH | ||||
| Transfer | 24399134 | 2 days ago | 7.18694161 ETH | ||||
| Transfer | 24398717 | 2 days ago | 7 ETH | ||||
| Transfer | 24398633 | 2 days ago | 7.3156469 ETH | ||||
| Transfer | 24398203 | 2 days ago | 7.01381476 ETH | ||||
| Transfer | 24396599 | 2 days ago | 7.04784731 ETH | ||||
| Transfer | 24396538 | 2 days ago | 3.6 ETH | ||||
| Transfer | 24396163 | 2 days ago | 7.03518646 ETH | ||||
| Transfer | 24396124 | 2 days ago | 1.33108265 ETH | ||||
| Transfer | 24396121 | 2 days ago | 1.01540164 ETH | ||||
| Transfer | 24396005 | 2 days ago | 30.0265209 ETH | ||||
| Transfer | 24395689 | 2 days ago | 25.02398088 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Agent
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 20000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 // SPDX-FileCopyrightText: 2023 Snowfork <[email protected]> pragma solidity 0.8.25; /// @title An agent contract that acts on behalf of a consensus system on Polkadot /// @dev Instances of this contract act as an agents for arbitrary consensus systems on Polkadot. These consensus systems /// can include toplevel parachains as as well as nested consensus systems within a parachain. contract Agent { error Unauthorized(); /// @dev The unique ID for this agent, derived from the MultiLocation of the corresponding consensus system on Polkadot bytes32 public immutable AGENT_ID; /// @dev The gateway contract controlling this agent address public immutable GATEWAY; constructor(bytes32 agentID) { AGENT_ID = agentID; GATEWAY = msg.sender; } /// @dev Agents can receive ether permissionlessly. /// This is important, as agents for top-level parachains also act as sovereign accounts from which message relayers /// are rewarded. receive() external payable {} /// @dev Allow the gateway to invoke some code within the context of this agent /// using `delegatecall`. Typically this code will be provided by `AgentExecutor.sol`. function invoke(address executor, bytes calldata data) external returns (bool, bytes memory) { if (msg.sender != GATEWAY) { revert Unauthorized(); } return executor.delegatecall(data); } }
{
"remappings": [
"canonical-weth/=lib/canonical-weth/contracts/",
"ds-test/=lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"prb/math/=lib/prb-math/",
"@prb/test/=lib/prb-math/lib/prb-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"prb-math/=lib/prb-math/src/",
"prb-test/=lib/prb-math/lib/prb-test/src/"
],
"optimizer": {
"enabled": true,
"runs": 20000
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": true,
"libraries": {
"src/Assets.sol": {
"Assets": "0x0ee3c81642A308B0e1F81C81f6853B64bf261976"
},
"src/Verification.sol": {
"Verification": "0x515c0817005b2F3383B7D8837d6DCc15c0d71C56"
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"bytes32","name":"agentID","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"AGENT_ID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GATEWAY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"executor","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"invoke","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c034606a57601f61040938819003918201601f19168301916001600160401b03831184841017606f57808492602094604052833981010312606a57516080523360a05260405161038390816100868239608051816087015260a05181818161013801526103290152f35b600080fd5b634e487b7160e01b600052604160045260246000fdfe6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c918263338c5371146102df575081639bb66b28146100ae575063e905182a146100535780610012565b346100aa57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100aa57602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b5080fd5b8284346102dc57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102dc5773ffffffffffffffffffffffffffffffffffffffff92803584811681036102d85760243567ffffffffffffffff958682116102d457366023830112156102d45781840135908782116102d05736602483850101116102d0577f00000000000000000000000000000000000000000000000000000000000000001633036102a8579160248593928385948951938493018337810184815203915af4933d1561029d573d9080821161027157845192601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168401918211848310176102455750845281523d82602083013e92905b82519384921515835260209084602085015280518095850152825b85811061022e57505050601f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092606080968601015201168101030190f35b8181018301518782016060015286945082016101ee565b8460416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024846041857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050606092906101d3565b8386517f82b42900000000000000000000000000000000000000000000000000000000008152fd5b8580fd5b8480fd5b8280fd5b80fd5b8490346100aa57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100aa5760209073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f3fea26469706673582212201b1cc577f24b9d8e5472b448ec535a07efeb64b1500d66f0e9d785be4e3792d964736f6c6343000819003381c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b79
Deployed Bytecode
0x6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c918263338c5371146102df575081639bb66b28146100ae575063e905182a146100535780610012565b346100aa57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100aa57602090517f81c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b798152f35b5080fd5b8284346102dc57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126102dc5773ffffffffffffffffffffffffffffffffffffffff92803584811681036102d85760243567ffffffffffffffff958682116102d457366023830112156102d45781840135908782116102d05736602483850101116102d0577f00000000000000000000000027ca963c279c93801941e1eb8799c23f407d68e71633036102a8579160248593928385948951938493018337810184815203915af4933d1561029d573d9080821161027157845192601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168401918211848310176102455750845281523d82602083013e92905b82519384921515835260209084602085015280518095850152825b85811061022e57505050601f837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092606080968601015201168101030190f35b8181018301518782016060015286945082016101ee565b8460416024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024846041857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050606092906101d3565b8386517f82b42900000000000000000000000000000000000000000000000000000000008152fd5b8580fd5b8480fd5b8280fd5b80fd5b8490346100aa57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126100aa5760209073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000027ca963c279c93801941e1eb8799c23f407d68e7168152f3fea26469706673582212201b1cc577f24b9d8e5472b448ec535a07efeb64b1500d66f0e9d785be4e3792d964736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
81c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b79
-----Decoded View---------------
Arg [0] : agentID (bytes32): 0x81c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b79
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 81c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b79
Loading...
Loading
Loading...
Loading
Net Worth in USD
$64,603,910.60
Net Worth in ETH
30,792.791545
Token Allocations
TRAC
65.65%
TBTC
9.32%
MYTH
4.59%
Others
20.44%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 65.65% | $0.332706 | 127,482,000.5759 | $42,414,026.48 | |
| ETH | 9.32% | $71,099 | 84.649 | $6,018,458.79 | |
| ETH | 4.59% | $0.006398 | 463,467,456.5298 | $2,965,144.29 | |
| ETH | 4.22% | $2,767.01 | 986.4074 | $2,729,399.24 | |
| ETH | 2.84% | $2,099.41 | 873.517 | $1,833,872.46 | |
| ETH | 2.71% | $5,026.35 | 348.4882 | $1,751,623.64 | |
| ETH | 2.08% | $1.22 | 1,100,316.6788 | $1,342,386.35 | |
| ETH | 1.59% | $0.017657 | 58,152,417.94 | $1,026,784.45 | |
| ETH | 1.53% | $2,099.41 | 471.5807 | $990,042.47 | |
| ETH | 1.47% | $8.83 | 107,913.6287 | $952,877.34 | |
| ETH | 1.19% | $0.999532 | 766,860.2194 | $766,501.33 | |
| ETH | 0.97% | $0.99986 | 628,474.7932 | $628,386.81 | |
| ETH | 0.83% | $112.54 | 4,770.1172 | $536,828.99 | |
| ETH | 0.37% | $0.06787 | 3,526,634.5459 | $239,352.69 | |
| ETH | 0.30% | $0.352579 | 554,386.6783 | $195,465.1 | |
| ETH | 0.16% | $0.119971 | 835,526.378 | $100,238.94 | |
| ETH | 0.14% | $0.078637 | 1,168,835.3352 | $91,913.7 | |
| ETH | 0.03% | $76,149 | 0.2691 | $20,494.57 | |
| ETH | <0.01% | $1.18 | 36.5 | $43.07 | |
| ETH | <0.01% | $0.000004 | 6,948,667.5812 | $26.06 | |
| ETH | <0.01% | $76,298 | 0.00022022 | $16.8 | |
| ETH | <0.01% | $1 | 12 | $12 | |
| ETH | <0.01% | $0.125952 | 42 | $5.29 | |
| ETH | <0.01% | $1.4 | 3.7732 | $5.28 | |
| ETH | <0.01% | $0.000006 | 179,748.3323 | $1.1 | |
| ETH | <0.01% | $0.00 | 0.0154 | $0.00 | |
| BASE | <0.01% | $0.019895 | 160 | $3.18 |
Loading...
Loading
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.