Source Code
Overview
S Balance
More Info
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xc19eCB2b...E5D26a0Fa The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Charity
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.7;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import {IGelatoChecker} from "./interfaces/IGelatoChecker.sol";import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import {ICharity} from "./interfaces/ICharity.sol";import {ICharityDao} from "./interfaces/ICharityDao.sol";contract Charity is Ownable, ReentrancyGuard, IGelatoChecker, ICharity, ICharityDao {using SafeERC20 for IERC20;/** state variables */bool public canWithdrawFunds = true;Category public charityCategory;address public automationBot = address(0);/** constants */address public constant ETH_ADDRESS = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE);/*** mappings*/mapping(address => bool) public whitelistedTokens;mapping(address => bool) public organizationExists;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** 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);
1234567891011121314151617181920212223242526// 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)'))*/
123456// 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";
123456// 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";
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)pragma solidity ^0.8.20;/*** @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 EIP-1153 (transient storage) is available on the chain you're deploying at,* consider using {ReentrancyGuardTransient} instead.** 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
12345678910// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.8.0;interface ICharity {function withdrawToOrganization(address token,uint256 amount,address[] memory organization) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.7;interface ICharityDao {/** errors */error Charity__InsufficientBalance();error Charity__SendingFailed();error Charity__WithdrawalDisabled();error Charity__TokenAlreadyWhitelisted();error Charity__TokenNotWhitelisted();error Charity__MustBeAutomatedOrOwner(address caller);error Charity__OrganizationAlreadyExists();error Charity__OrganizationNotFound();error Charity__OnlyGovernor();error Charity__GovernorCanNotBeZeroAddress();/** functions */function addWhitelistedToken(address token) external;function removeWhitelistedToken(address token) external;function addOrganization(address organization) external;function removeOrganization(address organization) external;}
123456// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.8.0;interface IGelatoChecker {function checker() external view returns (bool canExec, bytes memory execPayload);}
1234567891011121314151617181920{"optimizer": {"enabled": true,"runs": 200},"evmVersion": "paris","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract ABI
API[{"inputs":[{"internalType":"enum Charity.Category","name":"_category","type":"uint8"},{"internalType":"address","name":"_automationBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Charity__GovernorCanNotBeZeroAddress","type":"error"},{"inputs":[],"name":"Charity__InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"Charity__MustBeAutomatedOrOwner","type":"error"},{"inputs":[],"name":"Charity__OnlyGovernor","type":"error"},{"inputs":[],"name":"Charity__OrganizationAlreadyExists","type":"error"},{"inputs":[],"name":"Charity__OrganizationNotFound","type":"error"},{"inputs":[],"name":"Charity__SendingFailed","type":"error"},{"inputs":[],"name":"Charity__TokenAlreadyWhitelisted","type":"error"},{"inputs":[],"name":"Charity__TokenNotWhitelisted","type":"error"},{"inputs":[],"name":"Charity__WithdrawalDisabled","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"organization","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DonationWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"organization","type":"address"}],"name":"OrganizationAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"organization","type":"address"}],"name":"OrganizationRemoved","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"TokenRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"TokenWhitelisted","type":"event"},{"inputs":[],"name":"ETH_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"organization","type":"address"}],"name":"addOrganization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"addWhitelistedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"automationBot","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canWithdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canWithdrawFunds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityCategory","outputs":[{"internalType":"enum Charity.Category","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checker","outputs":[{"internalType":"bool","name":"canExec","type":"bool"},{"internalType":"bytes","name":"execPayload","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOrganizations","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedTokens","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"organizationExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"organizations","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"organization","type":"address"}],"name":"removeOrganization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"removeWhitelistedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_automation","type":"address"}],"name":"setAutomationBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setCanWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address[]","name":"orgs","type":"address[]"}],"name":"withdrawToOrganization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106101445760003560e01c8063a734f06e116100b6578063db3628171161006f578063db362817146103bd578063e26f7900146103e3578063e792dd8a146103f8578063e7abd5ea14610418578063f2fde38b14610448578063f349736b1461046857600080fd5b8063a734f06e146102de578063b51459fe14610306578063b559d6231461032a578063cf5303cf1461034a578063d68287df1461036d578063daf9c2101461038d57600080fd5b80636ff2c610116101085780636ff2c6101461020757806370a0823114610227578063715018a6146102555780638da5cb5b1461026a5780639754a3a81461029c5780639ead7222146102be57600080fd5b80630c54c392146101505780631c88705d1461017257806326038e4d14610192578063326e5540146101c7578063363cb34d146101e757600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061017061016b3660046112df565b610482565b005b34801561017e57600080fd5b5061017061018d3660046112df565b6104fd565b34801561019e57600080fd5b506002546101b190610100900460ff1681565b6040516101be9190611301565b60405180910390f35b3480156101d357600080fd5b506101706101e2366004611329565b61069b565b3480156101f357600080fd5b506101706102023660046112df565b6106fa565b34801561021357600080fd5b506101706102223660046112df565b6107d2565b34801561023357600080fd5b506102476102423660046112df565b610967565b6040519081526020016101be565b34801561026157600080fd5b50610170610a02565b34801561027657600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101be565b3480156102a857600080fd5b506102b1610a16565b6040516101be919061134b565b3480156102ca57600080fd5b506102846102d9366004611397565b610a78565b3480156102ea57600080fd5b5061028473eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b34801561031257600080fd5b5060025460ff165b60405190151581526020016101be565b34801561033657600080fd5b506101706103453660046113c6565b610aa2565b34801561035657600080fd5b5061035f610cfd565b6040516101be9291906114b2565b34801561037957600080fd5b506101706103883660046112df565b610fdc565b34801561039957600080fd5b5061031a6103a83660046112df565b60036020526000908152604090205460ff1681565b3480156103c957600080fd5b50600254610284906201000090046001600160a01b031681565b3480156103ef57600080fd5b506102b16110aa565b34801561040457600080fd5b50610284610413366004611397565b61110a565b34801561042457600080fd5b5061031a6104333660046112df565b60046020526000908152604090205460ff1681565b34801561045457600080fd5b506101706104633660046112df565b61111a565b34801561047457600080fd5b5060025461031a9060ff1681565b6002546201000090046001600160a01b031633148015906104ae57506000546001600160a01b03163314155b156104d35760405163051222cd60e31b81523360048201526024015b60405180910390fd5b600280546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b610505611158565b6001600160a01b03811660009081526003602052604090205460ff1661053e57604051635074a10760e01b815260040160405180910390fd5b6001600160a01b0381166000908152600360205260408120805460ff191690555b60055481101561065a57816001600160a01b03166005828154811061058657610586611509565b6000918252602090912001546001600160a01b03160361065257600580546105b09060019061151f565b815481106105c0576105c0611509565b600091825260209091200154600580546001600160a01b0390921691839081106105ec576105ec611509565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600580548061062b5761062b611540565b600082815260209020810160001990810180546001600160a01b031916905501905561065a565b60010161055f565b506040516001600160a01b03821681527f4c910b69fe65a61f7531b9c5042b2329ca7179c77290aa7e2eb3afa3c8511fd3906020015b60405180910390a150565b6002546201000090046001600160a01b031633148015906106c757506000546001600160a01b03163314155b156106e75760405163051222cd60e31b81523360048201526024016104ca565b6002805460ff1916911515919091179055565b610702611158565b6001600160a01b03811660009081526003602052604090205460ff161561073c576040516314c0223760e21b815260040160405180910390fd5b6001600160a01b0381166000818152600360209081526040808320805460ff191660019081179091556005805491820181559093527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090920180546001600160a01b0319168417905590519182527f6a65f90b1a644d2faac467a21e07e50e3f8fa5846e26231d30ae79a417d3d2629101610690565b6107da611158565b6001600160a01b03811660009081526004602052604090205460ff16610813576040516337b51e4d60e01b815260040160405180910390fd5b6001600160a01b0381166000908152600460205260408120805460ff19169055600654905b8181101561092e57826001600160a01b03166006828154811061085d5761085d611509565b6000918252602090912001546001600160a01b03160361092657600661088460018461151f565b8154811061089457610894611509565b600091825260209091200154600680546001600160a01b0390921691839081106108c0576108c0611509565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060068054806108ff576108ff611540565b600082815260209020810160001990810180546001600160a01b031916905501905561092e565b600101610838565b506040516001600160a01b038316907fed5ec13b592dc90954aa49a121766af1b7ad6efcd03593524623dc93c35c6fa090600090a25050565b60006001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146109fa576040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa1580156109d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f59190611556565b6109fc565b475b92915050565b610a0a611158565b610a146000611185565b565b60606006805480602002602001604051908101604052809291908181526020018280548015610a6e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a50575b5050505050905090565b60058181548110610a8857600080fd5b6000918252602090912001546001600160a01b0316905081565b6002546201000090046001600160a01b03163314801590610ace57506000546001600160a01b03163314155b15610aee5760405163051222cd60e31b81523360048201526024016104ca565b610af66111d5565b60025460ff16610b1957604051634a6e592d60e11b815260040160405180910390fd5b80516000819003610b3d576040516337b51e4d60e01b815260040160405180910390fd5b6000610b49828561156f565b905060005b82811015610cec5773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03871601610c0e576000848281518110610b8f57610b8f611509565b60200260200101516001600160a01b03168360405160006040518083038185875af1925050503d8060008114610be1576040519150601f19603f3d011682016040523d82523d6000602084013e610be6565b606091505b5050905080610c085760405163652b4abf60e01b815260040160405180910390fd5b50610c7e565b6001600160a01b03861660009081526003602052604090205460ff16610c4757604051635074a10760e01b815260040160405180910390fd5b610c7e848281518110610c5c57610c5c611509565b602002602001015183886001600160a01b03166111ff9092919063ffffffff16565b856001600160a01b0316848281518110610c9a57610c9a611509565b60200260200101516001600160a01b03167fe3e1bb45702d421c77dbd83c3b9336df12afc7514af1960cadb24210b5fb316284604051610cdc91815260200190565b60405180910390a3600101610b4e565b505050610cf860018055565b505050565b600654600090606090808303610d68576000604051602001610d50906020808252601b908201527f4e6f204f7267616e697a6174696f6e7320417661696c61626c65200000000000604082015260600190565b60405160208183030381529060405292509250509091565b60025460ff16610dac576000604051602001610d509060208082526014908201527315da5d1a191c985dd85b1cc8111a5cd8589b195960621b604082015260600190565b600047905060006005805480602002602001604051908101604052809291908181526020018280548015610e0957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610deb575b505050505090506000821115610e7b57600173eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee836006604051602401610e4593929190611591565b60408051601f198184030181529190526020810180516001600160e01b031663b559d62360e01b17905290969095509350505050565b60005b8151811015610f89576000828281518110610e9b57610e9b611509565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610eeb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0f9190611556565b90508015610f80576001838381518110610f2b57610f2b611509565b6020026020010151826006604051602401610f4893929190611591565b60408051601f198184030181529190526020810180516001600160e01b031663b559d62360e01b179052909890975095505050505050565b50600101610e7e565b506000604051602001610fc2906020808252601290820152714e6f2046756e647320417661696c61626c6560701b604082015260600190565b604051602081830303815290604052945094505050509091565b610fe4611158565b6001600160a01b03811660009081526004602052604090205460ff161561101e576040516301e9ba8360e01b815260040160405180910390fd5b6001600160a01b038116600081815260046020526040808220805460ff1916600190811790915560068054918201815583527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b03191684179055517ff84dfefd1424c476705a9a5ce3238cf6b203e946990646666c5bec8bc8043b2a9190a250565b60606005805480602002602001604051908101604052809291908181526020018280548015610a6e576020028201919060005260206000209081546001600160a01b03168152600190910190602001808311610a50575050505050905090565b60068181548110610a8857600080fd5b611122611158565b6001600160a01b03811661114c57604051631e4fbdf760e01b8152600060048201526024016104ca565b61115581611185565b50565b6000546001600160a01b03163314610a145760405163118cdaa760e01b81523360048201526024016104ca565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002600154036111f857604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b604080516001600160a01b03841660248201526044808201849052825180830390910181526064909101909152602080820180516001600160e01b031663a9059cbb60e01b1781528251610cf8938793909260009283929183919082885af18061126f576040513d6000823e3d81fd5b50506000513d91508115611287578060011415611294565b6001600160a01b0384163b155b156112bd57604051635274afe760e01b81526001600160a01b03851660048201526024016104ca565b50505050565b80356001600160a01b03811681146112da57600080fd5b919050565b6000602082840312156112f157600080fd5b6112fa826112c3565b9392505050565b602081016007831061132357634e487b7160e01b600052602160045260246000fd5b91905290565b60006020828403121561133b57600080fd5b813580151581146112fa57600080fd5b602080825282518282018190526000918401906040840190835b8181101561138c5783516001600160a01b0316835260209384019390920191600101611365565b509095945050505050565b6000602082840312156113a957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b6000806000606084860312156113db57600080fd5b6113e4846112c3565b925060208401359150604084013567ffffffffffffffff81111561140757600080fd5b8401601f8101861361141857600080fd5b803567ffffffffffffffff811115611432576114326113b0565b8060051b604051601f19603f830116810181811067ffffffffffffffff8211171561145f5761145f6113b0565b60405291825260208184018101929081018984111561147d57600080fd5b6020850194505b838510156114a357611495856112c3565b815260209485019401611484565b50809450505050509250925092565b8215158152604060208201526000825180604084015260005b818110156114e857602081860181015160608684010152016114cb565b506000606082850101526060601f19601f8301168401019150509392505050565b634e487b7160e01b600052603260045260246000fd5b818103818111156109fc57634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60006020828403121561156857600080fd5b5051919050565b60008261158c57634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b0384168152602080820184905260606040830181905283549083018190526000848152918220906080840190835b818110156115ed5783546001600160a01b03168352600193840193602090930192016115c6565b509097965050505050505056fea26469706673582212201e2cf1be960b731ddc78201e3a58d6b7361aada12f0b6133a5a7c7a45380201664736f6c634300081c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.