Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 11024216 | 1974 days ago | 1.03025585 ETH | ||||
| - | 11024216 | 1974 days ago | 0.20115677 ETH | ||||
| - | 11024216 | 1974 days ago | 0.91475806 ETH | ||||
| - | 11024216 | 1974 days ago | 2.86552763 ETH | ||||
| - | 11024216 | 1974 days ago | 0.00491217 ETH | ||||
| - | 11024216 | 1974 days ago | 1.17788072 ETH | ||||
| - | 11024216 | 1974 days ago | 0.05348513 ETH | ||||
| - | 11024216 | 1974 days ago | 0.37430869 ETH | ||||
| - | 11024216 | 1974 days ago | 0.27830682 ETH | ||||
| - | 11024216 | 1974 days ago | 0.53557222 ETH | ||||
| - | 11024216 | 1974 days ago | 0.70103011 ETH | ||||
| - | 11024216 | 1974 days ago | 0.03435723 ETH | ||||
| - | 11024216 | 1974 days ago | 0.60190874 ETH | ||||
| - | 11024216 | 1974 days ago | 0.61335531 ETH | ||||
| - | 11024216 | 1974 days ago | 0.62088815 ETH | ||||
| - | 11024216 | 1974 days ago | 0.93204254 ETH | ||||
| - | 11024216 | 1974 days ago | 3.68452757 ETH | ||||
| - | 11024216 | 1974 days ago | 0.26531764 ETH | ||||
| - | 11024216 | 1974 days ago | 0.37536749 ETH | ||||
| - | 11024216 | 1974 days ago | 1.54062116 ETH | ||||
| - | 11024216 | 1974 days ago | 0.81833267 ETH | ||||
| - | 11024216 | 1974 days ago | 1.31657028 ETH | ||||
| - | 11024216 | 1974 days ago | 0.03189987 ETH | ||||
| - | 11024216 | 1974 days ago | 1.07092912 ETH | ||||
| - | 11024216 | 1974 days ago | 2.10814893 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ParsiqDistributor
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-10-09
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
contract ParsiqDistributor {
using SafeMath for uint256;
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor () public {
_status = _NOT_ENTERED;
}
function distributeTokensAndEth(
address token,
address[] calldata recipients,
uint256[] calldata shares,
uint256 tokensToDistribute
)
external
payable
nonReentrant
{
require(recipients.length == shares.length, "Invalid array length");
IERC20TransferMany(token).transferFrom(
msg.sender,
address(this),
tokensToDistribute
);
uint256[] memory tokens = new uint256[](recipients.length);
uint256 ethToDistribute = msg.value;
uint256 totalShares = 0;
for (uint256 i = 0; i < shares.length; i++) {
totalShares = totalShares.add(shares[i]);
}
require(totalShares > 0, "Zero shares");
uint256 sharesDistributed = 0;
uint256 ethDistributed = 0;
uint256 tokensDistributed = 0;
for (uint256 i = 0; i < shares.length; i++) {
sharesDistributed = sharesDistributed.add(shares[i]);
{
uint256 tokensDistributedX = sharesDistributed
.mul(tokensToDistribute)
.div(totalShares);
tokens[i] = shares[i]
.mul(tokensToDistribute)
.div(totalShares);
tokensDistributed = tokensDistributed.add(tokens[i]);
uint256 tokenRoundingError = tokensDistributedX.sub(tokensDistributed);
tokens[i] = tokens[i].add(tokenRoundingError);
tokensDistributed = tokensDistributed.add(tokenRoundingError);
}
{
uint256 ethDistributedX = sharesDistributed
.mul(ethToDistribute)
.div(totalShares);
uint256 ethers = shares[i]
.mul(ethToDistribute)
.div(totalShares);
ethDistributed = ethDistributed.add(ethers);
uint256 ethRoundingError = ethDistributedX.sub(ethDistributed);
ethers = ethers.add(ethRoundingError);
ethDistributed = ethDistributed.add(ethRoundingError);
if (ethers > 0) {
payable(recipients[i]).transfer(ethers);
}
}
}
require(tokensDistributed == tokensToDistribute, "Tokens distribution failed");
require(ethDistributed == ethToDistribute, "ETH distribution failed");
IERC20TransferMany(token).transferMany(recipients, tokens);
}
modifier nonReentrant() {
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
_status = _ENTERED;
_;
_status = _NOT_ENTERED;
}
}
interface IERC20TransferMany {
function transferMany(
address[] calldata recipients,
uint256[] calldata amounts
) external;
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
return c;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"},{"internalType":"uint256","name":"tokensToDistribute","type":"uint256"}],"name":"distributeTokensAndEth","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50600160005561090f806100256000396000f3fe60806040526004361061001e5760003560e01c8063ba34af1f14610023575b600080fd5b6100f56004803603608081101561003957600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561006457600080fd5b82018360208201111561007657600080fd5b8035906020019184602083028401116401000000008311171561009857600080fd5b9193909290916020810190356401000000008111156100b657600080fd5b8201836020820111156100c857600080fd5b803590602001918460208302840111640100000000831117156100ea57600080fd5b9193509150356100f7565b005b6002600054141561014f576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026000558382146101a8576040805162461bcd60e51b815260206004820152601460248201527f496e76616c6964206172726179206c656e677468000000000000000000000000604482015290519081900360640190fd5b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810183905290516001600160a01b038816916323b872dd9160648083019260209291908290030181600087803b15801561021657600080fd5b505af115801561022a573d6000803e3d6000fd5b505050506040513d602081101561024057600080fd5b50606090508467ffffffffffffffff8111801561025c57600080fd5b50604051908082528060200260200182016040528015610286578160200160208202803683370190505b509050346000805b858110156102c5576102bb8787838181106102a557fe5b905060200201358361067c90919063ffffffff16565b915060010161028e565b506000811161031b576040805162461bcd60e51b815260206004820152600b60248201527f5a65726f20736861726573000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000806000805b888110156104f05761034f8a8a8381811061033957fe5b905060200201358561067c90919063ffffffff16565b9350600061036786610361878c6106df565b90610738565b9050610392866103618b8e8e8781811061037d57fe5b905060200201356106df90919063ffffffff16565b88838151811061039e57fe5b6020026020010181815250506103d08883815181106103b957fe5b60200260200101518461067c90919063ffffffff16565b925060006103de828561077a565b9050610406818a85815181106103f057fe5b602002602001015161067c90919063ffffffff16565b89848151811061041257fe5b6020908102919091010152610427848261067c565b93506000915061043d905086610361878a6106df565b90506000610455876103618a8f8f8881811061037d57fe5b9050610461858261067c565b9450600061046f838761077a565b905061047b828261067c565b9150610487868261067c565b955081156104e5578e8e8581811061049b57fe5b905060200201356001600160a01b03166001600160a01b03166108fc839081150290604051600060405180830381858888f193505050501580156104e3573d6000803e3d6000fd5b505b505050600101610322565b50868114610545576040805162461bcd60e51b815260206004820152601a60248201527f546f6b656e7320646973747269627574696f6e206661696c6564000000000000604482015290519081900360640190fd5b848214610599576040805162461bcd60e51b815260206004820152601760248201527f45544820646973747269627574696f6e206661696c6564000000000000000000604482015290519081900360640190fd5b8b6001600160a01b031663b7fc66128c8c896040518463ffffffff1660e01b815260040180806020018060200183810383528686828181526020019250602002808284376000838201819052601f909101601f1916909201858103845286518152865160209182019382890193509102908190849084905b83811015610629578181015183820152602001610611565b5050505090500195505050505050600060405180830381600087803b15801561065157600080fd5b505af1158015610665573d6000803e3d6000fd5b505060016000555050505050505050505050505050565b6000828201838110156106d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000826106ee575060006106d9565b828202828482816106fb57fe5b04146106d65760405162461bcd60e51b81526004018080602001828103825260218152602001806108b96021913960400191505060405180910390fd5b60006106d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506107bc565b60006106d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061085e565b600081836108485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561080d5781810151838201526020016107f5565b50505050905090810190601f16801561083a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161085457fe5b0495945050505050565b600081848411156108b05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561080d5781810151838201526020016107f5565b50505090039056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a26469706673582212204a6ba364e3303c0ab98878100f4ec554c29f39752caeaf469837de7de63d869b64736f6c634300060c0033
Deployed Bytecode
0x60806040526004361061001e5760003560e01c8063ba34af1f14610023575b600080fd5b6100f56004803603608081101561003957600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561006457600080fd5b82018360208201111561007657600080fd5b8035906020019184602083028401116401000000008311171561009857600080fd5b9193909290916020810190356401000000008111156100b657600080fd5b8201836020820111156100c857600080fd5b803590602001918460208302840111640100000000831117156100ea57600080fd5b9193509150356100f7565b005b6002600054141561014f576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026000558382146101a8576040805162461bcd60e51b815260206004820152601460248201527f496e76616c6964206172726179206c656e677468000000000000000000000000604482015290519081900360640190fd5b604080517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810183905290516001600160a01b038816916323b872dd9160648083019260209291908290030181600087803b15801561021657600080fd5b505af115801561022a573d6000803e3d6000fd5b505050506040513d602081101561024057600080fd5b50606090508467ffffffffffffffff8111801561025c57600080fd5b50604051908082528060200260200182016040528015610286578160200160208202803683370190505b509050346000805b858110156102c5576102bb8787838181106102a557fe5b905060200201358361067c90919063ffffffff16565b915060010161028e565b506000811161031b576040805162461bcd60e51b815260206004820152600b60248201527f5a65726f20736861726573000000000000000000000000000000000000000000604482015290519081900360640190fd5b6000806000805b888110156104f05761034f8a8a8381811061033957fe5b905060200201358561067c90919063ffffffff16565b9350600061036786610361878c6106df565b90610738565b9050610392866103618b8e8e8781811061037d57fe5b905060200201356106df90919063ffffffff16565b88838151811061039e57fe5b6020026020010181815250506103d08883815181106103b957fe5b60200260200101518461067c90919063ffffffff16565b925060006103de828561077a565b9050610406818a85815181106103f057fe5b602002602001015161067c90919063ffffffff16565b89848151811061041257fe5b6020908102919091010152610427848261067c565b93506000915061043d905086610361878a6106df565b90506000610455876103618a8f8f8881811061037d57fe5b9050610461858261067c565b9450600061046f838761077a565b905061047b828261067c565b9150610487868261067c565b955081156104e5578e8e8581811061049b57fe5b905060200201356001600160a01b03166001600160a01b03166108fc839081150290604051600060405180830381858888f193505050501580156104e3573d6000803e3d6000fd5b505b505050600101610322565b50868114610545576040805162461bcd60e51b815260206004820152601a60248201527f546f6b656e7320646973747269627574696f6e206661696c6564000000000000604482015290519081900360640190fd5b848214610599576040805162461bcd60e51b815260206004820152601760248201527f45544820646973747269627574696f6e206661696c6564000000000000000000604482015290519081900360640190fd5b8b6001600160a01b031663b7fc66128c8c896040518463ffffffff1660e01b815260040180806020018060200183810383528686828181526020019250602002808284376000838201819052601f909101601f1916909201858103845286518152865160209182019382890193509102908190849084905b83811015610629578181015183820152602001610611565b5050505090500195505050505050600060405180830381600087803b15801561065157600080fd5b505af1158015610665573d6000803e3d6000fd5b505060016000555050505050505050505050505050565b6000828201838110156106d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6000826106ee575060006106d9565b828202828482816106fb57fe5b04146106d65760405162461bcd60e51b81526004018080602001828103825260218152602001806108b96021913960400191505060405180910390fd5b60006106d683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506107bc565b60006106d683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061085e565b600081836108485760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561080d5781810151838201526020016107f5565b50505050905090810190601f16801561083a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161085457fe5b0495945050505050565b600081848411156108b05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561080d5781810151838201526020016107f5565b50505090039056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a26469706673582212204a6ba364e3303c0ab98878100f4ec554c29f39752caeaf469837de7de63d869b64736f6c634300060c0033
Deployed Bytecode Sourcemap
60:2671:0:-:0;;;;;;;;;;;;;;;;;;;;;308:2244;;;;;;;;;;;;;;;;-1:-1:-1;;;;;308:2244:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;308:2244:0;-1:-1:-1;308:2244:0;;:::i;:::-;;;205:1;2599:7;;:19;;2591:63;;;;;-1:-1:-1;;;2591:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;205:1;2663:7;:18;529:34;;::::1;521:67;;;::::0;;-1:-1:-1;;;521:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;597:113;::::0;;;;;644:10:::1;597:113;::::0;::::1;::::0;671:4:::1;597:113:::0;;;;;;;;;;;;-1:-1:-1;;;;;597:38:0;::::1;::::0;::::1;::::0;:113;;;;;::::1;::::0;;;;;;;;-1:-1:-1;597:38:0;:113;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;719:23:0::1;::::0;-1:-1:-1;759:10:0;745:32:::1;::::0;::::1;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;745:32:0::1;-1:-1:-1::0;719:58:0;-1:-1:-1;810:9:0::1;784:23;::::0;858:101:::1;878:17:::0;;::::1;858:101;;;925:26;941:6;;948:1;941:9;;;;;;;;;;;;;925:11;:15;;:26;;;;:::i;:::-;911:40:::0;-1:-1:-1;897:3:0::1;;858:101;;;;987:1;973:11;:15;965:39;;;::::0;;-1:-1:-1;;;965:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;1013:25;1049:22:::0;1082:25:::1;1125:9:::0;1120:1199:::1;1140:17:::0;;::::1;1120:1199;;;1193:32;1215:6;;1222:1;1215:9;;;;;;;;;;;;;1193:17;:21;;:32;;;;:::i;:::-;1173:52:::0;-1:-1:-1;1251:26:0::1;1280:82;1350:11:::0;1280:53:::1;1173:52:::0;1314:18;1280:33:::1;:53::i;:::-;:69:::0;::::1;:82::i;:::-;1251:111;;1387:74;1449:11;1387:45;1413:18;1387:6;;1394:1;1387:9;;;;;;;;;;;;;:25;;:45;;;;:::i;:74::-;1375:6;1382:1;1375:9;;;;;;;;;;;;;:86;;;::::0;::::1;1494:32;1516:6;1523:1;1516:9;;;;;;;;;;;;;;1494:17;:21;;:32;;;;:::i;:::-;1474:52:::0;-1:-1:-1;1537:26:0::1;1566:41;:18:::0;1474:52;1566:22:::1;:41::i;:::-;1537:70;;1630:33;1644:18;1630:6;1637:1;1630:9;;;;;;;;;;;;;;:13;;:33;;;;:::i;:::-;1618:6;1625:1;1618:9;;;;;;;;;::::0;;::::1;::::0;;;;;:45;1694:41:::1;:17:::0;1716:18;1694:21:::1;:41::i;:::-;1674:61:::0;-1:-1:-1;1766:23:0::1;::::0;-1:-1:-1;1792:79:0::1;::::0;-1:-1:-1;1859:11:0;1792:50:::1;:17:::0;1826:15;1792:33:::1;:50::i;:79::-;1766:105;;1882:14;1899:71;1958:11;1899:42;1925:15;1899:6;;1906:1;1899:9;;;;;;:71;1882:88:::0;-1:-1:-1;1998:26:0::1;:14:::0;1882:88;1998:18:::1;:26::i;:::-;1981:43:::0;-1:-1:-1;2035:24:0::1;2062:35;:15:::0;1981:43;2062:19:::1;:35::i;:::-;2035:62:::0;-1:-1:-1;2117:28:0::1;:6:::0;2035:62;2117:10:::1;:28::i;:::-;2108:37:::0;-1:-1:-1;2173:36:0::1;:14:::0;2192:16;2173:18:::1;:36::i;:::-;2156:53:::0;-1:-1:-1;2227:10:0;;2223:80:::1;;2260:10;;2271:1;2260:13;;;;;;;;;;;;;-1:-1:-1::0;;;;;2260:13:0::1;-1:-1:-1::0;;;;;2252:31:0::1;:39;2284:6;2252:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2223:80;-1:-1:-1::0;;;1159:3:0::1;;1120:1199;;;;2354:18;2333:17;:39;2325:78;;;::::0;;-1:-1:-1;;;2325:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;2436:15;2418:14;:33;2410:69;;;::::0;;-1:-1:-1;;;2410:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;2507:5;-1:-1:-1::0;;;;;2488:38:0::1;;2527:10;;2539:6;2488:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;;::::1;-1:-1:-1::0;;2488:58:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;-1:-1:-1;2488:58:0;::::1;::::0;;;;;;;::::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;163:1:0;2700:7;:22;-1:-1:-1;;;;;;;;;;;;;;308:2244:0:o;3030:181::-;3088:7;3120:5;;;3144:6;;;;3136:46;;;;;-1:-1:-1;;;3136:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3202:1;-1:-1:-1;3030:181:0;;;;;:::o;3557:250::-;3615:7;3639:6;3635:47;;-1:-1:-1;3669:1:0;3662:8;;3635:47;3706:5;;;3710:1;3706;:5;:1;3730:5;;;;;:10;3722:56;;;;-1:-1:-1;;;3722:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3815:132;3873:7;3900:39;3904:1;3907;3900:39;;;;;;;;;;;;;;;;;:3;:39::i;3217:136::-;3275:7;3302:43;3306:1;3309;3302:43;;;;;;;;;;;;;;;;;:3;:43::i;3953:189::-;4039:7;4074:12;4067:5;4059:28;;;;-1:-1:-1;;;4059:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4098:9;4114:1;4110;:5;;;;;;;3953:189;-1:-1:-1;;;;;3953:189:0:o;3359:192::-;3445:7;3481:12;3473:6;;;;3465:29;;;;-1:-1:-1;;;3465:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3517:5:0;;;3359:192::o
Swarm Source
ipfs://4a6ba364e3303c0ab98878100f4ec554c29f39752caeaf469837de7de63d869b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 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.