Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21976139 | 4 hrs ago | 0.00006602 ETH | ||||
21976139 | 4 hrs ago | 0.00006602 ETH | ||||
21974932 | 8 hrs ago | 0.00005876 ETH | ||||
21974932 | 8 hrs ago | 0.00005876 ETH | ||||
21974564 | 10 hrs ago | 0.00005876 ETH | ||||
21974564 | 10 hrs ago | 0.00005876 ETH | ||||
21974522 | 10 hrs ago | 0.00005876 ETH | ||||
21974522 | 10 hrs ago | 0.00005876 ETH | ||||
21974051 | 11 hrs ago | 0.00005876 ETH | ||||
21974051 | 11 hrs ago | 0.00005876 ETH | ||||
21973871 | 12 hrs ago | 0.00005876 ETH | ||||
21973871 | 12 hrs ago | 0.00005876 ETH | ||||
21973060 | 15 hrs ago | 0.00005876 ETH | ||||
21973060 | 15 hrs ago | 0.00005876 ETH | ||||
21972971 | 15 hrs ago | 0.00005876 ETH | ||||
21972971 | 15 hrs ago | 0.00005876 ETH | ||||
21972901 | 15 hrs ago | 0.00005876 ETH | ||||
21972901 | 15 hrs ago | 0.00005876 ETH | ||||
21972286 | 17 hrs ago | 0.00005876 ETH | ||||
21972286 | 17 hrs ago | 0.00005876 ETH | ||||
21972144 | 18 hrs ago | 0.00005876 ETH | ||||
21972144 | 18 hrs ago | 0.00005876 ETH | ||||
21972113 | 18 hrs ago | 0.00005876 ETH | ||||
21972113 | 18 hrs ago | 0.00005876 ETH | ||||
21971268 | 21 hrs ago | 0.00005876 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x22d8360e...5948d8A99 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ConnectorPlug
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526pragma solidity 0.8.13;import "lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol";import {ISocket} from "../interfaces/ISocket.sol";import {IPlug} from "../interfaces/IPlug.sol";import {RescueFundsLib} from "./RescueFundsLib.sol";interface IHub {function receiveInbound(bytes memory payload_) external;}interface IConnector {function outbound(uint256 msgGasLimit_,bytes memory payload_) external payable;function siblingChainSlug() external view returns (uint32);function getMinFees(uint256 msgGasLimit_) external view returns (uint256 totalFees);}contract ConnectorPlug is IConnector, IPlug, Ownable2Step {IHub public immutable hub__;
1234567891011121314151617181920// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.13;/*** @title IPlug* @notice Interface for a plug contract that executes the message received from a source chain.*/interface IPlug {/*** @dev this should be only executable by socket* @notice executes the message received from source chain* @notice It is expected to have original sender checks in the destination plugs using payload* @param srcChainSlug_ chain slug of source* @param payload_ the data which is needed by plug at inbound call on remote*/function inbound(uint32 srcChainSlug_,bytes calldata payload_) external payable;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.13;/*** @title ISocket* @notice An interface for a cross-chain communication contract* @dev This interface provides methods for transmitting and executing messages between chains,* connecting a plug to a remote chain and setting up switchboards for the message transmission* This interface also emits events for important operations such as message transmission, execution status,* and plug connection*/interface ISocket {/*** @notice A struct containing fees required for message transmission and execution* @param transmissionFees fees needed for transmission* @param switchboardFees fees needed by switchboard* @param executionFee fees needed for execution*/struct Fees {uint128 transmissionFees;uint128 executionFee;uint128 switchboardFees;}/*** @title MessageDetails
1234567891011121314151617181920212223242526pragma solidity 0.8.13;import "lib/solmate/src/utils/SafeTransferLib.sol";import "lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol";import {IExchangeRate} from "./ExchangeRate.sol";import {Gauge} from "./Gauge.sol";import {IConnector, IHub} from "./ConnectorPlug.sol";import {IMintableERC20} from "./MintableToken.sol";import {RescueFundsLib} from "./RescueFundsLib.sol";contract Controller is IHub, Gauge, Ownable2Step {using SafeTransferLib for IMintableERC20;IMintableERC20 public immutable token__;IExchangeRate public exchangeRate__;struct UpdateLimitParams {bool isMint;address connector;uint256 maxLimit;uint256 ratePerSecond;}// connectorPoolId => totalLockedAmountmapping(uint256 => uint256) public poolLockedAmounts;// connector => connectorPoolId
1234567891011121314151617181920212223242526pragma solidity 0.8.13;import "lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol";import {RescueFundsLib} from "./RescueFundsLib.sol";interface IExchangeRate {// not marked pure, may involve state interactions in futurefunction getMintAmount(uint256 lockAmount,uint256 totalLockedAmount) external returns (uint256 mintAmount);// not marked pure, may involve state interactions in futurefunction getUnlockAmount(uint256 burnAmount,uint256 totalLockedAmount) external returns (uint256 unlockAmount);}contract ExchangeRate is IExchangeRate, Ownable2Step {// chainId input needed? what else? slippage?function getMintAmount(uint256 lockAmount,uint256 /* totalLockedAmount */) external pure returns (uint256 mintAmount) {return lockAmount;
1234567891011121314151617181920212223242526pragma solidity 0.8.13;abstract contract Gauge {struct LimitParams {uint256 lastUpdateTimestamp;uint256 ratePerSecond;uint256 maxLimit;uint256 lastUpdateLimit;}error AmountOutsideLimit();function _getCurrentLimit(LimitParams storage _params) internal view returns (uint256 _limit) {uint256 timeElapsed = block.timestamp - _params.lastUpdateTimestamp;uint256 limitIncrease = timeElapsed * _params.ratePerSecond;if (limitIncrease + _params.lastUpdateLimit > _params.maxLimit) {_limit = _params.maxLimit;} else {_limit = limitIncrease + _params.lastUpdateLimit;}}function _consumePartLimit(
1234567891011121314151617181920212223242526pragma solidity 0.8.13;import "lib/solmate/src/tokens/ERC20.sol";abstract contract IMintableERC20 is ERC20 {function mint(address receiver_, uint256 amount_) external virtual;function burn(address burner_, uint256 amount_) external virtual;}// this is a mock token used in tests, other projects' token to be used herecontract MintableToken is IMintableERC20 {constructor(string memory name_,string memory symbol_,uint8 decimals_) ERC20(name_, symbol_, decimals_) {}function mint(address receiver_, uint256 amount_) external override {_mint(receiver_, amount_);}function burn(address burner_, uint256 amount_) external override {_burn(burner_, amount_);}}
123456789101112131415pragma solidity 0.8.13;import "lib/solmate/src/tokens/ERC20.sol";contract NonMintableToken is ERC20 {// this is a mock token used in tests, other projects' token to be used hereconstructor(string memory name_,string memory symbol_,uint8 decimals_,uint256 totalSupply_) ERC20(name_, symbol_, decimals_) {_mint(msg.sender, totalSupply_);}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.13;import "lib/solmate/src/utils/SafeTransferLib.sol";error ZeroAddress();/*** @title RescueFundsLib* @dev A library that provides a function to rescue funds from a contract.*/library RescueFundsLib {/*** @dev The address used to identify ETH.*/address public constant ETH_ADDRESS =address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);/*** @dev thrown when the given token address don't have any code*/error InvalidTokenAddress();/*** @dev Rescues funds from a contract.
1234567891011121314151617181920212223242526pragma solidity 0.8.13;import "lib/solmate/src/utils/SafeTransferLib.sol";import "lib/openzeppelin-contracts/contracts/access/Ownable2Step.sol";import {Gauge} from "./Gauge.sol";import {IConnector, IHub} from "./ConnectorPlug.sol";import {RescueFundsLib} from "./RescueFundsLib.sol";// @todo: separate our connecter plugscontract Vault is Gauge, IHub, Ownable2Step {using SafeTransferLib for ERC20;ERC20 public immutable token__;struct UpdateLimitParams {bool isLock;address connector;uint256 maxLimit;uint256 ratePerSecond;}// connector => receiver => pendingUnlockmapping(address => mapping(address => uint256)) public pendingUnlocks;// connector => amountmapping(address => uint256) public connectorPendingUnlocks;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)pragma solidity ^0.8.0;import "./Ownable.sol";/*** @dev Contract module which provides access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2Step is Ownable {address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/*** @dev Returns the address of the pending owner.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.abstract contract ERC20 {/*//////////////////////////////////////////////////////////////EVENTS//////////////////////////////////////////////////////////////*/event Transfer(address indexed from, address indexed to, uint256 amount);event Approval(address indexed owner, address indexed spender, uint256 amount);/*//////////////////////////////////////////////////////////////METADATA STORAGE//////////////////////////////////////////////////////////////*/string public name;string public symbol;uint8 public immutable decimals;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;import {ERC20} from "../tokens/ERC20.sol";/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer./// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.library SafeTransferLib {/*//////////////////////////////////////////////////////////////ETH OPERATIONS//////////////////////////////////////////////////////////////*/function safeTransferETH(address to, uint256 amount) internal {bool success;/// @solidity memory-safe-assemblyassembly {// Transfer the ETH and store if it succeeded or not.success := call(gas(), to, amount, 0, 0, 0, 0)}require(success, "ETH_TRANSFER_FAILED");}
12345678910111213141516171819202122{"optimizer": {"enabled": true,"runs": 999999},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"metadata": {"useLiteralContent": true},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"hub_","type":"address"},{"internalType":"address","name":"socket_","type":"address"},{"internalType":"uint32","name":"siblingChainSlug_","type":"uint32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidTokenAddress","type":"error"},{"inputs":[],"name":"NotHub","type":"error"},{"inputs":[],"name":"NotSocket","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[],"name":"ConnectorPlugDisconnected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"siblingPlug_","type":"address"},{"internalType":"address","name":"switchboard_","type":"address"}],"name":"connect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disconnect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"msgGasLimit_","type":"uint256"}],"name":"getMinFees","outputs":[{"internalType":"uint256","name":"totalFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hub__","outputs":[{"internalType":"contract IHub","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"bytes","name":"payload_","type":"bytes"}],"name":"inbound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"msgGasLimit_","type":"uint256"},{"internalType":"bytes","name":"payload_","type":"bytes"}],"name":"outbound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"rescueTo_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"siblingChainSlug","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"socket__","outputs":[{"internalType":"contract ISocket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c80638da5cb5b1161007f578063c6a261d211610059578063c6a261d214610274578063d9374bff146102a8578063e30c3978146102bd578063f2fde38b146102e857600080fd5b80638da5cb5b146101ed578063bf965e5214610218578063c41f1f6c1461026157600080fd5b8063715018a6116100bb578063715018a61461013757806377e031d91461014c57806379ba5097146101aa57806389c1cf9a146101bf57600080fd5b80631cbdf12b146100e2578063295058ef146100f75780636ccae05414610117575b600080fd5b6100f56100f0366004610e7b565b610308565b005b34801561010357600080fd5b506100f5610112366004610f76565b61045c565b34801561012357600080fd5b506100f5610132366004610faf565b610544565b34801561014357600080fd5b506100f5610557565b34801561015857600080fd5b506101807f0000000000000000000000006d303cee7959f814042d31e0624fb88ec6fbcc1d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156101b657600080fd5b506100f561056b565b3480156101cb57600080fd5b506101df6101da366004610ff0565b610625565b6040519081526020016101a1565b3480156101f957600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610180565b34801561022457600080fd5b5061024c7f00000000000000000000000000000000000000000000000000000000000003bd81565b60405163ffffffff90911681526020016101a1565b6100f561026f366004611009565b610726565b34801561028057600080fd5b506101807f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f981565b3480156102b457600080fd5b506100f5610840565b3480156102c957600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff16610180565b3480156102f457600080fd5b506100f5610303366004611097565b610a3b565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006d303cee7959f814042d31e0624fb88ec6fbcc1d1614610377576040517f9de9741800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f3386774f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690633386774f903490610414907f00000000000000000000000000000000000000000000000000000000000003bd908790600090819089906004016110bb565b60206040518083038185885af1158015610432573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906104579190611151565b505050565b610464610b60565b6040517f3b1be67800000000000000000000000000000000000000000000000000000000815263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd16600482015273ffffffffffffffffffffffffffffffffffffffff83811660248301528281166044830181905260648301527f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690633b1be67890608401600060405180830381600087803b15801561052857600080fd5b505af115801561053c573d6000803e3d6000fd5b505050505050565b61054c610b60565b610457838383610be1565b61055f610b60565b6105696000610cd1565b565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61062281610cd1565b50565b604080517f9ae3f05a0000000000000000000000000000000000000000000000000000000081526004810183905260248101919091526000604482018190526064820181905263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd1660848301523060a4830152907f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f973ffffffffffffffffffffffffffffffffffffffff1690639ae3f05a9060c401602060405180830381865afa1580156106fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107209190611151565b92915050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91614610795576040517fc59f8f7c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f10c56ed900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006d303cee7959f814042d31e0624fb88ec6fbcc1d16906310c56ed990610809908590859060040161116a565b600060405180830381600087803b15801561082357600080fd5b505af1158015610837573d6000803e3d6000fd5b50505050505050565b610848610b60565b6040517f6f38f87000000000000000000000000000000000000000000000000000000000815230600482015263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd166024820152600090819073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f91690636f38f8709060440160a060405180830381865afa158015610903573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092791906111b7565b50506040517f3b1be67800000000000000000000000000000000000000000000000000000000815263ffffffff7f00000000000000000000000000000000000000000000000000000000000003bd1660048201526000602482015273ffffffffffffffffffffffffffffffffffffffff808416604483015280831660648301529295509093507f000000000000000000000000943ac2775928318653e91d350574436a1b9b16f99091169150633b1be67890608401600060405180830381600087803b1580156109f657600080fd5b505af1158015610a0a573d6000803e3d6000fd5b50506040517fc2af098c82dba3c4b00be8bda596d62d13b98a87b42626fefa67e0bb0e198fdd925060009150a15050565b610a43610b60565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610aa660005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610610565b73ffffffffffffffffffffffffffffffffffffffff8216610c2e576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7fffffffffffffffffffffffff111111111111111111111111111111111111111273ffffffffffffffffffffffffffffffffffffffff841601610c75576104578282610d02565b8273ffffffffffffffffffffffffffffffffffffffff163b600003610cc6576040517f1eb00b0600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610457838383610d77565b600180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905561062281610aeb565b600080600080600085875af1905080610457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4554485f5452414e534645525f4641494c4544000000000000000000000000006044820152606401610610565b60006040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152826024820152602060006044836000895af13d15601f3d1160016000511416171691505080610e46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152606401610610565b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060408385031215610e8e57600080fd5b82359150602083013567ffffffffffffffff80821115610ead57600080fd5b818501915085601f830112610ec157600080fd5b813581811115610ed357610ed3610e4c565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715610f1957610f19610e4c565b81604052828152886020848701011115610f3257600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b73ffffffffffffffffffffffffffffffffffffffff8116811461062257600080fd5b60008060408385031215610f8957600080fd5b8235610f9481610f54565b91506020830135610fa481610f54565b809150509250929050565b600080600060608486031215610fc457600080fd5b8335610fcf81610f54565b92506020840135610fdf81610f54565b929592945050506040919091013590565b60006020828403121561100257600080fd5b5035919050565b60008060006040848603121561101e57600080fd5b833563ffffffff8116811461103257600080fd5b9250602084013567ffffffffffffffff8082111561104f57600080fd5b818601915086601f83011261106357600080fd5b81358181111561107257600080fd5b87602082850101111561108457600080fd5b6020830194508093505050509250925092565b6000602082840312156110a957600080fd5b81356110b481610f54565b9392505050565b63ffffffff8616815260006020868184015285604084015284606084015260a0608084015283518060a085015260005b818110156111075785810183015185820160c0015282016110eb565b8181111561111957600060c083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160c001979650505050505050565b60006020828403121561116357600080fd5b5051919050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b600080600080600060a086880312156111cf57600080fd5b85516111da81610f54565b60208701519095506111eb81610f54565b60408701519094506111fc81610f54565b606087015190935061120d81610f54565b608087015190925061121e81610f54565b80915050929550929590935056fea26469706673582212203a80d07563eab16c0a7381f400bb6ccc11e4c5a537fc2f57462373915c3b4a9464736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.