Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 103 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 16849475 | 972 days ago | IN | 0 ETH | 0.00207121 | ||||
| Redeem | 16849453 | 972 days ago | IN | 0 ETH | 0.00907233 | ||||
| Redeem Underlyin... | 16849435 | 972 days ago | IN | 0 ETH | 0.01061838 | ||||
| Redeem Underlyin... | 16849384 | 972 days ago | IN | 0 ETH | 0.0072604 | ||||
| Approve | 16849370 | 972 days ago | IN | 0 ETH | 0.00170296 | ||||
| Redeem Underlyin... | 16849327 | 972 days ago | IN | 0 ETH | 0.0079598 | ||||
| Redeem Underlyin... | 14473224 | 1327 days ago | IN | 0 ETH | 0.01057411 | ||||
| Redeem Underlyin... | 14472658 | 1327 days ago | IN | 0 ETH | 0.02370635 | ||||
| Redeem Underlyin... | 14441738 | 1331 days ago | IN | 0 ETH | 0.01576112 | ||||
| Redeem Underlyin... | 14441728 | 1331 days ago | IN | 0 ETH | 0.01207276 | ||||
| Redeem Underlyin... | 14376340 | 1342 days ago | IN | 0 ETH | 0.00556357 | ||||
| Redeem Underlyin... | 14376324 | 1342 days ago | IN | 0 ETH | 0.0064598 | ||||
| Redeem Underlyin... | 14376322 | 1342 days ago | IN | 0 ETH | 0.00576973 | ||||
| Redeem Underlyin... | 14376321 | 1342 days ago | IN | 0 ETH | 0.00582432 | ||||
| Redeem Underlyin... | 14353735 | 1345 days ago | IN | 0 ETH | 0.02213465 | ||||
| Redeem Underlyin... | 14353728 | 1345 days ago | IN | 0 ETH | 0.01865246 | ||||
| Redeem Underlyin... | 14353706 | 1345 days ago | IN | 0 ETH | 0.01964304 | ||||
| Mint | 14353703 | 1345 days ago | IN | 0 ETH | 0.00763868 | ||||
| Repay Borrow | 14341586 | 1347 days ago | IN | 0 ETH | 0.0062391 | ||||
| Borrow | 14341524 | 1347 days ago | IN | 0 ETH | 0.02463634 | ||||
| Mint | 14275582 | 1357 days ago | IN | 0 ETH | 0.01062876 | ||||
| Redeem Underlyin... | 14253877 | 1361 days ago | IN | 0 ETH | 0.03539301 | ||||
| Redeem Underlyin... | 14253770 | 1361 days ago | IN | 0 ETH | 0.0337283 | ||||
| Repay Borrow | 14193053 | 1370 days ago | IN | 0 ETH | 0.0074916 | ||||
| Borrow | 14192996 | 1370 days ago | IN | 0 ETH | 0.02386189 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 13380795 | 1497 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xa67f0C06...F0a03a048 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
CErc20Delegator
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity Multiple files format)
12345678910111213141516pragma solidity ^0.5.16;import "./CTokenInterfaces.sol";import "./ComptrollerStorage.sol";/*** @title Compound's CErc20Delegator Contract* @notice CTokens which wrap an EIP-20 underlying and delegate to an implementation* @author Compound*/contract CErc20Delegator is CDelegationStorage {/*** @notice Construct a new money market* @param underlying_ The address of the underlying asset* @param comptroller_ The address of the Comptroller* @param interestRateModel_ The address of the interest rate model
12345678910111213141516pragma solidity ^0.5.16;/*** @title Careful Math* @author Compound* @notice Derived from OpenZeppelin's SafeMath library* https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol*/contract CarefulMath {/*** @dev Possible error codes that we can return*/enum MathError {NO_ERROR,DIVISION_BY_ZERO,
123456789101112131415pragma solidity ^0.5.16;import "./CToken.sol";interface CompLike {function delegate(address delegatee) external;}/*** @title Compound's CErc20 Contract* @notice CTokens which wrap an EIP-20 underlying* @dev This contract should not to be deployed on its own; instead, deploy `CErc20Delegator` (proxy contract) and `CErc20Delegate` (logic/implementation contract).* @author Compound*/contract CErc20 is CToken, CErc20Interface {
12345678910111213141516pragma solidity ^0.5.16;import "./CErc20.sol";/*** @title Compound's CErc20Delegate Contract* @notice CTokens which wrap an EIP-20 underlying and are delegated to* @author Compound*/contract CErc20Delegate is CDelegateInterface, CErc20 {/*** @notice Construct an empty delegate*/constructor() public {}/**
123456789101112131415pragma solidity ^0.5.16;import "./CToken.sol";/*** @title Compound's CEther Contract* @notice CToken which wraps Ether* @dev This contract should not to be deployed on its own; instead, deploy `CEtherDelegator` (proxy contract) and `CEtherDelegate` (logic/implementation contract).* @author Compound*/contract CEther is CToken, CEtherInterface {/*** @notice Initialize the new money market* @param comptroller_ The address of the Comptroller* @param interestRateModel_ The address of the interest rate model
12345678910111213141516pragma solidity ^0.5.16;import "./CEther.sol";/*** @title Compound's CEtherDelegate Contract* @notice CTokens which wrap Ether and are delegated to* @author Compound*/contract CEtherDelegate is CDelegateInterface, CEther {/*** @notice Construct an empty delegate*/constructor() public {}/**
12345678910111213141516pragma solidity ^0.5.16;import "./CTokenInterfaces.sol";import "./ComptrollerStorage.sol";/*** @title Compound's CEtherDelegator Contract* @notice CTokens which wrap Ether and delegate to an implementation* @author Compound*/contract CEtherDelegator is CDelegationStorage {/*** @notice Construct a new CEther money market* @param comptroller_ The address of the Comptroller* @param interestRateModel_ The address of the interest rate model* @param name_ ERC-20 name of this token
12345678910111213141516pragma solidity ^0.5.16;import "./CToken.sol";import "./CErc20.sol";import "./ErrorReporter.sol";import "./Exponential.sol";import "./PriceOracle.sol";import "./ComptrollerInterface.sol";import "./ComptrollerStorage.sol";import "./Unitroller.sol";import "./RewardsDistributorDelegate.sol";/*** @title Compound's Comptroller Contract* @author Compound* @dev This contract should not to be deployed alone; instead, deploy `Unitroller` (proxy contract) on top of this `Comptroller` (logic/implementation contract).
12345678910111213141516pragma solidity ^0.5.16;contract ComptrollerInterface {/// @notice Indicator that this is a Comptroller contract (for inspection)bool public constant isComptroller = true;/*** Assets You Are In ***/function enterMarkets(address[] calldata cTokens) external returns (uint[] memory);function exitMarket(address cToken) external returns (uint);/*** Policy Hooks ***/function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint);function mintWithinLimits(address cToken, uint exchangeRateMantissa, uint accountTokens, uint mintAmount) external returns (uint);function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external;
12345678910111213141516pragma solidity ^0.5.16;import "./IFuseFeeDistributor.sol";import "./CToken.sol";import "./PriceOracle.sol";contract UnitrollerAdminStorage {/*** @notice Administrator for Fuse*/IFuseFeeDistributor internal constant fuseAdmin = IFuseFeeDistributor(0xa731585ab05fC9f83555cf9Bff8F58ee94e18F85);/*** @notice Administrator for this contract*/address public admin;
12345678910111213141516pragma solidity ^0.5.16;import "./ComptrollerInterface.sol";import "./CTokenInterfaces.sol";import "./ErrorReporter.sol";import "./Exponential.sol";import "./EIP20Interface.sol";import "./EIP20NonStandardInterface.sol";import "./InterestRateModel.sol";/*** @title Compound's CToken Contract* @notice Abstract base for CTokens* @author Compound*/contract CToken is CTokenInterface, Exponential, TokenErrorReporter {
12345678910111213141516pragma solidity ^0.5.16;import "./IFuseFeeDistributor.sol";import "./ComptrollerStorage.sol";import "./ComptrollerInterface.sol";import "./InterestRateModel.sol";contract CTokenAdminStorage {/*** @notice Administrator for Fuse*/IFuseFeeDistributor internal constant fuseAdmin = IFuseFeeDistributor(0xa731585ab05fC9f83555cf9Bff8F58ee94e18F85);/*** @dev LEGACY USE ONLY: Administrator for this contract*/
12345678910111213141516pragma solidity ^0.5.16;import "./JumpRateModel.sol";import "./SafeMath.sol";/*** @title Compound's DAIInterestRateModel Contract (version 2)* @author Compound (modified by Dharma Labs)* @notice The parameterized model described in section 2.4 of the original Compound Protocol whitepaper.* Version 2 modifies the original interest rate model by increasing the "gap" or slope of the model prior* to the "kink" from 0.05% to 2% with the goal of "smoothing out" interest rate changes as the utilization* rate increases.*/contract DAIInterestRateModelV2 is JumpRateModel {using SafeMath for uint;
12345678910111213141516pragma solidity ^0.5.16;/*** @title ERC 20 Token Standard Interface* https://eips.ethereum.org/EIPS/eip-20*/interface EIP20Interface {function name() external view returns (string memory);function symbol() external view returns (string memory);function decimals() external view returns (uint8);/*** @notice Get the total number of tokens in circulation* @return The supply of tokens*/function totalSupply() external view returns (uint256);
12345678910111213141516pragma solidity ^0.5.16;/*** @title EIP20NonStandardInterface* @dev Version of ERC20 with no return values for `transfer` and `transferFrom`* See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca*/interface EIP20NonStandardInterface {/*** @notice Get the total number of tokens in circulation* @return The supply of tokens*/function totalSupply() external view returns (uint256);/**
12345678910111213141516pragma solidity ^0.5.16;contract ComptrollerErrorReporter {enum Error {NO_ERROR,UNAUTHORIZED,COMPTROLLER_MISMATCH,INSUFFICIENT_SHORTFALL,INSUFFICIENT_LIQUIDITY,INVALID_CLOSE_FACTOR,INVALID_COLLATERAL_FACTOR,INVALID_LIQUIDATION_INCENTIVE,MARKET_NOT_ENTERED, // no longer possibleMARKET_NOT_LISTED,MARKET_ALREADY_LISTED,MATH_ERROR,
12345678910111213141516pragma solidity ^0.5.16;import "./CarefulMath.sol";import "./ExponentialNoError.sol";/*** @title Exponential module for storing fixed-precision decimals* @author Compound* @dev Legacy contract for compatibility reasons with existing contracts that still use MathError* @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.* Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:* `Exp({mantissa: 5100000000000000000})`.*/contract Exponential is CarefulMath, ExponentialNoError {/*** @dev Creates an exponential from numerator and denominator values.
12345678910111213141516pragma solidity ^0.5.16;/*** @title Exponential module for storing fixed-precision decimals* @author Compound* @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places.* Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is:* `Exp({mantissa: 5100000000000000000})`.*/contract ExponentialNoError {uint constant expScale = 1e18;uint constant doubleScale = 1e36;uint constant halfExpScale = expScale/2;uint constant mantissaOne = expScale;struct Exp {
1234567891011121314pragma solidity ^0.5.16;interface IFuseFeeDistributor {function minBorrowEth() external view returns (uint256);function maxSupplyEth() external view returns (uint256);function maxUtilizationRate() external view returns (uint256);function interestFeeRate() external view returns (uint256);function comptrollerImplementationWhitelist(address oldImplementation, address newImplementation) external view returns (bool);function cErc20DelegateWhitelist(address oldImplementation, address newImplementation, bool allowResign) external view returns (bool);function cEtherDelegateWhitelist(address oldImplementation, address newImplementation, bool allowResign) external view returns (bool);function latestComptrollerImplementation(address oldImplementation) external view returns (address);function latestCErc20Delegate(address oldImplementation) external view returns (address cErc20Delegate, bool allowResign, bytes memorybecomeImplementationData);function latestCEtherDelegate(address oldImplementation) external view returns (address cEtherDelegate, bool allowResign, bytes memorybecomeImplementationData);function deployCEther(bytes calldata constructorData) external returns (address);
12345678910111213141516pragma solidity ^0.5.16;/*** @title Compound's InterestRateModel Interface* @author Compound*/contract InterestRateModel {/// @notice Indicator that this is an InterestRateModel contract (for inspection)bool public constant isInterestRateModel = true;/*** @notice Calculates the current borrow interest rate per block* @param cash The total amount of cash the market has* @param borrows The total amount of borrows the market has outstanding* @param reserves The total amount of reserves the market has* @return The borrow rate per block (as a percentage, and scaled by 1e18)
12345678910111213141516pragma solidity ^0.5.16;import "./InterestRateModel.sol";import "./SafeMath.sol";/*** @title Compound's JumpRateModel Contract* @author Compound*/contract JumpRateModel is InterestRateModel {using SafeMath for uint;event NewInterestParams(uint baseRatePerBlock, uint multiplierPerBlock, uint jumpMultiplierPerBlock, uint kink);/*** @notice The approximate number of blocks per year that is assumed by the interest rate model
12345678910111213141516pragma solidity ^0.5.16;import "./CToken.sol";contract PriceOracle {/// @notice Indicator that this is a PriceOracle contract (for inspection)bool public constant isPriceOracle = true;/*** @notice Get the underlying price of a cToken asset* @param cToken The cToken to get the underlying price of* @return The underlying asset price mantissa (scaled by 1e18).* Zero means the price is unavailable.*/function getUnderlyingPrice(CToken cToken) external view returns (uint);}
12345678910111213141516pragma solidity ^0.5.16;/*** @title Reservoir Contract* @notice Distributes a token to a different contract at a fixed rate.* @dev This contract must be poked via the `drip()` function every so often.* @author Compound*/contract Reservoir {/// @notice The block number when the Reservoir started (immutable)uint public dripStart;/// @notice Tokens per block that to drip to target (immutable)uint public dripRate;
12345678910111213141516pragma solidity ^0.5.16;import "./CToken.sol";import "./ExponentialNoError.sol";import "./Comptroller.sol";import "./RewardsDistributorStorage.sol";/*** @title RewardsDistributorDelegate (COMP distribution logic extracted from `Comptroller`)* @author Compound*/contract RewardsDistributorDelegate is RewardsDistributorDelegateStorageV1, ExponentialNoError {/// @dev Notice that this contract is a RewardsDistributorbool public constant isRewardsDistributor = true;/// @notice Emitted when pendingAdmin is changed
12345678910111213141516pragma solidity ^0.5.16;import "./RewardsDistributorStorage.sol";contract RewardsDistributorDelegator is RewardsDistributorDelegatorStorage {/// @notice Emitted when implementation is changedevent NewImplementation(address oldImplementation, address newImplementation);constructor(address admin_,address rewardToken_,address implementation_) public {// Admin set to msg.sender for initializationadmin = msg.sender;
12345678910111213141516pragma solidity ^0.5.16;import "./CToken.sol";contract RewardsDistributorDelegatorStorage {/// @notice Administrator for this contractaddress public admin;/// @notice Pending administrator for this contractaddress public pendingAdmin;/// @notice Active brains of RewardsDistributoraddress public implementation;}/**
12345678910111213141516pragma solidity ^0.5.16;// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol// Subject to the MIT license./*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire
12345678910111213141516pragma solidity ^0.5.16;import "./ErrorReporter.sol";import "./ComptrollerStorage.sol";/*** @title Unitroller* @dev Storage for the comptroller is at this address, while execution is delegated to the `comptrollerImplementation`.* CTokens should reference this contract as their comptroller.*/contract Unitroller is UnitrollerAdminStorage, ComptrollerErrorReporter {/*** @notice Emitted when pendingComptrollerImplementation is changed*/event NewPendingImplementation(address oldPendingImplementation, address newPendingImplementation);
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"},{"internalType":"uint256","name":"reserveFactorMantissa_","type":"uint256"},{"internalType":"uint256","name":"adminFeeMantissa_","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]Contract Creation Code
0x608060405234801561001057600080fd5b506040516107f53803806107f5833981810160405261012081101561003457600080fd5b81516020830151604080850151606086018051925194969395919493918201928464010000000082111561006757600080fd5b90830190602082018581111561007c57600080fd5b825164010000000081118282018810171561009657600080fd5b82525081516020918201929091019080838360005b838110156100c35781810151838201526020016100ab565b50505050905090810190601f1680156100f05780820380516001836020036101000a031916815260200191505b506040526020018051604051939291908464010000000082111561011357600080fd5b90830190602082018581111561012857600080fd5b825164010000000081118282018810171561014257600080fd5b82525081516020918201929091019080838360005b8381101561016f578181015183820152602001610157565b50505050905090810190601f16801561019c5780820380516001836020036101000a031916815260200191505b506040818152602083015192018051929491939192846401000000008211156101c457600080fd5b9083019060208201858111156101d957600080fd5b82516401000000008111828201881017156101f357600080fd5b82525081516020918201929091019080838360005b83811015610220578181015183820152602001610208565b50505050905090810190601f16801561024d5780820380516001836020036101000a031916815260200191505b50604081815260208381015193909101516001600160a01b03808e1660248501908152818e166044860152908c16606485015260c4840185905260e4840182905260e0608485019081528b516101048601528b519597509195506103b59489948f948f948f948f948f948d948d949260a4830192610124019189019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b50838103825286518152865160209182019188019080838360005b8381101561034757818101518382015260200161032f565b50505050905090810190601f1680156103745780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0390811663a0b0d28960e01b17909152909a506104981698505050505050505050565b50610489848560008660405160240180846001600160a01b03166001600160a01b031681526020018315151515815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610420578181015183820152602001610408565b50505050905090810190601f16801561044d5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b039081166350d85b7360e01b17909152909550610498169350505050565b5050505050505050505061055a565b606060006060846001600160a01b0316846040518082805190602001908083835b602083106104d85780518252601f1990920191602091820191016104b9565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610538576040519150601f19603f3d011682016040523d82523d6000602084013e61053d565b606091505b50915091506000821415610552573d60208201fd5b949350505050565b61028c806105696000396000f3fe60806040526004361061001e5760003560e01c80635c60da1b1461011e575b341561005b5760405162461bcd60e51b81526004018080602001828103825260378152602001806102216037913960400191505060405180910390fd5b6000546040805160048152602481019091526020810180516001600160e01b031663076de25160e21b17905261009a916001600160a01b03169061014f565b50600080546040516001600160a01b0390911690829036908083838082843760405192019450600093509091505080830381855af49150503d80600081146100fe576040519150601f19603f3d011682016040523d82523d6000602084013e610103565b606091505b505090506040513d6000823e81801561011a573d82f35b3d82fd5b34801561012a57600080fd5b50610133610211565b604080516001600160a01b039092168252519081900360200190f35b606060006060846001600160a01b0316846040518082805190602001908083835b6020831061018f5780518252601f199092019160209182019101610170565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146101ef576040519150601f19603f3d011682016040523d82523d6000602084013e6101f4565b606091505b50915091506000821415610209573d60208201fd5b949350505050565b6000546001600160a01b03168156fe43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636ba265627a7a7231582005c7822f7294a2303680b0d2b051bee472cd65b928fd92bacf345e29e5b26c9f64736f6c634300051100320000000000000000000000006123b0049f904d730db3c36a31167d9d4121fa6b0000000000000000000000002a6b72539c020f751e45e235606667c53c105aaf000000000000000000000000b579d2761470bba14018959d6dffcc681c09c04b0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000067db14e73c2dce786b5bbbfa4d010deab4bbfcf900000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001b7374617465277320706f6f6c20526962626f6e2046696e616e6365000000000000000000000000000000000000000000000000000000000000000000000000076652424e2d33340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061001e5760003560e01c80635c60da1b1461011e575b341561005b5760405162461bcd60e51b81526004018080602001828103825260378152602001806102216037913960400191505060405180910390fd5b6000546040805160048152602481019091526020810180516001600160e01b031663076de25160e21b17905261009a916001600160a01b03169061014f565b50600080546040516001600160a01b0390911690829036908083838082843760405192019450600093509091505080830381855af49150503d80600081146100fe576040519150601f19603f3d011682016040523d82523d6000602084013e610103565b606091505b505090506040513d6000823e81801561011a573d82f35b3d82fd5b34801561012a57600080fd5b50610133610211565b604080516001600160a01b039092168252519081900360200190f35b606060006060846001600160a01b0316846040518082805190602001908083835b6020831061018f5780518252601f199092019160209182019101610170565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146101ef576040519150601f19603f3d011682016040523d82523d6000602084013e6101f4565b606091505b50915091506000821415610209573d60208201fd5b949350505050565b6000546001600160a01b03168156fe43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636ba265627a7a7231582005c7822f7294a2303680b0d2b051bee472cd65b928fd92bacf345e29e5b26c9f64736f6c63430005110032
Deployed Bytecode Sourcemap
254:3556:2:-;;;;;;;;;;;;;;;;;;3189:9;:14;3181:82;;;;-1:-1:-1;;;3181:82:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3331:14;;3347:37;;;22:32:-1;6:49;;3347:37:2;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3320:65:2;;-1:-1:-1;;;;;3331:14:2;;3320:10;:65::i;:::-;-1:-1:-1;3463:12:2;3481:14;;:37;;-1:-1:-1;;;;;3481:14:2;;;;3463:12;;3509:8;;3481:37;3463:12;3509:8;;3463:12;3481:37;1:33:-1;3481:37:2;;45:16:-1;;;-1:-1;3481:37:2;;-1:-1:-1;3481:37:2;;-1:-1:-1;;3481:37:2;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;3462:56:2;;;3578:4;3572:11;3628:14;3625:1;3611:12;3596:47;3664:7;3684:47;;;;3775:14;3761:12;3754:36;3684:47;3714:14;3700:12;3693:36;9774:29:7;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9774:29:7;;;:::i;:::-;;;;-1:-1:-1;;;;;9774:29:7;;;;;;;;;;;;;;2570:335:2;2643:12;2668;2682:23;2709:6;-1:-1:-1;;;;;2709:19:2;2729:4;2709:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;2709:25:2;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;2667:67:2;;;;2782:1;2773:7;2770:14;2767:2;;;2833:14;2826:4;2814:10;2810:21;2803:45;2767:2;2888:10;2570:335;-1:-1:-1;;;;2570:335:2:o;9774:29:7:-;;;-1:-1:-1;;;;;9774:29:7;;:::o
Swarm Source
bzzr://05c7822f7294a2303680b0d2b051bee472cd65b928fd92bacf345e29e5b26c9f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Showing 1 tokens with a value of $188
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.