Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Address As P... | 4244208 | 51 days ago | IN | 0 S | 0.0549636 | ||||
Set Pool Configu... | 4244180 | 51 days ago | IN | 0 S | 0.0596011 | ||||
Set Pool Impl | 4244176 | 51 days ago | IN | 0 S | 0.0570836 | ||||
Set Price Oracle | 4244173 | 51 days ago | IN | 0 S | 0.0048142 | ||||
Set ACL Manager | 4244146 | 51 days ago | IN | 0 S | 0.0048163 | ||||
Set ACL Admin | 4244137 | 51 days ago | IN | 0 S | 0.004812 | ||||
Set Pool Data Pr... | 4243080 | 51 days ago | IN | 0 S | 0.0048163 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x24835e3D...677fa1b54 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PoolAddressesProvider
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: BUSL-1.1pragma solidity ^0.8.10;import {Ownable} from "Ownable.sol";import {IPoolAddressesProvider} from "IPoolAddressesProvider.sol";import {InitializableImmutableAdminUpgradeabilityProxy} from "InitializableImmutableAdminUpgradeabilityProxy.sol";/*** @title PoolAddressesProvider* @author Aave* @notice Main registry of addresses part of or connected to the protocol, including permissioned roles* @dev Acts as factory of proxies and admin of those, so with right to change its implementations* @dev Owned by the Aave Governance*/contract PoolAddressesProvider is Ownable, IPoolAddressesProvider {// Identifier of the Aave Marketstring private _marketId;// Map of registered addresses (identifier => registeredAddress)mapping(bytes32 => address) private _addresses;// Main identifiersbytes32 private constant POOL = 'POOL';bytes32 private constant POOL_CONFIGURATOR = 'POOL_CONFIGURATOR';bytes32 private constant PRICE_ORACLE = 'PRICE_ORACLE';bytes32 private constant ACL_MANAGER = 'ACL_MANAGER';
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "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.** By default, the owner account will be the one that deploys the contract. 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.*/contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/
1234567891011121314151617181920212223// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/** @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 GSN 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 payable) {return payable(msg.sender);}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;/*** @title IPoolAddressesProvider* @author Aave* @notice Defines the basic interface for a Pool Addresses Provider.*/interface IPoolAddressesProvider {/*** @dev Emitted when the market identifier is updated.* @param oldMarketId The old id of the market* @param newMarketId The new id of the market*/event MarketIdSet(string indexed oldMarketId, string indexed newMarketId);/*** @dev Emitted when the pool is updated.* @param oldAddress The old address of the Pool* @param newAddress The new address of the Pool*/event PoolUpdated(address indexed oldAddress, address indexed newAddress);/*** @dev Emitted when the pool configurator is updated.* @param oldAddress The old address of the PoolConfigurator
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import {InitializableUpgradeabilityProxy} from "InitializableUpgradeabilityProxy.sol";import {Proxy} from "Proxy.sol";import {BaseImmutableAdminUpgradeabilityProxy} from "BaseImmutableAdminUpgradeabilityProxy.sol";/*** @title InitializableAdminUpgradeabilityProxy* @author Aave* @dev Extends BaseAdminUpgradeabilityProxy with an initializer function*/contract InitializableImmutableAdminUpgradeabilityProxy isBaseImmutableAdminUpgradeabilityProxy,InitializableUpgradeabilityProxy{/*** @dev Constructor.* @param admin The address of the admin*/constructor(address admin) BaseImmutableAdminUpgradeabilityProxy(admin) {// Intentionally left blank}/// @inheritdoc BaseImmutableAdminUpgradeabilityProxyfunction _willFallback() internal override(BaseImmutableAdminUpgradeabilityProxy, Proxy) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import "BaseUpgradeabilityProxy.sol";/*** @title InitializableUpgradeabilityProxy* @dev Extends BaseUpgradeabilityProxy with an initializer for initializing* implementation and init data.*/contract InitializableUpgradeabilityProxy is BaseUpgradeabilityProxy {/*** @dev Contract initializer.* @param _logic Address of the initial implementation.* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.* It should include the signature and the parameters of the function to be called, as described in* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.* This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.*/function initialize(address _logic, bytes memory _data) public payable {require(_implementation() == address(0));assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));_setImplementation(_logic);if (_data.length > 0) {(bool success, ) = _logic.delegatecall(_data);require(success);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import "Proxy.sol";import "Address.sol";/*** @title BaseUpgradeabilityProxy* @dev This contract implements a proxy that allows to change the* implementation address to which it will delegate.* Such a change is called an implementation upgrade.*/contract BaseUpgradeabilityProxy is Proxy {/*** @dev Emitted when the implementation is upgraded.* @param implementation Address of the new implementation.*/event Upgraded(address indexed implementation);/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is* validated in the constructor.*/bytes32 internal constant IMPLEMENTATION_SLOT =0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;/*** @title Proxy* @dev Implements delegation of calls to other contracts, with proper* forwarding of return values and bubbling of failures.* It defines a fallback function that delegates all calls to the address* returned by the abstract _implementation() internal function.*/abstract contract Proxy {/*** @dev Fallback function.* Will run if no other function in the contract matches the call data.* Implemented entirely in `_fallback`.*/fallback() external payable {_fallback();}/*** @return The Address of the implementation.*/function _implementation() internal view virtual returns (address);/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)pragma solidity ^0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0pragma solidity ^0.8.0;import {BaseUpgradeabilityProxy} from "BaseUpgradeabilityProxy.sol";/*** @title BaseImmutableAdminUpgradeabilityProxy* @author Aave, inspired by the OpenZeppelin upgradeability proxy pattern* @notice This contract combines an upgradeability proxy with an authorization* mechanism for administrative tasks.* @dev The admin role is stored in an immutable, which helps saving transactions costs* All external functions in this contract must be guarded by the* `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity* feature proposal that would enable this to be done automatically.*/contract BaseImmutableAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {address internal immutable _admin;/*** @dev Constructor.* @param admin The address of the admin*/constructor(address admin) {_admin = admin;}
12345678910111213141516171819202122{"evmVersion": "istanbul","optimizer": {"enabled": true,"runs": 999},"libraries": {"PoolAddressesProvider.sol": {}},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"marketId","type":"string"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"ACLAdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"ACLManagerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"AddressSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"address","name":"proxyAddress","type":"address"},{"indexed":false,"internalType":"address","name":"oldImplementationAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementationAddress","type":"address"}],"name":"AddressSetAsProxy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"oldMarketId","type":"string"},{"indexed":true,"internalType":"string","name":"newMarketId","type":"string"}],"name":"MarketIdSet","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":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PoolConfiguratorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PoolDataProviderUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PoolUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PriceOracleSentinelUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"PriceOracleUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"address","name":"proxyAddress","type":"address"},{"indexed":true,"internalType":"address","name":"implementationAddress","type":"address"}],"name":"ProxyCreated","type":"event"},{"inputs":[],"name":"getACLAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getACLManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMarketId","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPoolConfigurator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPoolDataProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceOracleSentinel","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAclAdmin","type":"address"}],"name":"setACLAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAclManager","type":"address"}],"name":"setACLManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"newAddress","type":"address"}],"name":"setAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"newImplementationAddress","type":"address"}],"name":"setAddressAsProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newMarketId","type":"string"}],"name":"setMarketId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPoolConfiguratorImpl","type":"address"}],"name":"setPoolConfiguratorImpl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDataProvider","type":"address"}],"name":"setPoolDataProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPoolImpl","type":"address"}],"name":"setPoolImpl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPriceOracle","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPriceOracleSentinel","type":"address"}],"name":"setPriceOracleSentinel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101825760003560e01c806376d84ffc116100d8578063e4ca28b71161008c578063f2fde38b11610066578063f2fde38b1461045f578063f67b184714610472578063fca513a81461048557600080fd5b8063e4ca28b7146103f0578063e860accb14610403578063ed301ca91461044c57600080fd5b8063a1564406116100bd578063a1564406146103b7578063ca446dd9146103ca578063e44e9ed1146103dd57600080fd5b806376d84ffc146103935780638da5cb5b146103a657600080fd5b80635dcc528c1161013a578063707cd71611610114578063707cd71614610331578063715018a61461037857806374944cec1461038057600080fd5b80635dcc528c146102785780635eb88d3d1461028b578063631adfca146102e457600080fd5b806321f8a7211161016b57806321f8a72114610225578063530e784f1461024e578063568ef4701461026357600080fd5b8063026b1d5f146101875780630e67178c146101e0575b600080fd5b631413d3d360e21b60005260026020527f4fe005067814bb4b024d9515847377d15011b64593c006223b4a722952d2c05a546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b6820a1a62fa0a226a4a760b91b60005260026020527ffab167ad2009dcb80ee379700bb4bd029d97c1181ed9d961625632c8a6f051c6546001600160a01b03166101c3565b6101c36102333660046112e2565b6000908152600260205260409020546001600160a01b031690565b61026161025c366004611310565b6104cd565b005b61026b6105a2565b6040516101d79190611390565b6102616102863660046113a3565b610634565b7f50524943455f4f5241434c455f53454e54494e454c000000000000000000000060005260026020527f0d2c1bcee56447b4f46248272f34207a580a5c40f666a31f4e2fbb470ea53ab8546001600160a01b03166101c3565b702827a7a62fa1a7a72324a3aaa920aa27a960791b60005260026020527f90c127ef1c12c03f5781afeca3079527ea5333738078bba6fea26825bf9bf2c5546001600160a01b03166101c3565b6a20a1a62fa6a0a720a3a2a960a91b60005260026020527f9edef266ef35fd0c6e131df0f31a330f3dd4c4d19dd31ed615c21d005c68116b546001600160a01b03166101c3565b6102616106f7565b61026161038e366004611310565b610789565b6102616103a1366004611310565b61086a565b6000546001600160a01b03166101c3565b6102616103c5366004611310565b610937565b6102616103d83660046113a3565b6109e8565b6102616103eb366004611310565b610a8e565b6102616103fe366004611310565b610b5f565b6c2220aa20afa82927ab24a222a960991b60005260026020527fcd7944601aaa5cd7ccdae1bebec659e98c6aac8f12486b30e59db0d39698051f546001600160a01b03166101c3565b61026161045a366004611310565b610c2a565b61026161046d366004611310565b610cf9565b6102616104803660046113e9565b610e18565b6b50524943455f4f5241434c4560a01b60005260026020527f740f710666bd7a12af42df98311e541e47f7fd33d382d11602457a6d540cbd63546001600160a01b03166101c3565b6000546001600160a01b0316331461051a5760405162461bcd60e51b81526020600482018190526024820152600080516020611dca83398151915260448201526064015b60405180910390fd5b6b50524943455f4f5241434c4560a01b600090815260026020527f740f710666bd7a12af42df98311e541e47f7fd33d382d11602457a6d540cbd6380546001600160a01b038481166001600160a01b03198316811790935560405191169283917f56b5f80d8cac1479698aa7d01605fd6111e90b15fc4d2b377417f46034876cbd9190a35050565b6060600180546105b19061149a565b80601f01602080910402602001604051908101604052809291908181526020018280546105dd9061149a565b801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b5050505050905090565b6000546001600160a01b0316331461067c5760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6000828152600260205260408120546001600160a01b03169061069e84610e6c565b90506106aa8484610f09565b6040516001600160a01b038281168252808516919084169086907f3bbd45b5429b385e3fb37ad5cd1cd1435a3c8ec32196c7937597365a3fd3e99c9060200160405180910390a450505050565b6000546001600160a01b0316331461073f5760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146107d15760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b7f50524943455f4f5241434c455f53454e54494e454c0000000000000000000000600090815260026020527f0d2c1bcee56447b4f46248272f34207a580a5c40f666a31f4e2fbb470ea53ab880546001600160a01b038481166001600160a01b03198316811790935560405191169283917f5326514eeca90494a14bedabcff812a0e683029ee85d1e23824d44fd14cd6ae79190a35050565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6820a1a62fa0a226a4a760b91b600090815260026020527ffab167ad2009dcb80ee379700bb4bd029d97c1181ed9d961625632c8a6f051c680546001600160a01b038481166001600160a01b03198316811790935560405191169283917fe9cf53972264dc95304fd424458745019ddfca0e37ae8f703d74772c41ad115b9190a35050565b6000546001600160a01b0316331461097f5760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6000610991631413d3d360e21b610e6c565b90506109a4631413d3d360e21b83610f09565b816001600160a01b0316816001600160a01b03167f90affc163f1a2dfedcd36aa02ed992eeeba8100a4014f0b4cdc20ea265a6662760405160405180910390a35050565b6000546001600160a01b03163314610a305760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b60008281526002602052604080822080546001600160a01b031981166001600160a01b038681169182179093559251911692839186917f9ef0e8c8e52743bb38b83b17d9429141d494b8041ca6d616a6c77cebae9cd8b791a4505050565b6000546001600160a01b03163314610ad65760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6c2220aa20afa82927ab24a222a960991b600090815260026020527fcd7944601aaa5cd7ccdae1bebec659e98c6aac8f12486b30e59db0d39698051f80546001600160a01b038481166001600160a01b03198316811790935560405191169283917fc853974cfbf81487a14a23565917bee63f527853bcb5fa54f2ae1cdf8a38356d9190a35050565b6000546001600160a01b03163314610ba75760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6000610bc6702827a7a62fa1a7a72324a3aaa920aa27a960791b610e6c565b9050610be6702827a7a62fa1a7a72324a3aaa920aa27a960791b83610f09565b816001600160a01b0316816001600160a01b03167f8932892569eba59c8382a089d9b732d1f49272878775235761a2a6b0309cd46560405160405180910390a35050565b6000546001600160a01b03163314610c725760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6a20a1a62fa6a0a720a3a2a960a91b600090815260026020527f9edef266ef35fd0c6e131df0f31a330f3dd4c4d19dd31ed615c21d005c68116b80546001600160a01b038481166001600160a01b03198316811790935560405191169283917fb30efa04327bb8a537d61cc1e5c48095345ad18ef7cc04e6bacf7dfb6caaf5079190a35050565b6000546001600160a01b03163314610d415760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b6001600160a01b038116610dbd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610511565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e605760405162461bcd60e51b81526020600482018190526024820152600080516020611dca8339815191526044820152606401610511565b610e698161113f565b50565b6000818152600260205260408120546001600160a01b031680610e925750600092915050565b6000819050806001600160a01b0316635c60da1b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610ed7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efb91906114cf565b949350505050565b50919050565b6000828152600260205260408082205490513060248201526001600160a01b039091169190819060440160408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fc4d66de80000000000000000000000000000000000000000000000000000000017905290506001600160a01b0383166110bb5730604051610fa89061123c565b6001600160a01b039091168152602001604051809103906000f080158015610fd4573d6000803e3d6000fd5b506000868152600260205260409081902080546001600160a01b0319166001600160a01b03841690811790915590517fd1f578940000000000000000000000000000000000000000000000000000000081529194508493509063d1f578949061104390879085906004016114ec565b600060405180830381600087803b15801561105d57600080fd5b505af1158015611071573d6000803e3d6000fd5b50505050836001600160a01b0316836001600160a01b0316867f4a465a9bd819d9662563c1e11ae958f8109e437e7f4bf1c6ef0b9a7b3f35d47860405160405180910390a4611138565b6040517f4f1ef2860000000000000000000000000000000000000000000000000000000081528392506001600160a01b03831690634f1ef2869061110590879085906004016114ec565b600060405180830381600087803b15801561111f57600080fd5b505af1158015611133573d6000803e3d6000fd5b505050505b5050505050565b60006001805461114e9061149a565b80601f016020809104026020016040519081016040528092919081815260200182805461117a9061149a565b80156111c75780601f1061119c576101008083540402835291602001916111c7565b820191906000526020600020905b8154815290600101906020018083116111aa57829003601f168201915b505085519394506111e393600193506020870192509050611249565b50816040516111f2919061150e565b604051809103902081604051611208919061150e565b604051908190038120907fe685c8cdecc6030c45030fd54778812cb84ed8e4467c38294403d68ba786082390600090a35050565b61089f8061152b83390190565b8280546112559061149a565b90600052602060002090601f01602090048101928261127757600085556112bd565b82601f1061129057805160ff19168380011785556112bd565b828001600101855582156112bd579182015b828111156112bd5782518255916020019190600101906112a2565b506112c99291506112cd565b5090565b5b808211156112c957600081556001016112ce565b6000602082840312156112f457600080fd5b5035919050565b6001600160a01b0381168114610e6957600080fd5b60006020828403121561132257600080fd5b813561132d816112fb565b9392505050565b60005b8381101561134f578181015183820152602001611337565b8381111561135e576000848401525b50505050565b6000815180845261137c816020860160208601611334565b601f01601f19169290920160200192915050565b60208152600061132d6020830184611364565b600080604083850312156113b657600080fd5b8235915060208301356113c8816112fb565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156113fb57600080fd5b813567ffffffffffffffff8082111561141357600080fd5b818401915084601f83011261142757600080fd5b813581811115611439576114396113d3565b604051601f8201601f19908116603f01168101908382118183101715611461576114616113d3565b8160405282815287602084870101111561147a57600080fd5b826020860160208301376000928101602001929092525095945050505050565b600181811c908216806114ae57607f821691505b60208210811415610f0357634e487b7160e01b600052602260045260246000fd5b6000602082840312156114e157600080fd5b815161132d816112fb565b6001600160a01b0383168152604060208201526000610efb6040830184611364565b60008251611520818460208701611334565b919091019291505056fe60a060405234801561001057600080fd5b5060405161089f38038061089f83398101604081905261002f91610040565b6001600160a01b0316608052610070565b60006020828403121561005257600080fd5b81516001600160a01b038116811461006957600080fd5b9392505050565b6080516107f16100ae600039600081816101350152818161017a01528181610233015281816103a9015281816103d2015261050801526107f16000f3fe60806040526004361061005a5760003560e01c80635c60da1b116100435780635c60da1b14610097578063d1f57894146100c8578063f851a440146100db5761005a565b80633659cfe6146100645780634f1ef28614610084575b6100626100f0565b005b34801561007057600080fd5b5061006261007f3660046105b8565b61012a565b6100626100923660046105da565b61016f565b3480156100a357600080fd5b506100ac610226565b6040516001600160a01b03909116815260200160405180910390f35b6100626100d6366004610673565b61028a565b3480156100e757600080fd5b506100ac61039c565b6100f86103f4565b6101286101237f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6103fc565b565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156101675761016481610420565b50565b6101646100f0565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610219576101a983610420565b6000836001600160a01b031683836040516101c5929190610735565b600060405180830381855af49150503d8060008114610200576040519150601f19603f3d011682016040523d82523d6000602084013e610205565b606091505b505090508061021357600080fd5b50505050565b6102216100f0565b505050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561027f57507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102876100f0565b90565b60006102b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146102c757600080fd5b6102f260017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd610745565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc146103205761032061076a565b61032982610460565b805115610398576000826001600160a01b03168260405161034a9190610780565b600060405180830381855af49150503d8060008114610385576040519150601f19603f3d011682016040523d82523d6000602084013e61038a565b606091505b505090508061022157600080fd5b5050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561027f57507f000000000000000000000000000000000000000000000000000000000000000090565b6101286104fd565b3660008037600080366000845af43d6000803e80801561041b573d6000f35b3d6000fd5b61042981610460565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6104d95760405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60448201527f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000060648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156101285760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260448201527f6f6d207468652070726f78792061646d696e000000000000000000000000000060648201526084016104d0565b80356001600160a01b03811681146105b357600080fd5b919050565b6000602082840312156105ca57600080fd5b6105d38261059c565b9392505050565b6000806000604084860312156105ef57600080fd5b6105f88461059c565b9250602084013567ffffffffffffffff8082111561061557600080fd5b818601915086601f83011261062957600080fd5b81358181111561063857600080fd5b87602082850101111561064a57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561068657600080fd5b61068f8361059c565b9150602083013567ffffffffffffffff808211156106ac57600080fd5b818501915085601f8301126106c057600080fd5b8135818111156106d2576106d261065d565b604051601f8201601f19908116603f011681019083821181831017156106fa576106fa61065d565b8160405282815288602084870101111561071357600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b8183823760009101908152919050565b60008282101561076557634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b6000825160005b818110156107a15760208186018101518583015201610787565b818111156107b0576000828501525b50919091019291505056fea264697066735822122061b4e265da271f7992f6f0a1a419700446369026f6dba11bca8125e55468b12b64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122092251851cf8b3f0d263e436bda71bfb0a0e6c36dd0f5d65a87fd74243c35411f64736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.