ERC-20
Overview
Max Total Supply
45,546.151655 ewM-3-DEBT
Holders
2
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
0 ewM-3-DEBTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x6AC3bD91...5B7589311 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
DToken
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 20000 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;import {Errors} from "./shared/Errors.sol";import {Events} from "./shared/Events.sol";import {IERC20, IEVault} from "./IEVault.sol";/// @title DToken/// @custom:security-contact security@euler.xyz/// @author Euler Labs (https://www.eulerlabs.com/)/// @notice Contract implements read only ERC20 interface, and `Transfer` events, for EVault's debtcontract DToken is IERC20, Errors, Events {/// @notice The address of the EVault associated with this DTokenaddress public immutable eVault;constructor() {eVault = msg.sender;}// ERC20 interface/// @notice The debt token (dToken) name/// @return The dToken namefunction name() external view returns (string memory) {return string.concat("Debt token of ", IEVault(eVault).name());
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;/// @title Errors/// @custom:security-contact security@euler.xyz/// @author Euler Labs (https://www.eulerlabs.com/)/// @notice Contract implementing EVault's custom errorscontract Errors {error E_Initialized();error E_ProxyMetadata();error E_SelfTransfer();error E_InsufficientAllowance();error E_InsufficientCash();error E_InsufficientAssets();error E_InsufficientBalance();error E_InsufficientDebt();error E_FlashLoanNotRepaid();error E_Reentrancy();error E_OperationDisabled();error E_OutstandingDebt();error E_AmountTooLargeToEncode();error E_DebtAmountTooLargeToEncode();error E_RepayTooMuch();error E_TransientState();error E_SelfLiquidation();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;/// @title Events/// @custom:security-contact security@euler.xyz/// @author Euler Labs (https://www.eulerlabs.com/)/// @notice Contract implementing EVault's eventsabstract contract Events {// ERC20/// @notice Transfer an ERC20 token balance/// @param from Sender address/// @param to Receiver address/// @param value Tokens sentevent Transfer(address indexed from, address indexed to, uint256 value);/// @notice Set an ERC20 approval/// @param owner Address granting approval to spend tokens/// @param spender Address receiving approval to spend tokens/// @param value Amount of tokens approved to spendevent Approval(address indexed owner, address indexed spender, uint256 value);// ERC4626/// @notice Deposit assets into an ERC4626 vault
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.8.0;import {IVault as IEVCVault} from "ethereum-vault-connector/interfaces/IVault.sol";// Full interface of EVault and all it's modules/// @title IInitialize/// @notice Interface of the initialization module of EVaultinterface IInitialize {/// @notice Initialization of the newly deployed proxy contract/// @param proxyCreator Account which created the proxy or should be the initial governorfunction initialize(address proxyCreator) external;}/// @title IERC20/// @notice Interface of the EVault's Initialize moduleinterface IERC20 {/// @notice Vault share token (eToken) name, ie "Euler Vault: DAI"/// @return The name of the eTokenfunction name() external view returns (string memory);/// @notice Vault share token (eToken) symbol, ie "eDAI"/// @return The symbol of the eTokenfunction symbol() external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity >=0.8.0;/// @title IVault/// @custom:security-contact security@euler.xyz/// @author Euler Labs (https://www.eulerlabs.com/)/// @notice This interface defines the methods for the Vault for the purpose of integration with the Ethereum Vault/// Connector.interface IVault {/// @notice Disables a controller (this vault) for the authenticated account./// @dev A controller is a vault that has been chosen for an account to have special control over account’s/// balances in the enabled collaterals vaults. User calls this function in order for the vault to disable itself/// for the account if the conditions are met (i.e. user has repaid debt in full). If the conditions are not met,/// the function reverts.function disableController() external;/// @notice Checks the status of an account./// @dev This function must only deliberately revert if the account status is invalid. If this function reverts due/// to any other reason, it may render the account unusable with possibly no way to recover funds./// @param account The address of the account to be checked./// @param collaterals The array of enabled collateral addresses to be considered for the account status check./// @return magicValue Must return the bytes4 magic value 0xb168c58f (which is a selector of this function) when/// account status is valid, or revert otherwise.function checkAccountStatus(address account,
1234567891011121314151617181920212223242526{"remappings": ["openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/","ethereum-vault-connector/=lib/ethereum-vault-connector/src/","evc/=lib/ethereum-vault-connector/src/","evk/=lib/euler-vault-kit/src/","evk-test/=lib/euler-vault-kit/test/","euler-price-oracle/=lib/euler-price-oracle/src/","euler-price-oracle-test/=lib/euler-price-oracle/test/","fee-flow/=lib/fee-flow/src/","reward-streams/=lib/reward-streams/src/","@openzeppelin/contracts/utils/math/=lib/euler-price-oracle/lib/openzeppelin-contracts/contracts/utils/math/","@pyth/=lib/euler-price-oracle/lib/pyth-sdk-solidity/","@redstone/evm-connector/=lib/euler-price-oracle/lib/redstone-oracles-monorepo/packages/evm-connector/contracts/","@solady/=lib/euler-price-oracle/lib/solady/src/","@uniswap/v3-core/=lib/euler-price-oracle/lib/v3-core/","@uniswap/v3-periphery/=lib/euler-price-oracle/lib/v3-periphery/","ds-test/=lib/fee-flow/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","euler-vault-kit/=lib/euler-vault-kit/src/","forge-gas-snapshot/=lib/euler-vault-kit/lib/permit2/lib/forge-gas-snapshot/src/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin/=lib/ethereum-vault-connector/lib/openzeppelin-contracts/contracts/","permit2/=lib/euler-vault-kit/lib/permit2/","pyth-sdk-solidity/=lib/euler-price-oracle/lib/pyth-sdk-solidity/",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"E_AccountLiquidity","type":"error"},{"inputs":[],"name":"E_AmountTooLargeToEncode","type":"error"},{"inputs":[],"name":"E_BadAddress","type":"error"},{"inputs":[],"name":"E_BadAssetReceiver","type":"error"},{"inputs":[],"name":"E_BadBorrowCap","type":"error"},{"inputs":[],"name":"E_BadCollateral","type":"error"},{"inputs":[],"name":"E_BadFee","type":"error"},{"inputs":[],"name":"E_BadMaxLiquidationDiscount","type":"error"},{"inputs":[],"name":"E_BadSharesOwner","type":"error"},{"inputs":[],"name":"E_BadSharesReceiver","type":"error"},{"inputs":[],"name":"E_BadSupplyCap","type":"error"},{"inputs":[],"name":"E_BorrowCapExceeded","type":"error"},{"inputs":[],"name":"E_CheckUnauthorized","type":"error"},{"inputs":[],"name":"E_CollateralDisabled","type":"error"},{"inputs":[],"name":"E_ConfigAmountTooLargeToEncode","type":"error"},{"inputs":[],"name":"E_ControllerDisabled","type":"error"},{"inputs":[],"name":"E_DebtAmountTooLargeToEncode","type":"error"},{"inputs":[],"name":"E_EmptyError","type":"error"},{"inputs":[],"name":"E_ExcessiveRepayAmount","type":"error"},{"inputs":[],"name":"E_FlashLoanNotRepaid","type":"error"},{"inputs":[],"name":"E_Initialized","type":"error"},{"inputs":[],"name":"E_InsufficientAllowance","type":"error"},{"inputs":[],"name":"E_InsufficientAssets","type":"error"},{"inputs":[],"name":"E_InsufficientBalance","type":"error"},{"inputs":[],"name":"E_InsufficientCash","type":"error"},{"inputs":[],"name":"E_InsufficientDebt","type":"error"},{"inputs":[],"name":"E_InvalidLTVAsset","type":"error"},{"inputs":[],"name":"E_LTVBorrow","type":"error"},{"inputs":[],"name":"E_LTVLiquidation","type":"error"},{"inputs":[],"name":"E_LiquidationCoolOff","type":"error"},{"inputs":[],"name":"E_MinYield","type":"error"},{"inputs":[],"name":"E_NoLiability","type":"error"},{"inputs":[],"name":"E_NoPriceOracle","type":"error"},{"inputs":[],"name":"E_NotController","type":"error"},{"inputs":[],"name":"E_NotHookTarget","type":"error"},{"inputs":[],"name":"E_NotSupported","type":"error"},{"inputs":[],"name":"E_OperationDisabled","type":"error"},{"inputs":[],"name":"E_OutstandingDebt","type":"error"},{"inputs":[],"name":"E_ProxyMetadata","type":"error"},{"inputs":[],"name":"E_Reentrancy","type":"error"},{"inputs":[],"name":"E_RepayTooMuch","type":"error"},{"inputs":[],"name":"E_SelfLiquidation","type":"error"},{"inputs":[],"name":"E_SelfTransfer","type":"error"},{"inputs":[],"name":"E_SupplyCapExceeded","type":"error"},{"inputs":[],"name":"E_TransientState","type":"error"},{"inputs":[],"name":"E_Unauthorized","type":"error"},{"inputs":[],"name":"E_ViolatorLiquidityDeferred","type":"error"},{"inputs":[],"name":"E_ZeroAssets","type":"error"},{"inputs":[],"name":"E_ZeroShares","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"BalanceForwarderStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"protocolReceiver","type":"address"},{"indexed":true,"internalType":"address","name":"governorReceiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"protocolShares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"governorShares","type":"uint256"}],"name":"ConvertFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"DebtSocialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"address","name":"dToken","type":"address"}],"name":"EVaultCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"InterestAccrued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"liquidator","type":"address"},{"indexed":true,"internalType":"address","name":"violator","type":"address"},{"indexed":false,"internalType":"address","name":"collateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAssets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"yieldBalance","type":"uint256"}],"name":"Liquidate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"PullDebt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"}],"name":"Repay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalShares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accumulatedFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cash","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulator","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"VaultStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"asset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"emitTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
60a060405234801561000f575f80fd5b5033608052608051610a4861005d5f395f81816101b4015281816101ef015281816102f40152818161039c01528181610462015281816104f0015281816105c201526106370152610a485ff3fe608060405234801561000f575f80fd5b50600436106100cf575f3560e01c806338d52e0f1161007d578063985426ec11610058578063985426ec146101af578063a9059cbb146100f1578063dd62ed3e146101d6575f80fd5b806338d52e0f1461016757806370a082311461019457806395d89b41146101a7575f80fd5b806323b872dd116100ad57806323b872dd1461012a57806323de665114610138578063313ce5671461014d575f80fd5b806306fdde03146100d3578063095ea7b3146100f157806318160ddd14610114575b5f80fd5b6100db6101eb565b6040516100e89190610714565b60405180910390f35b6101046100ff366004610788565b6102be565b60405190151581526020016100e8565b61011c6102f1565b6040519081526020016100e8565b6101046100ff3660046107b2565b61014b6101463660046107b2565b610384565b005b61015561045f565b60405160ff90911681526020016100e8565b61016f6104ed565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e8565b61011c6101a23660046107f0565b61057b565b6100db610633565b61016f7f000000000000000000000000000000000000000000000000000000000000000081565b61011c6101e4366004610812565b5f92915050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166306fdde036040518163ffffffff1660e01b81526004015f60405180830381865afa158015610255573d5f803e3d5ffd5b505050506040513d5f823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261029a9190810190610876565b6040516020016102aa919061093c565b604051602081830303815290604052905090565b5f6040517ffea4851300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa15801561035b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f9190610980565b905090565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146103f3576040517f08e2ce1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161045291815260200190565b60405180910390a3505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f9190610997565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610557573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f91906109b7565b6040517fd283e75f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301525f917f00000000000000000000000000000000000000000000000000000000000000009091169063d283e75f90602401602060405180830381865afa158015610609573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062d9190610980565b92915050565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b81526004015f60405180830381865afa15801561069d573d5f803e3d5ffd5b505050506040513d5f823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526106e29190810190610876565b6040516020016102aa91906109d2565b5f5b8381101561070c5781810151838201526020016106f4565b50505f910152565b602081525f82518060208401526107328160408501602087016106f2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610785575f80fd5b50565b5f8060408385031215610799575f80fd5b82356107a481610764565b946020939093013593505050565b5f805f606084860312156107c4575f80fd5b83356107cf81610764565b925060208401356107df81610764565b929592945050506040919091013590565b5f60208284031215610800575f80fd5b813561080b81610764565b9392505050565b5f8060408385031215610823575f80fd5b823561082e81610764565b9150602083013561083e81610764565b809150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215610886575f80fd5b815167ffffffffffffffff8082111561089d575f80fd5b818401915084601f8301126108b0575f80fd5b8151818111156108c2576108c2610849565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561090857610908610849565b81604052828152876020848701011115610920575f80fd5b6109318360208301602088016106f2565b979650505050505050565b7f4465627420746f6b656e206f662000000000000000000000000000000000000081525f825161097381600e8501602087016106f2565b91909101600e0192915050565b5f60208284031215610990575f80fd5b5051919050565b5f602082840312156109a7575f80fd5b815160ff8116811461080b575f80fd5b5f602082840312156109c7575f80fd5b815161080b81610764565b5f82516109e38184602087016106f2565b7f2d4445425400000000000000000000000000000000000000000000000000000092019182525060050191905056fea2646970667358221220c85a76f73db847cfd7e277e2cc63f2f5174ed5c025ea1f151315a986b6e618a064736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cf575f3560e01c806338d52e0f1161007d578063985426ec11610058578063985426ec146101af578063a9059cbb146100f1578063dd62ed3e146101d6575f80fd5b806338d52e0f1461016757806370a082311461019457806395d89b41146101a7575f80fd5b806323b872dd116100ad57806323b872dd1461012a57806323de665114610138578063313ce5671461014d575f80fd5b806306fdde03146100d3578063095ea7b3146100f157806318160ddd14610114575b5f80fd5b6100db6101eb565b6040516100e89190610714565b60405180910390f35b6101046100ff366004610788565b6102be565b60405190151581526020016100e8565b61011c6102f1565b6040519081526020016100e8565b6101046100ff3660046107b2565b61014b6101463660046107b2565b610384565b005b61015561045f565b60405160ff90911681526020016100e8565b61016f6104ed565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e8565b61011c6101a23660046107f0565b61057b565b6100db610633565b61016f7f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf881565b61011c6101e4366004610812565b5f92915050565b60607f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf873ffffffffffffffffffffffffffffffffffffffff166306fdde036040518163ffffffff1660e01b81526004015f60405180830381865afa158015610255573d5f803e3d5ffd5b505050506040513d5f823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261029a9190810190610876565b6040516020016102aa919061093c565b604051602081830303815290604052905090565b5f6040517ffea4851300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f7f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf873ffffffffffffffffffffffffffffffffffffffff166347bd37186040518163ffffffff1660e01b8152600401602060405180830381865afa15801561035b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f9190610980565b905090565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf816146103f3576040517f08e2ce1700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161045291815260200190565b60405180910390a3505050565b5f7f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf873ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f9190610997565b5f7f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf873ffffffffffffffffffffffffffffffffffffffff166338d52e0f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610557573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061037f91906109b7565b6040517fd283e75f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301525f917f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf89091169063d283e75f90602401602060405180830381865afa158015610609573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062d9190610980565b92915050565b60607f000000000000000000000000b3b36220fa7d12f7055dab5c9fd18e860e9a6bf873ffffffffffffffffffffffffffffffffffffffff166395d89b416040518163ffffffff1660e01b81526004015f60405180830381865afa15801561069d573d5f803e3d5ffd5b505050506040513d5f823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526106e29190810190610876565b6040516020016102aa91906109d2565b5f5b8381101561070c5781810151838201526020016106f4565b50505f910152565b602081525f82518060208401526107328160408501602087016106f2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610785575f80fd5b50565b5f8060408385031215610799575f80fd5b82356107a481610764565b946020939093013593505050565b5f805f606084860312156107c4575f80fd5b83356107cf81610764565b925060208401356107df81610764565b929592945050506040919091013590565b5f60208284031215610800575f80fd5b813561080b81610764565b9392505050565b5f8060408385031215610823575f80fd5b823561082e81610764565b9150602083013561083e81610764565b809150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215610886575f80fd5b815167ffffffffffffffff8082111561089d575f80fd5b818401915084601f8301126108b0575f80fd5b8151818111156108c2576108c2610849565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561090857610908610849565b81604052828152876020848701011115610920575f80fd5b6109318360208301602088016106f2565b979650505050505050565b7f4465627420746f6b656e206f662000000000000000000000000000000000000081525f825161097381600e8501602087016106f2565b91909101600e0192915050565b5f60208284031215610990575f80fd5b5051919050565b5f602082840312156109a7575f80fd5b815160ff8116811461080b575f80fd5b5f602082840312156109c7575f80fd5b815161080b81610764565b5f82516109e38184602087016106f2565b7f2d4445425400000000000000000000000000000000000000000000000000000092019182525060050191905056fea2646970667358221220c85a76f73db847cfd7e277e2cc63f2f5174ed5c025ea1f151315a986b6e618a064736f6c63430008180033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.