ERC-20
Overview
Max Total Supply
9,349.181 DYAD
Holders
79
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Dyad
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.17; import {IDyad} from "../interfaces/IDyad.sol"; import {Licenser} from "./Licenser.sol"; import {ERC20} from "@solmate/src/tokens/ERC20.sol"; contract Dyad is ERC20("DYAD Stable", "DYAD", 18), IDyad { Licenser public immutable licenser; // vault manager => (dNFT ID => dyad) mapping (address => mapping (uint => uint)) public mintedDyad; constructor( Licenser _licenser ) { licenser = _licenser; } modifier licensedVaultManager() { if (!licenser.isLicensed(msg.sender)) revert NotLicensed(); _; } /// @inheritdoc IDyad function mint( uint id, address to, uint amount ) external licensedVaultManager { _mint(to, amount); mintedDyad[msg.sender][id] += amount; } /// @inheritdoc IDyad function burn( uint id, address from, uint amount ) external licensedVaultManager { _burn(from, amount); mintedDyad[msg.sender][id] -= amount; } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Simple single owner authorization mixin. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol) abstract contract Owned { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event OwnershipTransferred(address indexed user, address indexed newOwner); /*////////////////////////////////////////////////////////////// OWNERSHIP STORAGE //////////////////////////////////////////////////////////////*/ address public owner; modifier onlyOwner() virtual { require(msg.sender == owner, "UNAUTHORIZED"); _; } /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor(address _owner) { owner = _owner; emit OwnershipTransferred(address(0), _owner); } /*////////////////////////////////////////////////////////////// OWNERSHIP LOGIC //////////////////////////////////////////////////////////////*/ function transferOwnership(address newOwner) public virtual onlyOwner { owner = newOwner; emit OwnershipTransferred(msg.sender, newOwner); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// 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 immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// 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); } }
// SPDX-License-Identifier: MIT pragma solidity =0.8.17; import {Owned} from "@solmate/src/auth/Owned.sol"; contract Licenser is Owned(msg.sender) { mapping (address => bool) public isLicensed; constructor() {} function add (address vault) external onlyOwner { isLicensed[vault] = true; } function remove(address vault) external onlyOwner { isLicensed[vault] = false; } }
// SPDX-License-Identifier: MIT pragma solidity =0.8.17; interface IDyad { error NotLicensed(); error DNftDoesNotExist(); /** * @notice Mints amount of DYAD through a dNFT and licensed vault manager * to a specified address. * @dev The caller must be a licensed vault manager. Vault manager get * licensed by the 'sll'. * @param id ID of the dNFT. * @param to The address of the recipient who will receive the tokens. * @param amount The amount of tokens to be minted. */ function mint( uint id, address to, uint amount ) external; /** * @notice Burns amount of DYAD through a dNFT and licensed vault manager * from a specified address. * @dev The caller must be a licensed vault manager. Vault manager get * licensed by the 'sll'. * @param id ID of the dNFT. * @param from The address of the recipient who the tokens will be burnt * from. * @param amount The amount of tokens to be burned. */ function burn( uint id, address from, uint amount ) external; }
{ "remappings": [ "@openzeppelin/=lib/openzeppelin-contracts/", "@solmate/=lib/solmate/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 1000000 }, "metadata": { "bytecodeHash": "ipfs" }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract Licenser","name":"_licenser","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"DNftDoesNotExist","type":"error"},{"inputs":[],"name":"NotLicensed","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":"uint256","name":"id","type":"uint256"},{"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":"licenser","outputs":[{"internalType":"contract Licenser","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedDyad","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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
6101006040523480156200001257600080fd5b50604051620014aa380380620014aa833981016040819052620000359162000162565b6040518060400160405280600b81526020016a4459414420537461626c6560a81b815250604051806040016040528060048152602001631116505160e21b8152506012826000908162000089919062000239565b50600162000098838262000239565b5060ff81166080524660a052620000ae620000c6565b60c0525050506001600160a01b031660e05262000383565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620000fa919062000305565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6000602082840312156200017557600080fd5b81516001600160a01b03811681146200018d57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001bf57607f821691505b602082108103620001e057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023457600081815260208120601f850160051c810160208610156200020f5750805b601f850160051c820191505b8181101562000230578281556001016200021b565b5050505b505050565b81516001600160401b0381111562000255576200025562000194565b6200026d81620002668454620001aa565b84620001e6565b602080601f831160018114620002a557600084156200028c5750858301515b600019600386901b1c1916600185901b17855562000230565b600085815260208120601f198616915b82811015620002d657888601518255948401946001909101908401620002b5565b5085821015620002f55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546200031581620001aa565b60018281168015620003305760018114620003465762000377565b60ff198416875282151583028701945062000377565b8760005260208060002060005b858110156200036e5781548a82015290840190820162000353565b50505082870194505b50929695505050505050565b60805160a05160c05160e0516110df620003cb600039600081816102a2015281816105be01526106ed0152600061056e015260006105390152600061017501526110df6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80637f4781fc11610097578063a9059cbb11610066578063a9059cbb1461024c578063d505accf1461025f578063dd62ed3e14610272578063f790d78f1461029d57600080fd5b80637f4781fc146101f1578063836a10401461021c57806395d89b41146102315780639eea5f661461023957600080fd5b8063313ce567116100d3578063313ce567146101705780633644e515146101a957806370a08231146101b15780637ecebe00146101d157600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d6102e9565b60405161011a9190610d21565b60405180910390f35b610136610131366004610db6565b610377565b604051901515815260200161011a565b61014f60025481565b60405190815260200161011a565b61013661016b366004610de0565b6103f1565b6101977f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161011a565b61014f610535565b61014f6101bf366004610e1c565b60036020526000908152604090205481565b61014f6101df366004610e1c565b60056020526000908152604090205481565b61014f6101ff366004610db6565b600660209081526000928352604080842090915290825290205481565b61022f61022a366004610e3e565b610590565b005b61010d6106b2565b61022f610247366004610e3e565b6106bf565b61013661025a366004610db6565b6107d7565b61022f61026d366004610e63565b61085c565b61014f610280366004610ed6565b600460209081526000928352604080842090915290825290205481565b6102c47f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011a565b600080546102f690610f09565b80601f016020809104026020016040519081016040528092919081815260200182805461032290610f09565b801561036f5780601f106103445761010080835404028352916020019161036f565b820191906000526020600020905b81548152906001019060200180831161035257829003601f168201915b505050505081565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103df9086815260200190565b60405180910390a35060015b92915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610485576104538382610f8b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff8516600090815260036020526040812080548592906104ba908490610f8b565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105229087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461056b57610566610b80565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6040517fa542c2a40000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a542c2a490602401602060405180830381865afa15801561061a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063e9190610f9e565b610674576040517f96dcc1ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61067e8282610c1a565b336000908152600660209081526040808320868452909152812080548392906106a8908490610fc0565b9091555050505050565b600180546102f690610f09565b6040517fa542c2a40000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a542c2a490602401602060405180830381865afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d9190610f9e565b6107a3576040517f96dcc1ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ad8282610c93565b336000908152600660209081526040808320868452909152812080548392906106a8908490610f8b565b336000908152600360205260408120805483919083906107f8908490610f8b565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103df9086815260200190565b428410156108cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b600060016108d7610535565b73ffffffffffffffffffffffffffffffffffffffff8a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610a29573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610aa457508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610b0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e455200000000000000000000000000000000000060448201526064016108c2565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051610bb29190610fd3565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8060026000828254610c2c9190610fc0565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054839290610cc8908490610f8b565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c87565b600060208083528351808285015260005b81811015610d4e57858101830151858201604001528201610d32565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610db157600080fd5b919050565b60008060408385031215610dc957600080fd5b610dd283610d8d565b946020939093013593505050565b600080600060608486031215610df557600080fd5b610dfe84610d8d565b9250610e0c60208501610d8d565b9150604084013590509250925092565b600060208284031215610e2e57600080fd5b610e3782610d8d565b9392505050565b600080600060608486031215610e5357600080fd5b83359250610e0c60208501610d8d565b600080600080600080600060e0888a031215610e7e57600080fd5b610e8788610d8d565b9650610e9560208901610d8d565b95506040880135945060608801359350608088013560ff81168114610eb957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610ee957600080fd5b610ef283610d8d565b9150610f0060208401610d8d565b90509250929050565b600181811c90821680610f1d57607f821691505b602082108103610f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156103eb576103eb610f5c565b600060208284031215610fb057600080fd5b81518015158114610e3757600080fd5b808201808211156103eb576103eb610f5c565b600080835481600182811c915080831680610fef57607f831692505b60208084108203611027577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561103b576001811461106e5761109b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284151585028901965061109b565b60008a81526020902060005b868110156110935781548b82015290850190830161107a565b505084890196505b50949897505050505050505056fea26469706673582212204af8fdc2a56044f5ed11c1367ed27e9c8a89df89f5624f3f62cd379221c1c1e564736f6c63430008110033000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b85
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80637f4781fc11610097578063a9059cbb11610066578063a9059cbb1461024c578063d505accf1461025f578063dd62ed3e14610272578063f790d78f1461029d57600080fd5b80637f4781fc146101f1578063836a10401461021c57806395d89b41146102315780639eea5f661461023957600080fd5b8063313ce567116100d3578063313ce567146101705780633644e515146101a957806370a08231146101b15780637ecebe00146101d157600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd1461015d575b600080fd5b61010d6102e9565b60405161011a9190610d21565b60405180910390f35b610136610131366004610db6565b610377565b604051901515815260200161011a565b61014f60025481565b60405190815260200161011a565b61013661016b366004610de0565b6103f1565b6101977f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161011a565b61014f610535565b61014f6101bf366004610e1c565b60036020526000908152604090205481565b61014f6101df366004610e1c565b60056020526000908152604090205481565b61014f6101ff366004610db6565b600660209081526000928352604080842090915290825290205481565b61022f61022a366004610e3e565b610590565b005b61010d6106b2565b61022f610247366004610e3e565b6106bf565b61013661025a366004610db6565b6107d7565b61022f61026d366004610e63565b61085c565b61014f610280366004610ed6565b600460209081526000928352604080842090915290825290205481565b6102c47f000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b8581565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011a565b600080546102f690610f09565b80601f016020809104026020016040519081016040528092919081815260200182805461032290610f09565b801561036f5780601f106103445761010080835404028352916020019161036f565b820191906000526020600020905b81548152906001019060200180831161035257829003601f168201915b505050505081565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103df9086815260200190565b60405180910390a35060015b92915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610485576104538382610f8b565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff8516600090815260036020526040812080548592906104ba908490610f8b565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105229087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461461056b57610566610b80565b905090565b507f97ad2586d4e67f74f92b76cef0d527d8e92c95730caefc3b7c30ac258d26cdcd90565b6040517fa542c2a40000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b8573ffffffffffffffffffffffffffffffffffffffff169063a542c2a490602401602060405180830381865afa15801561061a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063e9190610f9e565b610674576040517f96dcc1ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61067e8282610c1a565b336000908152600660209081526040808320868452909152812080548392906106a8908490610fc0565b9091555050505050565b600180546102f690610f09565b6040517fa542c2a40000000000000000000000000000000000000000000000000000000081523360048201527f000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b8573ffffffffffffffffffffffffffffffffffffffff169063a542c2a490602401602060405180830381865afa158015610749573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076d9190610f9e565b6107a3576040517f96dcc1ef00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ad8282610c93565b336000908152600660209081526040808320868452909152812080548392906106a8908490610f8b565b336000908152600360205260408120805483919083906107f8908490610f8b565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906103df9086815260200190565b428410156108cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b600060016108d7610535565b73ffffffffffffffffffffffffffffffffffffffff8a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610a29573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590610aa457508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610b0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e455200000000000000000000000000000000000060448201526064016108c2565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051610bb29190610fd3565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8060026000828254610c2c9190610fc0565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054839290610cc8908490610f8b565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c87565b600060208083528351808285015260005b81811015610d4e57858101830151858201604001528201610d32565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610db157600080fd5b919050565b60008060408385031215610dc957600080fd5b610dd283610d8d565b946020939093013593505050565b600080600060608486031215610df557600080fd5b610dfe84610d8d565b9250610e0c60208501610d8d565b9150604084013590509250925092565b600060208284031215610e2e57600080fd5b610e3782610d8d565b9392505050565b600080600060608486031215610e5357600080fd5b83359250610e0c60208501610d8d565b600080600080600080600060e0888a031215610e7e57600080fd5b610e8788610d8d565b9650610e9560208901610d8d565b95506040880135945060608801359350608088013560ff81168114610eb957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610ee957600080fd5b610ef283610d8d565b9150610f0060208401610d8d565b90509250929050565b600181811c90821680610f1d57607f821691505b602082108103610f56577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156103eb576103eb610f5c565b600060208284031215610fb057600080fd5b81518015158114610e3757600080fd5b808201808211156103eb576103eb610f5c565b600080835481600182811c915080831680610fef57607f831692505b60208084108203611027577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561103b576001811461106e5761109b565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284151585028901965061109b565b60008a81526020902060005b868110156110935781548b82015290850190830161107a565b505084890196505b50949897505050505050505056fea26469706673582212204af8fdc2a56044f5ed11c1367ed27e9c8a89df89f5624f3f62cd379221c1c1e564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b85
-----Decoded View---------------
Arg [0] : _licenser (address): 0xd8bA5e720Ddc7ccD24528b9BA3784708528d0B85
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d8ba5e720ddc7ccd24528b9ba3784708528d0b85
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.