Source Code
Latest 25 from a total of 3,075 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Join | 11516828 | 434 days ago | IN | 0 ETH | 0.00000046 | ||||
| Join | 11375016 | 438 days ago | IN | 0 ETH | 0.00000011 | ||||
| Join | 11289747 | 440 days ago | IN | 0 ETH | 0.00000199 | ||||
| Join | 11212822 | 441 days ago | IN | 0 ETH | 0.00000016 | ||||
| Join | 11154571 | 443 days ago | IN | 0 ETH | 0.00000012 | ||||
| Join | 11072566 | 445 days ago | IN | 0 ETH | 0.00000019 | ||||
| Join | 11025116 | 446 days ago | IN | 0 ETH | 0.00000244 | ||||
| Join | 10986730 | 447 days ago | IN | 0 ETH | 0.00000019 | ||||
| Join | 10938840 | 448 days ago | IN | 0 ETH | 0.00000011 | ||||
| Join | 10915997 | 448 days ago | IN | 0 ETH | 0.00000015 | ||||
| Join | 10852335 | 450 days ago | IN | 0 ETH | 0.00000012 | ||||
| Join | 10810384 | 451 days ago | IN | 0 ETH | 0.00000038 | ||||
| Join | 10768412 | 452 days ago | IN | 0 ETH | 0.00000067 | ||||
| Join | 10738522 | 452 days ago | IN | 0 ETH | 0.00000041 | ||||
| Join | 10685897 | 454 days ago | IN | 0 ETH | 0.00000017 | ||||
| Join | 10609371 | 455 days ago | IN | 0 ETH | 0.00000005 | ||||
| Join | 10551405 | 457 days ago | IN | 0 ETH | 0.00000005 | ||||
| Join | 10522776 | 457 days ago | IN | 0 ETH | 0.00000011 | ||||
| Join | 10419768 | 460 days ago | IN | 0 ETH | 0.00000006 | ||||
| Join | 10377519 | 461 days ago | IN | 0 ETH | 0.00000007 | ||||
| Join | 10333099 | 462 days ago | IN | 0 ETH | 0.00000008 | ||||
| Join | 10290866 | 463 days ago | IN | 0 ETH | 0.00000007 | ||||
| Join | 10254681 | 464 days ago | IN | 0 ETH | 0.00000013 | ||||
| Join | 10217718 | 464 days ago | IN | 0 ETH | 0.00000012 | ||||
| Join | 10162991 | 466 days ago | IN | 0 ETH | 0.00000012 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Join
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at blastscan.io on 2024-05-30
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.18;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.18;
/**
* @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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IBlast{
enum YieldMode {
AUTOMATIC,
VOID,
CLAIMABLE
}
enum GasMode {
VOID,
CLAIMABLE
}
// configure
function configureContract(address contractAddress, YieldMode _yield, GasMode gasMode, address governor) external;
function configure(YieldMode _yield, GasMode gasMode, address governor) external;
// base configuration options
function configureClaimableYield() external;
function configureClaimableYieldOnBehalf(address contractAddress) external;
function configureAutomaticYield() external;
function configureAutomaticYieldOnBehalf(address contractAddress) external;
function configureVoidYield() external;
function configureVoidYieldOnBehalf(address contractAddress) external;
function configureClaimableGas() external;
function configureClaimableGasOnBehalf(address contractAddress) external;
function configureVoidGas() external;
function configureVoidGasOnBehalf(address contractAddress) external;
function configureGovernor(address _governor) external;
function configureGovernorOnBehalf(address _newGovernor, address contractAddress) external;
// claim yield
function claimYield(address contractAddress, address recipientOfYield, uint256 amount) external returns (uint256);
function claimAllYield(address contractAddress, address recipientOfYield) external returns (uint256);
// claim gas
function claimAllGas(address contractAddress, address recipientOfGas) external returns (uint256);
function claimGasAtMinClaimRate(address contractAddress, address recipientOfGas, uint256 minClaimRateBips) external returns (uint256);
function claimMaxGas(address contractAddress, address recipientOfGas) external returns (uint256);
function claimGas(address contractAddress, address recipientOfGas, uint256 gasToClaim, uint256 gasSecondsToConsume) external returns (uint256);
// read functions
function readClaimableYield(address contractAddress) external view returns (uint256);
function readYieldConfiguration(address contractAddress) external view returns (uint8);
function readGasParams(address contractAddress) external view returns (uint256 etherSeconds, uint256 etherBalance, uint256 lastUpdated, GasMode);
}
interface IBlastPoints {
function configurePointsOperator(address operator) external;
}
// File: contracts/proxy/upgradeable/Join_eth.sol
pragma solidity ^0.8.18;
contract Join is Ownable, ReentrancyGuard {
uint256 public price = 312500000000000;
mapping(address => uint256) public times;
event JoinEvent(address user, uint256 times,uint256 timestamp);
IBlast public constant BLAST = IBlast(0x4300000000000000000000000000000000000002);
IBlastPoints public constant BLAST_POINTS = IBlastPoints(0x2536FE9ab3F511540F2f9e2eC2A805005C3Dd800);
constructor(address initialOwner) Ownable(initialOwner) {
BLAST.configureClaimableGas();
BLAST.configureClaimableYield();
BLAST.configureGovernor(initialOwner);
BLAST_POINTS.configurePointsOperator(initialOwner);
}
function setPrice(uint256 _amount) onlyOwner external {
price = _amount;
}
function join()
external
payable
{
uint256 _times = times[msg.sender];
times[msg.sender] = _times + 1;
emit JoinEvent(msg.sender, _times + 1, block.timestamp);
}
function withdraw() onlyOwner external nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed.");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"JoinEvent","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":"BLAST","outputs":[{"internalType":"contract IBlast","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLAST_POINTS","outputs":[{"internalType":"contract IBlastPoints","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"join","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"times","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405266011c37937e080060025534801561001b57600080fd5b5060405161079c38038061079c83398101604081905261003a91610278565b806001600160a01b03811661006957604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61007281610228565b50600180819055507343000000000000000000000000000000000000026001600160a01b0316634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156100c957600080fd5b505af11580156100dd573d6000803e3d6000fd5b505050507343000000000000000000000000000000000000026001600160a01b031663f098767a6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561013057600080fd5b505af1158015610144573d6000803e3d6000fd5b5050604051631d70c8d360e31b81526001600160a01b0384166004820152734300000000000000000000000000000000000002925063eb8646989150602401600060405180830381600087803b15801561019d57600080fd5b505af11580156101b1573d6000803e3d6000fd5b50506040516336b91f2b60e01b81526001600160a01b0384166004820152732536fe9ab3f511540f2f9e2ec2a805005c3dd80092506336b91f2b9150602401600060405180830381600087803b15801561020a57600080fd5b505af115801561021e573d6000803e3d6000fd5b50505050506102a8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561028a57600080fd5b81516001600160a01b03811681146102a157600080fd5b9392505050565b6104e5806102b76000396000f3fe6080604052600436106100915760003560e01c806397d757761161005957806397d7577614610145578063a035b1fe14610160578063b688a36314610184578063ce7992f91461018c578063f2fde38b146101b957600080fd5b80633ccfd60b146100965780634b8f9025146100ad578063715018a6146100f25780638da5cb5b1461010757806391b7f5ed14610125575b600080fd5b3480156100a257600080fd5b506100ab6101d9565b005b3480156100b957600080fd5b506100d5732536fe9ab3f511540f2f9e2ec2a805005c3dd80081565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100fe57600080fd5b506100ab610285565b34801561011357600080fd5b506000546001600160a01b03166100d5565b34801561013157600080fd5b506100ab61014036600461043f565b610297565b34801561015157600080fd5b506100d56002604360981b0181565b34801561016c57600080fd5b5061017660025481565b6040519081526020016100e9565b6100ab6102a4565b34801561019857600080fd5b506101766101a7366004610458565b60036020526000908152604090205481565b3480156101c557600080fd5b506100ab6101d4366004610458565b61032b565b6101e1610369565b6101e9610396565b604051600090339047908381818185875af1925050503d806000811461022b576040519150601f19603f3d011682016040523d82523d6000602084013e610230565b606091505b50509050806102795760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b5061028360018055565b565b61028d610369565b61028360006103ef565b61029f610369565b600255565b336000908152600360205260409020546102bf816001610488565b336000818152600360205260409020919091557f45b72556aeac5bc02120b4ddca0bbfebb8ef8ef4fe0867be653e2ea5da259287906102ff836001610488565b604080516001600160a01b0390931683526020830191909152429082015260600160405180910390a150565b610333610369565b6001600160a01b03811661035d57604051631e4fbdf760e01b815260006004820152602401610270565b610366816103ef565b50565b6000546001600160a01b031633146102835760405163118cdaa760e01b8152336004820152602401610270565b6002600154036103e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610270565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561045157600080fd5b5035919050565b60006020828403121561046a57600080fd5b81356001600160a01b038116811461048157600080fd5b9392505050565b808201808211156104a957634e487b7160e01b600052601160045260246000fd5b9291505056fea26469706673582212207458199517a022f6a206388039f957159dffe25f9e51c77ee72e9fc77ee1870464736f6c63430008120033000000000000000000000000d1ad8e4f04a6a2149e9b3e4229b923524a184b9c
Deployed Bytecode
0x6080604052600436106100915760003560e01c806397d757761161005957806397d7577614610145578063a035b1fe14610160578063b688a36314610184578063ce7992f91461018c578063f2fde38b146101b957600080fd5b80633ccfd60b146100965780634b8f9025146100ad578063715018a6146100f25780638da5cb5b1461010757806391b7f5ed14610125575b600080fd5b3480156100a257600080fd5b506100ab6101d9565b005b3480156100b957600080fd5b506100d5732536fe9ab3f511540f2f9e2ec2a805005c3dd80081565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100fe57600080fd5b506100ab610285565b34801561011357600080fd5b506000546001600160a01b03166100d5565b34801561013157600080fd5b506100ab61014036600461043f565b610297565b34801561015157600080fd5b506100d56002604360981b0181565b34801561016c57600080fd5b5061017660025481565b6040519081526020016100e9565b6100ab6102a4565b34801561019857600080fd5b506101766101a7366004610458565b60036020526000908152604090205481565b3480156101c557600080fd5b506100ab6101d4366004610458565b61032b565b6101e1610369565b6101e9610396565b604051600090339047908381818185875af1925050503d806000811461022b576040519150601f19603f3d011682016040523d82523d6000602084013e610230565b606091505b50509050806102795760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b5061028360018055565b565b61028d610369565b61028360006103ef565b61029f610369565b600255565b336000908152600360205260409020546102bf816001610488565b336000818152600360205260409020919091557f45b72556aeac5bc02120b4ddca0bbfebb8ef8ef4fe0867be653e2ea5da259287906102ff836001610488565b604080516001600160a01b0390931683526020830191909152429082015260600160405180910390a150565b610333610369565b6001600160a01b03811661035d57604051631e4fbdf760e01b815260006004820152602401610270565b610366816103ef565b50565b6000546001600160a01b031633146102835760405163118cdaa760e01b8152336004820152602401610270565b6002600154036103e85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610270565b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561045157600080fd5b5035919050565b60006020828403121561046a57600080fd5b81356001600160a01b038116811461048157600080fd5b9392505050565b808201808211156104a957634e487b7160e01b600052601160045260246000fd5b9291505056fea26469706673582212207458199517a022f6a206388039f957159dffe25f9e51c77ee72e9fc77ee1870464736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d1ad8e4f04a6a2149e9b3e4229b923524a184b9c
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xd1AD8E4f04A6a2149E9B3E4229B923524a184b9c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d1ad8e4f04a6a2149e9b3e4229b923524a184b9c
Deployed Bytecode Sourcemap
9991:1201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11002:187;;;;;;;;;;;;;:::i;:::-;;10291:100;;;;;;;;;;;;10348:42;10291:100;;;;;-1:-1:-1;;;;;198:32:1;;;180:51;;168:2;153:18;10291:100:0;;;;;;;;6634:103;;;;;;;;;;;;;:::i;5959:87::-;;;;;;;;;;-1:-1:-1;6005:7:0;6032:6;-1:-1:-1;;;;;6032:6:0;5959:87;;10679:88;;;;;;;;;;-1:-1:-1;10679:88:0;;;;;:::i;:::-;;:::i;10203:81::-;;;;;;;;;;;;-1:-1:-1;;;;;10203:81:0;;10042:38;;;;;;;;;;;;;;;;;;;1003:25:1;;;991:2;976:18;10042:38:0;857:177:1;10775:219:0;;;:::i;10087:40::-;;;;;;;;;;-1:-1:-1;10087:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;6892:220;;;;;;;;;;-1:-1:-1;6892:220:0;;;;;:::i;:::-;;:::i;11002:187::-;5845:13;:11;:13::i;:::-;2378:21:::1;:19;:21::i;:::-;11085:49:::2;::::0;11067:12:::2;::::0;11085:10:::2;::::0;11108:21:::2;::::0;11067:12;11085:49;11067:12;11085:49;11108:21;11085:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11066:68;;;11153:7;11145:36;;;::::0;-1:-1:-1;;;11145:36:0;;1742:2:1;11145:36:0::2;::::0;::::2;1724:21:1::0;1781:2;1761:18;;;1754:30;-1:-1:-1;;;1800:18:1;;;1793:46;1856:18;;11145:36:0::2;;;;;;;;;11055:134;2422:20:::1;1816:1:::0;2942:22;;2759:213;2422:20:::1;11002:187::o:0;6634:103::-;5845:13;:11;:13::i;:::-;6699:30:::1;6726:1;6699:18;:30::i;10679:88::-:0;5845:13;:11;:13::i;:::-;10744:5:::1;:15:::0;10679:88::o;10775:219::-;10868:10;10845:14;10862:17;;;:5;:17;;;;;;10910:10;10862:17;10919:1;10910:10;:::i;:::-;10896;10890:17;;;;:5;:17;;;;;:30;;;;10936:50;;10958:10;:6;10967:1;10958:10;:::i;:::-;10936:50;;;-1:-1:-1;;;;;2332:32:1;;;2314:51;;2396:2;2381:18;;2374:34;;;;10970:15:0;2424:18:1;;;2417:34;2302:2;2287:18;10936:50:0;;;;;;;10834:160;10775:219::o;6892:220::-;5845:13;:11;:13::i;:::-;-1:-1:-1;;;;;6977:22:0;::::1;6973:93;;7023:31;::::0;-1:-1:-1;;;7023:31:0;;7051:1:::1;7023:31;::::0;::::1;180:51:1::0;153:18;;7023:31:0::1;14:223:1::0;6973:93:0::1;7076:28;7095:8;7076:18;:28::i;:::-;6892:220:::0;:::o;6124:166::-;6005:7;6032:6;-1:-1:-1;;;;;6032:6:0;4048:10;6184:23;6180:103;;6231:40;;-1:-1:-1;;;6231:40:0;;4048:10;6231:40;;;180:51:1;153:18;;6231:40:0;14:223:1;2458:293:0;1860:1;2592:7;;:19;2584:63;;;;-1:-1:-1;;;2584:63:0;;2664:2:1;2584:63:0;;;2646:21:1;2703:2;2683:18;;;2676:30;2742:33;2722:18;;;2715:61;2793:18;;2584:63:0;2462:355:1;2584:63:0;1860:1;2725:7;:18;2458:293::o;7272:191::-;7346:16;7365:6;;-1:-1:-1;;;;;7382:17:0;;;-1:-1:-1;;;;;;7382:17:0;;;;;;7415:40;;7365:6;;;;;;;7415:40;;7346:16;7415:40;7335:128;7272:191;:::o;450:180:1:-;509:6;562:2;550:9;541:7;537:23;533:32;530:52;;;578:1;575;568:12;530:52;-1:-1:-1;601:23:1;;450:180;-1:-1:-1;450:180:1:o;1039:286::-;1098:6;1151:2;1139:9;1130:7;1126:23;1122:32;1119:52;;;1167:1;1164;1157:12;1119:52;1193:23;;-1:-1:-1;;;;;1245:31:1;;1235:42;;1225:70;;1291:1;1288;1281:12;1225:70;1314:5;1039:286;-1:-1:-1;;;1039:286:1:o;1885:222::-;1950:9;;;1971:10;;;1968:133;;;2023:10;2018:3;2014:20;2011:1;2004:31;2058:4;2055:1;2048:15;2086:4;2083:1;2076:15;1968:133;1885:222;;;;:::o
Swarm Source
ipfs://7458199517a022f6a206388039f957159dffe25f9e51c77ee72e9fc77ee18704
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 ]
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.