Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
7710156 | 403 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
LPToken
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.13; /** * @title DFMM Liquidity Token * @author Primitive * @dev This ERC20 token is built on top of Solmate implementation * ([see here](https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)). * This contract extends it by adding restricted `mint` / `burn` functions * and replaces the constructor by an `initialize` function as needed * by the clone factory pattern. */ contract LPToken { /*////////////////////////////////////////////////////////////// ERRORS //////////////////////////////////////////////////////////////*/ error NotDFMM(); error AlreadyInitialized(); /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval( address indexed owner, address indexed spender, uint256 amount ); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public constant decimals = 18; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal INITIAL_CHAIN_ID; bytes32 internal INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ address public dfmm; bool public initialized; modifier onlyDFMM() { if (msg.sender != dfmm) revert NotDFMM(); _; } modifier onlyNotInitialized() { if (initialized) revert AlreadyInitialized(); _; } function mint(address to, uint256 amount) external onlyDFMM { _mint(to, amount); } function burn(address from, uint256 amount) external onlyDFMM { _burn(from, amount); } function initialize( string memory name_, string memory symbol_ ) external onlyNotInitialized { dfmm = msg.sender; name = name_; symbol = symbol_; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); initialized = true; } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve( address spender, uint256 amount ) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer( address to, uint256 amount ) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) { allowance[from][msg.sender] = allowed - amount; } balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require( recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER" ); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
{ "remappings": [ "solstat/=lib/solstat/src/", "forge-std/=lib/solstat/lib/forge-std/src/", "solmate/=lib/solstat/lib/solmate/src/", "ds-test/=lib/solstat/lib/forge-std/lib/ds-test/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract ABI
API[{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"NotDFMM","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":"amount","type":"uint256"}],"name":"Approval","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dfmm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50610e99806100206000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80634cd88b76116100a25780639dc29fac116100715780639dc29fac14610221578063a9059cbb14610234578063afba13c414610247578063d505accf14610272578063dd62ed3e1461028557600080fd5b80634cd88b76146101c657806370a08231146101d95780637ecebe00146101f957806395d89b411461021957600080fd5b806323b872dd116100de57806323b872dd1461017c578063313ce5671461018f5780633644e515146101a957806340c10f19146101b157600080fd5b806306fdde0314610110578063095ea7b31461012e578063158ef93e1461015157806318160ddd14610165575b600080fd5b6101186102b0565b60405161012591906109a6565b60405180910390f35b61014161013c366004610a11565b61033e565b6040519015158152602001610125565b60085461014190600160a01b900460ff1681565b61016e60025481565b604051908152602001610125565b61014161018a366004610a3b565b6103ab565b610197601281565b60405160ff9091168152602001610125565b61016e61048b565b6101c46101bf366004610a11565b6104aa565b005b6101c46101d4366004610b1a565b6104e3565b61016e6101e7366004610b7e565b60036020526000908152604090205481565b61016e610207366004610b7e565b60076020526000908152604090205481565b61011861055f565b6101c461022f366004610a11565b61056c565b610141610242366004610a11565b6105a1565b60085461025a906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101c4610280366004610ba0565b610607565b61016e610293366004610c13565b600460209081526000928352604080842090915290825290205481565b600080546102bd90610c46565b80601f01602080910402602001604051908101604052809291908181526020018280546102e990610c46565b80156103365780601f1061030b57610100808354040283529160200191610336565b820191906000526020600020905b81548152906001019060200180831161031957829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103999086815260200190565b60405180910390a35060015b92915050565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610407576103e28382610c96565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b0385166000908152600360205260408120805485929061042f908490610c96565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610e44833981519152906104789087815260200190565b60405180910390a3506001949350505050565b600060055446146104a35761049e610850565b905090565b5060065490565b6008546001600160a01b031633146104d557604051636853cba760e01b815260040160405180910390fd5b6104df82826108ea565b5050565b600854600160a01b900460ff161561050d5760405162dc149f60e41b815260040160405180910390fd5b600880546001600160a01b03191633179055600061052b8382610cfa565b5060016105388282610cfa565b5046600555610545610850565b60065550506008805460ff60a01b1916600160a01b179055565b600180546102bd90610c46565b6008546001600160a01b0316331461059757604051636853cba760e01b815260040160405180910390fd5b6104df8282610944565b336000908152600360205260408120805483919083906105c2908490610c96565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610e44833981519152906103999086815260200190565b4284101561065c5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161066861048b565b6001600160a01b038a811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610774573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906107aa5750876001600160a01b0316816001600160a01b0316145b6107e75760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610653565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516108829190610dba565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600260008282546108fc9190610e30565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610e4483398151915291015b60405180910390a35050565b6001600160a01b0382166000908152600360205260408120805483929061096c908490610c96565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610e4483398151915290602001610938565b60006020808352835180602085015260005b818110156109d4578581018301518582016040015282016109b8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a0c57600080fd5b919050565b60008060408385031215610a2457600080fd5b610a2d836109f5565b946020939093013593505050565b600080600060608486031215610a5057600080fd5b610a59846109f5565b9250610a67602085016109f5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610a9e57600080fd5b813567ffffffffffffffff80821115610ab957610ab9610a77565b604051601f8301601f19908116603f01168101908282118183101715610ae157610ae1610a77565b81604052838152866020858801011115610afa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610b2d57600080fd5b823567ffffffffffffffff80821115610b4557600080fd5b610b5186838701610a8d565b93506020850135915080821115610b6757600080fd5b50610b7485828601610a8d565b9150509250929050565b600060208284031215610b9057600080fd5b610b99826109f5565b9392505050565b600080600080600080600060e0888a031215610bbb57600080fd5b610bc4886109f5565b9650610bd2602089016109f5565b95506040880135945060608801359350608088013560ff81168114610bf657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610c2657600080fd5b610c2f836109f5565b9150610c3d602084016109f5565b90509250929050565b600181811c90821680610c5a57607f821691505b602082108103610c7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103a5576103a5610c80565b601f821115610cf5576000816000526020600020601f850160051c81016020861015610cd25750805b601f850160051c820191505b81811015610cf157828155600101610cde565b5050505b505050565b815167ffffffffffffffff811115610d1457610d14610a77565b610d2881610d228454610c46565b84610ca9565b602080601f831160018114610d5d5760008415610d455750858301515b600019600386901b1c1916600185901b178555610cf1565b600085815260208120601f198616915b82811015610d8c57888601518255948401946001909101908401610d6d565b5085821015610daa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808354610dc881610c46565b60018281168015610de05760018114610df557610e24565b60ff1984168752821515830287019450610e24565b8760005260208060002060005b85811015610e1b5781548a820152908401908201610e02565b50505082870194505b50929695505050505050565b808201808211156103a5576103a5610c8056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a8329d629f80e0444e3e602c8757203bee096c89eae56a35e08852d38781dcc564736f6c63430008160033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80634cd88b76116100a25780639dc29fac116100715780639dc29fac14610221578063a9059cbb14610234578063afba13c414610247578063d505accf14610272578063dd62ed3e1461028557600080fd5b80634cd88b76146101c657806370a08231146101d95780637ecebe00146101f957806395d89b411461021957600080fd5b806323b872dd116100de57806323b872dd1461017c578063313ce5671461018f5780633644e515146101a957806340c10f19146101b157600080fd5b806306fdde0314610110578063095ea7b31461012e578063158ef93e1461015157806318160ddd14610165575b600080fd5b6101186102b0565b60405161012591906109a6565b60405180910390f35b61014161013c366004610a11565b61033e565b6040519015158152602001610125565b60085461014190600160a01b900460ff1681565b61016e60025481565b604051908152602001610125565b61014161018a366004610a3b565b6103ab565b610197601281565b60405160ff9091168152602001610125565b61016e61048b565b6101c46101bf366004610a11565b6104aa565b005b6101c46101d4366004610b1a565b6104e3565b61016e6101e7366004610b7e565b60036020526000908152604090205481565b61016e610207366004610b7e565b60076020526000908152604090205481565b61011861055f565b6101c461022f366004610a11565b61056c565b610141610242366004610a11565b6105a1565b60085461025a906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101c4610280366004610ba0565b610607565b61016e610293366004610c13565b600460209081526000928352604080842090915290825290205481565b600080546102bd90610c46565b80601f01602080910402602001604051908101604052809291908181526020018280546102e990610c46565b80156103365780601f1061030b57610100808354040283529160200191610336565b820191906000526020600020905b81548152906001019060200180831161031957829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103999086815260200190565b60405180910390a35060015b92915050565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610407576103e28382610c96565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b0385166000908152600360205260408120805485929061042f908490610c96565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610e44833981519152906104789087815260200190565b60405180910390a3506001949350505050565b600060055446146104a35761049e610850565b905090565b5060065490565b6008546001600160a01b031633146104d557604051636853cba760e01b815260040160405180910390fd5b6104df82826108ea565b5050565b600854600160a01b900460ff161561050d5760405162dc149f60e41b815260040160405180910390fd5b600880546001600160a01b03191633179055600061052b8382610cfa565b5060016105388282610cfa565b5046600555610545610850565b60065550506008805460ff60a01b1916600160a01b179055565b600180546102bd90610c46565b6008546001600160a01b0316331461059757604051636853cba760e01b815260040160405180910390fd5b6104df8282610944565b336000908152600360205260408120805483919083906105c2908490610c96565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610e44833981519152906103999086815260200190565b4284101561065c5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161066861048b565b6001600160a01b038a811660008181526007602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610774573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906107aa5750876001600160a01b0316816001600160a01b0316145b6107e75760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b6044820152606401610653565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516108829190610dba565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b80600260008282546108fc9190610e30565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610e4483398151915291015b60405180910390a35050565b6001600160a01b0382166000908152600360205260408120805483929061096c908490610c96565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610e4483398151915290602001610938565b60006020808352835180602085015260005b818110156109d4578581018301518582016040015282016109b8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a0c57600080fd5b919050565b60008060408385031215610a2457600080fd5b610a2d836109f5565b946020939093013593505050565b600080600060608486031215610a5057600080fd5b610a59846109f5565b9250610a67602085016109f5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610a9e57600080fd5b813567ffffffffffffffff80821115610ab957610ab9610a77565b604051601f8301601f19908116603f01168101908282118183101715610ae157610ae1610a77565b81604052838152866020858801011115610afa57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610b2d57600080fd5b823567ffffffffffffffff80821115610b4557600080fd5b610b5186838701610a8d565b93506020850135915080821115610b6757600080fd5b50610b7485828601610a8d565b9150509250929050565b600060208284031215610b9057600080fd5b610b99826109f5565b9392505050565b600080600080600080600060e0888a031215610bbb57600080fd5b610bc4886109f5565b9650610bd2602089016109f5565b95506040880135945060608801359350608088013560ff81168114610bf657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610c2657600080fd5b610c2f836109f5565b9150610c3d602084016109f5565b90509250929050565b600181811c90821680610c5a57607f821691505b602082108103610c7a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156103a5576103a5610c80565b601f821115610cf5576000816000526020600020601f850160051c81016020861015610cd25750805b601f850160051c820191505b81811015610cf157828155600101610cde565b5050505b505050565b815167ffffffffffffffff811115610d1457610d14610a77565b610d2881610d228454610c46565b84610ca9565b602080601f831160018114610d5d5760008415610d455750858301515b600019600386901b1c1916600185901b178555610cf1565b600085815260208120601f198616915b82811015610d8c57888601518255948401946001909101908401610d6d565b5085821015610daa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808354610dc881610c46565b60018281168015610de05760018114610df557610e24565b60ff1984168752821515830287019450610e24565b8760005260208060002060005b85811015610e1b5781548a820152908401908201610e02565b50505082870194505b50929695505050505050565b808201808211156103a5576103a5610c8056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220a8329d629f80e0444e3e602c8757203bee096c89eae56a35e08852d38781dcc564736f6c63430008160033
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.