Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00Latest 6 from a total of 6 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Distribute Ether | 6920832 | 281 days ago | IN | 0.005 ETH | 0.00000743 | ||||
| Distribute Ether | 6920746 | 281 days ago | IN | 0.04 ETH | 0.00000735 | ||||
| Distribute Ether | 6920649 | 281 days ago | IN | 0.01 ETH | 0.00000549 | ||||
| Distribute Ether | 6820166 | 282 days ago | IN | 0.022 ETH | 0.00000751 | ||||
| Distribute Ether | 6819730 | 282 days ago | IN | 0.033 ETH | 0.00000838 | ||||
| Distribute Ether | 6295989 | 288 days ago | IN | 0.01001 ETH | 0.00000519 |
Latest 23 internal transactions
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 6920832 | 281 days ago | 0.001 ETH | ||||
| 6920832 | 281 days ago | 0.001 ETH | ||||
| 6920832 | 281 days ago | 0.001 ETH | ||||
| 6920832 | 281 days ago | 0.001 ETH | ||||
| 6920832 | 281 days ago | 0.001 ETH | ||||
| 6920832 | 281 days ago | 0.005 ETH | ||||
| 6920746 | 281 days ago | 0.01 ETH | ||||
| 6920746 | 281 days ago | 0.01 ETH | ||||
| 6920746 | 281 days ago | 0.01 ETH | ||||
| 6920746 | 281 days ago | 0.01 ETH | ||||
| 6920746 | 281 days ago | 0.04 ETH | ||||
| 6920649 | 281 days ago | 0.01 ETH | ||||
| 6920649 | 281 days ago | 0.01 ETH | ||||
| 6820166 | 282 days ago | 0.011 ETH | ||||
| 6820166 | 282 days ago | 0.011 ETH | ||||
| 6820166 | 282 days ago | 0.022 ETH | ||||
| 6819730 | 282 days ago | 0.011 ETH | ||||
| 6819730 | 282 days ago | 0.011 ETH | ||||
| 6819730 | 282 days ago | 0.011 ETH | ||||
| 6819730 | 282 days ago | 0.033 ETH | ||||
| 6295989 | 288 days ago | 0.01001 ETH | ||||
| 6295989 | 288 days ago | 0.01001 ETH | ||||
| 6289961 | 288 days ago | Contract Creation | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BatchDistributor
Compiler Version
v0.8.29+commit.ab55807c
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.29;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/**
* @dev Error that occurs when transferring ether has failed.
* @param emitter The contract that emits the error.
*/
error EtherTransferFail(address emitter);
/**
* @title Native and ERC-20 Token Batch Distributor
* @author 0x7761676d69
* @notice Helper smart contract for batch sending both
* native and ERC-20 tokens.
* @dev Since we use nested struct objects, we rely on the ABI coder v2.
* The ABI coder v2 is activated by default since Solidity `v0.8.0`.
*/
contract BatchDistributor {
using SafeERC20 for IERC20;
/**
* @dev Transaction struct for the transaction payload.
*/
struct Transaction {
address payable recipient;
uint256 amount;
}
/**
* @dev Batch struct for the array of transactions.
*/
struct Batch {
Transaction[] txns;
}
/**
* @dev You can cut out 10 opcodes in the creation-time EVM bytecode
* if you declare a constructor `payable`.
*
* For more in-depth information see here:
* https://forum.openzeppelin.com/t/a-collection-of-gas-optimisation-tricks/19966/5.
*/
constructor() payable {}
/**
* @dev Distributes ether, denominated in wei, to a predefined batch
* of recipient addresses.
* @notice In the event that excessive ether is sent, the residual
* amount is returned back to the `msg.sender`.
* @param batch Nested struct object that contains an array of tuples that
* contain each a recipient address & ether amount in wei.
*/
function distributeEther(Batch calldata batch) external payable {
/**
* @dev Caching the length in for loops saves 3 additional gas
* for a `calldata` array for each iteration except for the first.
*/
uint256 length = batch.txns.length;
/**
* @dev If a variable is not set/initialised, it is assumed to have
* the default value. The default value for the `uint` types is 0.
*/
for (uint256 i; i < length; ++i) {
// solhint-disable-next-line avoid-low-level-calls
(bool sent, ) = batch.txns[i].recipient.call{
value: batch.txns[i].amount
}("");
if (!sent) revert EtherTransferFail(address(this));
}
uint256 balance = address(this).balance;
if (balance != 0) {
/**
* @dev Any wei amount previously forced into this contract (e.g. by
* using the `SELFDESTRUCT` opcode) will be part of the refund transaction.
*/
// solhint-disable-next-line avoid-low-level-calls
(bool refunded, ) = payable(msg.sender).call{value: balance}("");
if (!refunded) revert EtherTransferFail(address(this));
}
}
/**
* @dev Distributes ERC-20 tokens, denominated in their corresponding
* lowest unit, to a predefined batch of recipient addresses.
* @notice To deal with (potentially) non-compliant ERC-20 tokens that
* do have no return value, we use the `SafeERC20` library for external calls.
* Note: Since we cast the token address into the official ERC-20 interface,
* the use of non-compliant ERC-20 tokens is prevented by design. Nevertheless,
* we keep this guardrail for security reasons.
* @param token ERC-20 token contract address.
* @param batch Nested struct object that contains an array of tuples that
* contain each a recipient address & token amount.
*/
function distributeToken(IERC20 token, Batch calldata batch) external {
/**
* @dev Caching the length in for loops saves 3 additional gas
* for a `calldata` array for each iteration except for the first.
*/
uint256 length = batch.txns.length;
/**
* @dev If a variable is not set/initialised, it is assumed to have
* the default value. The default value for the `uint` types is 0.
*/
uint256 total;
for (uint256 i; i < length; ++i) {
total += batch.txns[i].amount;
}
/**
* @dev By combining a `transferFrom` call to itself and then
* distributing the tokens from its own address using `transfer`,
* 5'000 gas is saved on each transfer as `allowance` is only
* touched once.
*/
token.safeTransferFrom(msg.sender, address(this), total);
for (uint256 i; i < length; ++i) {
token.safeTransfer(batch.txns[i].recipient, batch.txns[i].amount);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC-20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
/**
* @dev An operation with an ERC-20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*
* NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
* only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
* set here.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
safeTransfer(token, to, value);
} else if (!token.transferAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
* has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferFromAndCallRelaxed(
IERC1363 token,
address from,
address to,
uint256 value,
bytes memory data
) internal {
if (to.code.length == 0) {
safeTransferFrom(token, from, to, value);
} else if (!token.transferFromAndCall(from, to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
* Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
* once without retrying, and relies on the returned value to be true.
*
* Reverts if the returned value is other than `true`.
*/
function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
forceApprove(token, to, value);
} else if (!token.approveAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
// bubble errors
if iszero(success) {
let ptr := mload(0x40)
returndatacopy(ptr, 0, returndatasize())
revert(ptr, returndatasize())
}
returnSize := returndatasize()
returnValue := mload(0)
}
if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
bool success;
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
returnSize := returndatasize()
returnValue := mload(0)
}
return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";
/**
* @title IERC1363
* @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
*
* Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
* after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
*/
interface IERC1363 is IERC20, IERC165 {
/*
* Note: the ERC-165 identifier for this interface is 0xb0202a11.
* 0xb0202a11 ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @param data Additional data with no specified format, sent in call to `spender`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../token/ERC20/IERC20.sol";// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../utils/introspection/IERC165.sol";// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"evmVersion": "paris",
"optimizer": {
"enabled": true,
"mode": "3"
},
"outputSelection": {
"*": {
"*": [
"abi"
]
}
},
"detectMissingLibraries": false,
"forceEVMLA": false,
"enableEraVMExtensions": false,
"codegen": "evmla",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"emitter","type":"address"}],"name":"EtherTransferFail","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"components":[{"components":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct BatchDistributor.Transaction[]","name":"txns","type":"tuple[]"}],"internalType":"struct BatchDistributor.Batch","name":"batch","type":"tuple"}],"name":"distributeEther","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"components":[{"components":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct BatchDistributor.Transaction[]","name":"txns","type":"tuple[]"}],"internalType":"struct BatchDistributor.Batch","name":"batch","type":"tuple"}],"name":"distributeToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010000bb9a47d9064ca890d8874ad7704f26e7889667f411289fd47f724e2b2000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000600000000000200010000000103550000006003100270000000a20030019d0000008004000039000000400040043f00000001002001900000006c0000c13d000000a202300197000000040020008c000000ab0000413d000000000301043b000000e003300270000000a40030009c000000710000613d000000a50030009c000000ab0000c13d000000240020008c000000ab0000413d0000000403100370000000000303043b000500000003001d000000a60030009c000000ab0000213d000000050320006a000000a70030009c000000ab0000213d000000230430008c000000ab0000a13d00000005030000290000000409300039000000000391034f000000000303043b000000a805300197000000a806400197000000000765013f000000000065004b0000000005000019000000a805004041000000000043004b0000000004000019000000a804008041000000a80070009c000000000504c019000000000005004b000000ab0000c13d0000000003930019000000000131034f000000000101043b000400000001001d000000a60010009c000000ab0000213d0000000401000029000000060110021000000000011200490000002002300039000000000012004b0000000003000019000000a803002041000000a801100197000000a802200197000000000412013f000000000012004b0000000001000019000000a801004041000000a80040009c000000000103c019000000000001004b000000ab0000c13d000000040000006b000000ad0000c13d000000b0010000410000000000100443000000000100041000000004001004430000000001000414000000a20010009c000000a201008041000000c001100210000000b1011001c70000800a02000039028502800000040f0000000100200190000002550000613d000000000301043b000000000003004b0000019c0000613d0000000001000414000000a20010009c000000a201008041000000c001100210000000aa011001c70000800902000039000000000400041100000000050000190285027b0000040f0000006003100270000000a2033001980000019e0000c13d00000001002001900000019c0000c13d000000ae01000041000000000010043f0000000001000410000000040010043f000000af010000410000028700010430000000200100003900000100001004430000012000000443000000a301000041000002860001042e000000440020008c000000ab0000413d0000000003000416000000000003004b000000ab0000c13d0000000403100370000000000303043b000300000003001d000000a90030009c000000ab0000213d0000002403100370000000000303043b000200000003001d000000a60030009c000000ab0000213d000000020320006a000000a70030009c000000ab0000213d000000230430008c000000ab0000a13d0000000203000029000500040030003d0000000503100360000000000303043b000000a805300197000000a806400197000000000765013f000000000065004b0000000005000019000000a805004041000000000043004b0000000004000019000000a804008041000000a80070009c000000000504c019000000000005004b000000ab0000c13d0000000503300029000000000431034f000000000704043b000000a60070009c000000ab0000213d000000060470021000000000024200490000002004300039000000000024004b0000000005000019000000a805002041000000a802200197000000a804400197000000000624013f000000000024004b0000000002000019000000a802004041000000a80060009c000000000205c019000000000002004b0000011d0000613d00000000010000190000028700010430000000000a000019000300000009001d0000000001000031000000050210006a000000230320008a0000000102900367000000000202043b000000a804300197000000a805200197000000000645013f000000000045004b0000000004000019000000a804004041000000000032004b0000000003000019000000a803008041000000a80060009c000000000403c019000000000004004b000000ab0000c13d00000000039200190000000102300367000000000202043b000000a60020009c000000ab0000213d000000060420021000000000044100490000002001300039000000a803400197000000a805100197000000000635013f000000000035004b0000000003000019000000a803004041000000000041004b0000000004000019000000a804002041000000a80060009c000000000304c019000000000003004b000000ab0000c13d00000000002a004b0000025c0000813d0000000602a0021000000000012100190000000102100367000000000402043b000000a90040009c000000ab0000213d00060000000a001d00000020011000390000000101100367000000000301043b0000000001000414000000a20010009c000000a201008041000000c001100210000000000003004b000000ec0000613d000000aa011001c700008009020000390000000005000019000000ed0000013d00000000020400190285027b0000040f0000006003100270000000a2033001980000000309000029000000060a000029000001170000613d0000001f04300039000000ab044001970000003f04400039000000ac05400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000000a60050009c000002560000213d0000000100600190000002560000c13d000000400050043f0000000006340436000000ad0530019800000000045600190000010a0000613d000000000701034f000000007807043c0000000006860436000000000046004b000001060000c13d0000001f03300190000001170000613d000000000151034f0000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000100200190000000660000613d000000010aa000390000000400a0006c000000af0000413d000000480000013d000000000007004b00000000020000190000012d0000613d00000040033000390000000004000019000000000200001900000006054002100000000005530019000000000551034f000000000505043b000000000025001a000002740000413d00000000022500190000000104400039000000000074004b000001230000413d000400000007001d000000b301000041000000a00010043f0000000001000411000000a40010043f0000000001000410000000c40010043f000000e40020043f0000006401000039000000800010043f0000012001000039000000400010043f0000000001000414000000a20010009c000000a201008041000000c001100210000000b4011001c700000003020000290285027b0000040f0000006003100270000000a203300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000014e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000014a0000c13d000000000005004b0000015b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000016f0000613d000000000003004b0000018d0000c13d000000b50100004100000000001004430000000301000029000000a90110019700000004001004430000000001000414000000a20010009c000000a201008041000000c001100210000000b1011001c70000800202000039028502800000040f0000000100200190000002550000613d000000000101043b000001910000013d0000001f0530018f000000ad06300198000000400200043d00000000046200190000017a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000001760000c13d000000000005004b000001870000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000000a20020009c000000a2020080410000004002200210000000000112019f0000028700010430000000000100043d000000010010008c00000000010000390000000101006039000000000001004b0000019a0000c13d000000b801000041000000000010043f0000000301000029000000a901100197000000040010043f000000af010000410000028700010430000000040000006b000001c40000c13d0000000001000019000002860001042e0000001f04300039000000ab044001970000003f04400039000000ac04400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000000a60040009c000002560000213d0000000100600190000002560000c13d000000400040043f0000001f0430018f0000000006350436000000ad053001980000000003560019000001b60000613d000000000701034f000000007807043c0000000006860436000000000036004b000001b20000c13d000000000004004b000000640000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000640000013d0000000301000029000100a90010019b00000000070000190000000001000031000000020210006a000000230320008a00000005020000290000000102200367000000000202043b000000a804300197000000a805200197000000000645013f000000000045004b0000000004000019000000a804004041000000000032004b0000000003000019000000a803008041000000a80060009c000000000403c019000000000004004b000000ab0000c13d00000005032000290000000102300367000000000202043b000000a60020009c000000ab0000213d000000060420021000000000044100490000002001300039000000a803400197000000a805100197000000000635013f000000000035004b0000000003000019000000a803004041000000000041004b0000000004000019000000a804002041000000a80060009c000000000304c019000000000003004b000000ab0000c13d000000000027004b0000025c0000813d000000060270021000000000012100190000000102100367000000000202043b000000a90020009c000000ab0000213d000600000007001d00000020011000390000000101100367000000000301043b000000400100043d000000440410003900000000003404350000002003100039000000b60400004100000000004304350000002404100039000000000024043500000044020000390000000000210435000000b70010009c000002560000813d0000008002100039000000400020043f000000a20030009c000000a20300804100000040023002100000000001010433000000a20010009c000000a2010080410000006001100210000000000121019f0000000002000414000000a20020009c000000a202008041000000c002200210000000000121019f00000003020000290285027b0000040f0000006003100270000000a203300197000000200030008c000000200500003900000000050340190000002004500190000002250000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002210000c13d0000001f05500190000002320000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000002620000613d000000000003004b000000040200002900000006070000290000023f0000613d000000000100043d000000010010008c00000000010000390000000101006039000000000001004b000002510000c13d0000026e0000013d000000b5010000410000000000100443000000010100002900000004001004430000000001000414000000a20010009c000000a201008041000000c001100210000000b1011001c70000800202000039028502800000040f0000000100200190000002550000613d000000000101043b00000004020000290000000607000029000000000001004b0000026e0000613d0000000107700039000000000027004b000001c70000413d0000019c0000013d000000000001042f000000b201000041000000000010043f0000004101000039000000040010043f000000af010000410000028700010430000000b201000041000000000010043f0000003201000039000000040010043f000000af0100004100000287000104300000001f0530018f000000ad06300198000000400200043d00000000046200190000017a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000002690000c13d0000017a0000013d000000b801000041000000000010043f0000000101000029000000040010043f000000af010000410000028700010430000000b201000041000000000010043f0000001101000039000000040010043f000000af010000410000028700010430000000000001042f0000027e002104210000000102000039000000000001042d0000000002000019000000000001042d00000283002104230000000102000039000000000001042d0000000002000019000000000001042d0000028500000432000002860001042e000002870001043000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000003bd08a79000000000000000000000000000000000000000000000000000000009d0918b5000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0dd74906f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000a000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff805274afe7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5156223887274ed13ea1d8e7ba582fe83965b4c5efaa26ddc87c6b417436826
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.