More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Finish Liquidate | 19657839 | 3 days ago | IN | 0 ETH | 0.00066823 | ||||
Request Liquidat... | 19657839 | 3 days ago | IN | 0 ETH | 0.0004801 | ||||
Request Liquidat... | 19657829 | 3 days ago | IN | 0 ETH | 0.00044154 | ||||
Request Liquidat... | 19657827 | 3 days ago | IN | 0 ETH | 0.00036795 | ||||
Request Add Marg... | 19286199 | 18 days ago | IN | 0.0001 ETH | 0.00012351 | ||||
Request Add Marg... | 19117595 | 24 days ago | IN | 0.0001 ETH | 0.0000198 | ||||
Finish Remove Ma... | 18860127 | 34 days ago | IN | 0 ETH | 0.00000387 | ||||
Finish Remove Ma... | 18860125 | 34 days ago | IN | 0 ETH | 0.00001526 | ||||
Request Trade An... | 18860121 | 34 days ago | IN | 0.00040942 ETH | 0.00001234 | ||||
Request Add Marg... | 18860105 | 34 days ago | IN | 0.0001 ETH | 0.00003667 | ||||
Redeem IOU | 18630332 | 43 days ago | IN | 0 ETH | 0.00000493 | ||||
Finish Update Li... | 18620446 | 43 days ago | IN | 0 ETH | 0.00000883 | ||||
Request Add Liqu... | 18620443 | 43 days ago | IN | 0.00045773 ETH | 0.00001218 | ||||
Finish Update Li... | 18620391 | 43 days ago | IN | 0 ETH | 0.00001524 | ||||
Request Remove L... | 18620386 | 43 days ago | IN | 0.00055887 ETH | 0.00000891 | ||||
Finish Update Li... | 18620380 | 43 days ago | IN | 0 ETH | 0.00000833 | ||||
Request Add Liqu... | 18620375 | 43 days ago | IN | 0.00045773 ETH | 0.00001186 | ||||
Finish Update Li... | 18620367 | 43 days ago | IN | 0 ETH | 0.00001437 | ||||
Request Remove L... | 18620362 | 43 days ago | IN | 0.00055887 ETH | 0.0000098 | ||||
Finish Update Li... | 18620336 | 43 days ago | IN | 0 ETH | 0.00000825 | ||||
Request Add Liqu... | 18620331 | 43 days ago | IN | 0.00045773 ETH | 0.00001638 | ||||
Finish Update Li... | 18210240 | 59 days ago | IN | 0 ETH | 0.00003748 | ||||
Request Remove L... | 18210236 | 59 days ago | IN | 0.00055887 ETH | 0.0000172 | ||||
Request Remove L... | 18210145 | 59 days ago | IN | 0.00055887 ETH | 0.00002164 | ||||
Redeem IOU | 18210119 | 59 days ago | IN | 0 ETH | 0.0000098 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18860125 | 34 days ago | 0.00030942 ETH | ||||
18652083 | 42 days ago | 0.03730942 ETH | ||||
18620446 | 43 days ago | 0.00035773 ETH | ||||
18620391 | 43 days ago | 0.00045887 ETH | ||||
18620380 | 43 days ago | 0.00035773 ETH | ||||
18620367 | 43 days ago | 0.00045887 ETH | ||||
18620336 | 43 days ago | 0.00035773 ETH | ||||
18210240 | 59 days ago | 0.00045887 ETH | ||||
18210018 | 59 days ago | 0.00035773 ETH | ||||
18193020 | 60 days ago | 0.00030942 ETH | ||||
17862258 | 73 days ago | 0.00030942 ETH | ||||
17813738 | 75 days ago | 0.00030942 ETH | ||||
17560333 | 85 days ago | 0.00035773 ETH | ||||
17525234 | 87 days ago | 0.00030942 ETH | ||||
17339840 | 94 days ago | 0.00030942 ETH | ||||
17281812 | 96 days ago | 0.00045887 ETH | ||||
17138753 | 102 days ago | 0.00030942 ETH | ||||
16649664 | 121 days ago | 0.00035773 ETH | ||||
16362984 | 132 days ago | 0.00030942 ETH | ||||
16304718 | 134 days ago | 0.00030942 ETH | ||||
16078138 | 142 days ago | 0.00030942 ETH | ||||
15831915 | 151 days ago | 0.00030942 ETH | ||||
15451003 | 164 days ago | 0.00030942 ETH | ||||
15398433 | 166 days ago | 0.00030942 ETH | ||||
15176966 | 174 days ago | 0.00030942 ETH |
Loading...
Loading
Contract Name:
Gateway
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import './GatewayStorage.sol'; contract Gateway is GatewayStorage { fallback() external payable { address imp = implementation; assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), imp, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import '../../utils/Admin.sol'; import '../../utils/Implementation.sol'; import '../../utils/ReentryLock.sol'; abstract contract GatewayStorage is Admin, Implementation, ReentryLock { // stateId => value mapping(uint8 => bytes32) internal _gatewayStates; // bToken => stateId => value mapping(address => mapping(uint8 => bytes32)) internal _bTokenStates; // dTokenId => stateId => value mapping(uint256 => mapping(uint8 => bytes32)) internal _dTokenStates; // actionId => executionFee mapping(uint256 => uint256) internal _executionFees; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; abstract contract Admin { error OnlyAdmin(); event NewAdmin(address newAdmin); address public admin; modifier _onlyAdmin_() { if (msg.sender != admin) { revert OnlyAdmin(); } _; } constructor () { admin = msg.sender; emit NewAdmin(admin); } /** * @notice Set a new admin for the contract. * @dev This function allows the current admin to assign a new admin address without performing any explicit verification. * It's the current admin's responsibility to ensure that the 'newAdmin' address is correct and secure. * @param newAdmin The address of the new admin. */ function setAdmin(address newAdmin) external _onlyAdmin_ { admin = newAdmin; emit NewAdmin(newAdmin); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import './Admin.sol'; abstract contract Implementation is Admin { event NewImplementation(address newImplementation); address public implementation; // @notice Set a new implementation address for the contract function setImplementation(address newImplementation) external _onlyAdmin_ { implementation = newImplementation; emit NewImplementation(newImplementation); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; abstract contract ReentryLock { error Reentry(); bool internal _mutex; // @notice Lock for preventing reentrancy attacks modifier _reentryLock_() { if (_mutex) { revert Reentry(); } _mutex = true; _; _mutex = false; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"OnlyAdmin","type":"error"},{"inputs":[],"name":"Reentry","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b50600080546001600160a01b031916339081179091556040519081527f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c9060200160405180910390a1610277806100686000396000f3fe6080604052600436106100435760003560e01c80635c60da1b1461007c578063704b6c02146100b8578063d784d426146100d8578063f851a440146100f85761004a565b3661004a57005b6001546001600160a01b03163660008037600080366000845af43d6000803e808015610075573d6000f35b3d6000fd5b005b34801561008857600080fd5b5060015461009c906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c457600080fd5b5061007a6100d3366004610211565b610118565b3480156100e457600080fd5b5061007a6100f3366004610211565b610198565b34801561010457600080fd5b5060005461009c906001600160a01b031681565b6000546001600160a01b0316331461014357604051634755657960e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c906020015b60405180910390a150565b6000546001600160a01b031633146101c357604051634755657960e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f6b70829fcbe4891157f7a7496f9870927de3c8237adbe9cd39bae09b7382c4099060200161018d565b60006020828403121561022357600080fd5b81356001600160a01b038116811461023a57600080fd5b939250505056fea2646970667358221220a36016174573433d4ab15d1c63e4e02728ef5f1843757ad7552a59bf1a1206c264736f6c63430008140033
Deployed Bytecode
0x6080604052600436106100435760003560e01c80635c60da1b1461007c578063704b6c02146100b8578063d784d426146100d8578063f851a440146100f85761004a565b3661004a57005b6001546001600160a01b03163660008037600080366000845af43d6000803e808015610075573d6000f35b3d6000fd5b005b34801561008857600080fd5b5060015461009c906001600160a01b031681565b6040516001600160a01b03909116815260200160405180910390f35b3480156100c457600080fd5b5061007a6100d3366004610211565b610118565b3480156100e457600080fd5b5061007a6100f3366004610211565b610198565b34801561010457600080fd5b5060005461009c906001600160a01b031681565b6000546001600160a01b0316331461014357604051634755657960e01b815260040160405180910390fd5b600080546001600160a01b0319166001600160a01b0383169081179091556040519081527f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c906020015b60405180910390a150565b6000546001600160a01b031633146101c357604051634755657960e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f6b70829fcbe4891157f7a7496f9870927de3c8237adbe9cd39bae09b7382c4099060200161018d565b60006020828403121561022357600080fd5b81356001600160a01b038116811461023a57600080fd5b939250505056fea2646970667358221220a36016174573433d4ab15d1c63e4e02728ef5f1843757ad7552a59bf1a1206c264736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.