Latest 25 from a total of 5,002,775 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| 0x2478e34e | 429913446 | 20 mins ago | IN | 0.075 ETH | 0.00000066 | ||||
| 0x73572dff | 429911554 | 28 mins ago | IN | 0.00571409 ETH | 0.00000066 | ||||
| 0x5896e851 | 429909895 | 35 mins ago | IN | 0.00278479 ETH | 0.00000066 | ||||
| 0x3d01598e | 429905529 | 53 mins ago | IN | 0.00058747 ETH | 0.00000066 | ||||
| 0x668233c2 | 429904519 | 57 mins ago | IN | 0.000814 ETH | 0.00000066 | ||||
| 0x0579ce94 | 429904215 | 1 hr ago | IN | 0.0005258 ETH | 0.00000066 | ||||
| 0xd75d380b | 429902134 | 1 hr ago | IN | 0.0161215 ETH | 0.00000065 | ||||
| 0x575c43f9 | 429901706 | 1 hr ago | IN | 0.0034232 ETH | 0.00000066 | ||||
| 0x0359fbf5 | 429900556 | 1 hr ago | IN | 0.00195719 ETH | 0.00000066 | ||||
| 0x13f02f35 | 429899769 | 1 hr ago | IN | 0.00087786 ETH | 0.00000066 | ||||
| 0x31aa723f | 429899393 | 1 hr ago | IN | 0.00098134 ETH | 0.00000066 | ||||
| 0x85b69dbf | 429897635 | 1 hr ago | IN | 0.00433239 ETH | 0.00000065 | ||||
| 0x7c922a27 | 429894218 | 1 hr ago | IN | 0.01856948 ETH | 0.00000066 | ||||
| 0x2b623043 | 429893555 | 1 hr ago | IN | 0.0006 ETH | 0.00000066 | ||||
| 0xc6adb097 | 429892360 | 1 hr ago | IN | 0.00239424 ETH | 0.00000066 | ||||
| 0x3df68712 | 429891880 | 1 hr ago | IN | 0.00006196 ETH | 0.00000066 | ||||
| 0x20b58805 | 429890798 | 1 hr ago | IN | 0.00083403 ETH | 0.00000066 | ||||
| 0xab627302 | 429888540 | 2 hrs ago | IN | 0.10991177 ETH | 0.00000065 | ||||
| 0x4424e5a7 | 429888154 | 2 hrs ago | IN | 0.00919033 ETH | 0.00000065 | ||||
| 0xe1888775 | 429886707 | 2 hrs ago | IN | 0.37296539 ETH | 0.00000066 | ||||
| 0xc03a382a | 429883705 | 2 hrs ago | IN | 0.00187086 ETH | 0.00000067 | ||||
| 0xa54436b0 | 429883560 | 2 hrs ago | IN | 0.006 ETH | 0.00000066 | ||||
| 0x6428cf89 | 429880470 | 2 hrs ago | IN | 0.19067458 ETH | 0.00000065 | ||||
| 0xe199efa8 | 429880083 | 2 hrs ago | IN | 0.00203282 ETH | 0.00000066 | ||||
| 0x306cf4a3 | 429875114 | 3 hrs ago | IN | 0.00015941 ETH | 0.00000066 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 429917745 | 3 mins ago | 0.00099359 ETH | ||||
| 429917745 | 3 mins ago | 0.00099359 ETH | ||||
| 429914583 | 16 mins ago | 0.013835 ETH | ||||
| 429914583 | 16 mins ago | 0.013835 ETH | ||||
| 429914176 | 17 mins ago | 0.01028124 ETH | ||||
| 429914176 | 17 mins ago | 0.01028124 ETH | ||||
| 429913446 | 20 mins ago | 0.075 ETH | ||||
| 429911554 | 28 mins ago | 0.00571409 ETH | ||||
| 429909895 | 35 mins ago | 0.00278479 ETH | ||||
| 429908932 | 39 mins ago | 0.00009455 ETH | ||||
| 429908932 | 39 mins ago | 0.00009455 ETH | ||||
| 429907858 | 44 mins ago | 0.01299993 ETH | ||||
| 429907858 | 44 mins ago | 0.01299993 ETH | ||||
| 429905529 | 53 mins ago | 0.00058747 ETH | ||||
| 429904519 | 57 mins ago | 0.000814 ETH | ||||
| 429904215 | 1 hr ago | 0.0005258 ETH | ||||
| 429902134 | 1 hr ago | 0.0161215 ETH | ||||
| 429901706 | 1 hr ago | 0.0034232 ETH | ||||
| 429901642 | 1 hr ago | 0.00099461 ETH | ||||
| 429901642 | 1 hr ago | 0.00099461 ETH | ||||
| 429900556 | 1 hr ago | 0.00195719 ETH | ||||
| 429899769 | 1 hr ago | 0.00087786 ETH | ||||
| 429899393 | 1 hr ago | 0.00098134 ETH | ||||
| 429898694 | 1 hr ago | 0.0000467 ETH | ||||
| 429898694 | 1 hr ago | 0.0000467 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RelayReceiver
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
contract RelayReceiver {
// --- Structs ---
struct Call {
address to;
bytes data;
uint256 value;
}
// --- Errors ---
error CallFailed();
error NativeTransferFailed();
error Unauthorized();
// --- Events ---
event FundsForwardedWithData(bytes data);
// --- Fields ---
address private immutable SOLVER;
// --- Constructor ---
constructor(address solver) {
SOLVER = solver;
}
// --- Public methods ---
fallback() external payable {
send(SOLVER, msg.value);
emit FundsForwardedWithData(msg.data);
}
function forward(bytes calldata data) external payable {
send(SOLVER, msg.value);
emit FundsForwardedWithData(data);
}
// --- Restricted methods ---
function makeCalls(Call[] calldata calls) external payable {
if (msg.sender != SOLVER) {
revert Unauthorized();
}
unchecked {
uint256 length = calls.length;
for (uint256 i; i < length; i++) {
Call memory c = calls[i];
(bool success, ) = c.to.call{value: c.value}(c.data);
if (!success) {
revert CallFailed();
}
}
}
}
// --- Internal methods ---
function send(address to, uint256 value) internal {
bool success;
assembly {
// Save gas by avoiding copying the return data to memory.
// Provide at most 100k gas to the internal call, which is
// more than enough to cover common use-cases of logic for
// receiving native tokens (eg. SCW payable fallbacks).
success := call(100000, to, value, 0, 0, 0, 0)
}
if (!success) {
revert NativeTransferFailed();
}
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/contracts/",
"solady/=lib/solady/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": true,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"solver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CallFailed","type":"error"},{"inputs":[],"name":"NativeTransferFailed","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"FundsForwardedWithData","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"forward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct RelayReceiver.Call[]","name":"calls","type":"tuple[]"}],"name":"makeCalls","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60a03461007757601f6104e138819003918201601f19168301916001600160401b0383118484101761007c5780849260209460405283398101031261007757516001600160a01b03811681036100775760805260405161044e9081610093823960805181818160ab01528181610139015261037d0152f35b600080fd5b634e487b7160e01b600052604160045260246000fdfe60806040526004361015610018575b610016610377565b005b6000803560e01c908163d948d4681461003b575063dd4ed8370361000e576100e9565b60203660031901126100e65760043567ffffffffffffffff8082116100e257366023830112156100e25781600401359081116100e25736602482840101116100e2577f936c2ca3b35d2d0b24057b0675c459e4515f48fe132d138e213ae59ffab7f53e916100dc6024926100cf347f00000000000000000000000000000000000000000000000000000000000000006103f3565b60405193849301836101e7565b0390a180f35b8280fd5b80fd5b6020806003193601126101e25760049067ffffffffffffffff9082358281116101e257366023820112156101e25780600401359283116101e2576024810190602436918560051b0101116101e2577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036101d15760005b83811061017357005b61018661018182868561020f565b6102c4565b805160009081906001600160a01b0316926040938785830151920151918883519301915af16101b3610351565b50156101c2575060010161016a565b51633204506f60e01b81528590fd5b6040516282b42960e81b8152600490fd5b600080fd5b90918060409360208452816020850152848401376000828201840152601f01601f1916010190565b91908110156102315760051b81013590605e19813603018212156101e2570190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604051906060820182811067ffffffffffffffff82111761027d57604052565b610247565b6040519190601f01601f1916820167ffffffffffffffff81118382101761027d57604052565b67ffffffffffffffff811161027d57601f01601f191660200190565b6060813603126101e2576102d661025d565b9080356001600160a01b03811681036101e25782526020908181013567ffffffffffffffff81116101e25781019136601f840112156101e25782359061032361031e836102a8565b610282565b91808352368282870101116101e2578181600092826040980183870137840101528401520135604082015290565b3d15610372573d9061036561031e836102a8565b9182523d6000602084013e565b606090565b6103a1347f00000000000000000000000000000000000000000000000000000000000000006103f3565b7f936c2ca3b35d2d0b24057b0675c459e4515f48fe132d138e213ae59ffab7f53e604051602081523660208201523660006040830137600060403683010152604081601f19601f3601168101030190a1565b60008080938193620186a0f11561040657565b604051633d2cec6f60e21b8152600490fdfea2646970667358221220caf02629fd057cfee0cb6731c8eded184dc558da485e5cc6ee0bccec8e65dd0564736f6c63430008170033000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef
Deployed Bytecode
0x60806040526004361015610018575b610016610377565b005b6000803560e01c908163d948d4681461003b575063dd4ed8370361000e576100e9565b60203660031901126100e65760043567ffffffffffffffff8082116100e257366023830112156100e25781600401359081116100e25736602482840101116100e2577f936c2ca3b35d2d0b24057b0675c459e4515f48fe132d138e213ae59ffab7f53e916100dc6024926100cf347f000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef6103f3565b60405193849301836101e7565b0390a180f35b8280fd5b80fd5b6020806003193601126101e25760049067ffffffffffffffff9082358281116101e257366023820112156101e25780600401359283116101e2576024810190602436918560051b0101116101e2577f000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef6001600160a01b031633036101d15760005b83811061017357005b61018661018182868561020f565b6102c4565b805160009081906001600160a01b0316926040938785830151920151918883519301915af16101b3610351565b50156101c2575060010161016a565b51633204506f60e01b81528590fd5b6040516282b42960e81b8152600490fd5b600080fd5b90918060409360208452816020850152848401376000828201840152601f01601f1916010190565b91908110156102315760051b81013590605e19813603018212156101e2570190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b604051906060820182811067ffffffffffffffff82111761027d57604052565b610247565b6040519190601f01601f1916820167ffffffffffffffff81118382101761027d57604052565b67ffffffffffffffff811161027d57601f01601f191660200190565b6060813603126101e2576102d661025d565b9080356001600160a01b03811681036101e25782526020908181013567ffffffffffffffff81116101e25781019136601f840112156101e25782359061032361031e836102a8565b610282565b91808352368282870101116101e2578181600092826040980183870137840101528401520135604082015290565b3d15610372573d9061036561031e836102a8565b9182523d6000602084013e565b606090565b6103a1347f000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef6103f3565b7f936c2ca3b35d2d0b24057b0675c459e4515f48fe132d138e213ae59ffab7f53e604051602081523660208201523660006040830137600060403683010152604081601f19601f3601168101030190a1565b60008080938193620186a0f11561040657565b604051633d2cec6f60e21b8152600490fdfea2646970667358221220caf02629fd057cfee0cb6731c8eded184dc558da485e5cc6ee0bccec8e65dd0564736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef
-----Decoded View---------------
Arg [0] : solver (address): 0xf70da97812CB96acDF810712Aa562db8dfA3dbEF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f70da97812cb96acdf810712aa562db8dfa3dbef
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$2,345.49
Net Worth in ETH
1.102388
Token Allocations
ETH
81.97%
USDC
8.76%
CBBTC
3.70%
Others
5.57%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ABSTRACT | 75.91% | $2,125.91 | 0.8376 | $1,780.56 | |
| ETH | 4.26% | $0.999833 | 100 | $99.98 | |
| ETH | 3.59% | $76,331 | 0.00110256 | $84.16 | |
| ETH | 0.21% | $1.07 | 4.585 | $4.91 | |
| ETH | 0.10% | $0.999247 | 2.45 | $2.45 | |
| ETH | 0.09% | $0.000041 | 50,887.7672 | $2.08 | |
| ETH | <0.01% | <$0.000001 | 135,173,513.0245 | $0.1325 | |
| LINEA | 4.69% | $2,128.5 | 0.0517 | $110.08 | |
| BSC | 3.50% | $55.39 | 1.483 | $82.15 | |
| BSC | 0.43% | $0.999289 | 10 | $9.99 | |
| BSC | 0.04% | $645.07 | 0.00157892 | $1.02 | |
| BASE | 2.67% | $0.999793 | 62.6411 | $62.63 | |
| BASE | 0.11% | $76,331 | 0.000035 | $2.67 | |
| BASE | 0.03% | $0.000524 | 1,348.0117 | $0.7069 | |
| POL | 1.83% | $0.999811 | 42.9 | $42.89 | |
| UNI | 1.29% | $2,129.31 | 0.0142 | $30.17 | |
| HYPEREVM | 0.75% | $31.95 | 0.5483 | $17.52 | |
| APE | 0.35% | $0.129999 | 63.6047 | $8.27 | |
| TAIKO | 0.07% | $2,128.5 | 0.00081411 | $1.73 | |
| OPBNB | 0.03% | $645 | 0.00100063 | $0.645408 | |
| OP | 0.02% | $0.999266 | 0.5153 | $0.5148 | |
| BERA | <0.01% | $0.446121 | 0.4999 | $0.222993 | |
| MANTLE | <0.01% | $0.648776 | 0.00267586 | $0.001736 | |
| CELO | <0.01% | $0.08332 | 0.00306193 | $0.000255 |
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.