Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xff295a718e56c37f1edd411da73350311d92851436178e4dfb19908eaccdd77c | 0x60806040 | 25416768 | 386 days 14 hrs ago | 0xbdfc41e26ffcaa992790d321639008f3740bd951 | IN | Create: SON | 0 MATIC | 0.029731592254 |
[ Download CSV Export ]
Contract Name:
SON
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-02-28 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.3.0 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma 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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File contracts/assets/ISoNetAsset.sol pragma solidity =0.8.4; interface ISoNetAsset is IERC20 { function isSoNetAsset() external returns (bool); function burn(uint256 amount) external returns (bool); function burnFrom(address from, uint256 amount) external returns (bool); } // File contracts/assets/SON.sol pragma solidity =0.8.4; contract SON is ERC20, ISoNetAsset { bool public constant override isSoNetAsset = true; constructor(address reserve, address custodian) ERC20("Social Network", "SON") { _mint(reserve, 1_080_000 * (10 ** decimals())); _mint(custodian, 34_920_000 * (10 ** decimals())); } function burn(uint256 amount) public override returns (bool) { _burn(_msgSender(), amount); return true; } function burnFrom(address account, uint256 amount) public override returns (bool){ uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"reserve","type":"address"},{"internalType":"address","name":"custodian","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSoNetAsset","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001342380380620013428339810160408190526200003491620002ba565b6040518060400160405280600e81526020016d536f6369616c204e6574776f726b60901b8152506040518060400160405280600381526020016229a7a760e91b81525081600390805190602001906200008f929190620001f7565b508051620000a5906004906020840190620001f7565b505050620000df82620000bd6200010a60201b60201c565b620000ca90600a62000355565b620000d99062107ac062000423565b6200010f565b6200010281620000f26012600a62000355565b620000d990630214d64062000423565b505062000498565b601290565b6001600160a01b0382166200016a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200017e9190620002f1565b90915550506001600160a01b03821660009081526020819052604081208054839290620001ad908490620002f1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002059062000445565b90600052602060002090601f01602090048101928262000229576000855562000274565b82601f106200024457805160ff191683800117855562000274565b8280016001018555821562000274579182015b828111156200027457825182559160200191906001019062000257565b506200028292915062000286565b5090565b5b8082111562000282576000815560010162000287565b80516001600160a01b0381168114620002b557600080fd5b919050565b60008060408385031215620002cd578182fd5b620002d8836200029d565b9150620002e8602084016200029d565b90509250929050565b6000821982111562000307576200030762000482565b500190565b600181815b808511156200034d57816000190482111562000331576200033162000482565b808516156200033f57918102915b93841c939080029062000311565b509250929050565b60006200036660ff8416836200036d565b9392505050565b6000826200037e575060016200041d565b816200038d575060006200041d565b8160018114620003a65760028114620003b157620003d1565b60019150506200041d565b60ff841115620003c557620003c562000482565b50506001821b6200041d565b5060208310610133831016604e8410600b8410161715620003f6575081810a6200041d565b6200040283836200030c565b806000190482111562000419576200041962000482565b0290505b92915050565b600081600019048311821515161562000440576200044062000482565b500290565b600181811c908216806200045a57607f821691505b602082108114156200047c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610e9a80620004a86000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634ed256a31161008c57806395d89b411161006657806395d89b41146101db578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b80634ed256a31461018a57806370a082311461019257806379cc6790146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806342966c681461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761024f565b6040516101049190610d41565b60405180910390f35b61012061011b366004610d00565b6102e1565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610cc5565b6102f7565b60405160128152602001610104565b610120610172366004610d00565b6103ea565b610120610185366004610d29565b61042e565b610120600181565b6101346101a0366004610c72565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101206101d6366004610d00565b610442565b6100f76104fe565b6101206101f1366004610d00565b61050d565b610120610204366004610d00565b6105dd565b610134610217366004610c93565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025e90610de1565b80601f016020809104026020016040519081016040528092919081815260200182805461028a90610de1565b80156102d75780601f106102ac576101008083540402835291602001916102d7565b820191906000526020600020905b8154815290600101906020018083116102ba57829003601f168201915b5050505050905090565b60006102ee3384846105ea565b50600192915050565b600061030484848461079e565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156103ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103df85335b6103da8685610dca565b6105ea565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916102ee9185906103da908690610db2565b600061043a3383610a5b565b506001919050565b60008061044f8433610217565b9050828110156104e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016103c1565b6104ea84336103d0565b6104f48484610a5b565b5060019392505050565b60606004805461025e90610de1565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156105ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016103c1565b6104f433856103da8685610dca565b60006102ee33848461079e565b73ffffffffffffffffffffffffffffffffffffffff831661068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103c1565b73ffffffffffffffffffffffffffffffffffffffff821661072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103c1565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103c1565b73ffffffffffffffffffffffffffffffffffffffff82166108e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103c1565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016103c1565b6109a48282610dca565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526020819052604080822093909355908516815290812080548492906109e7908490610db2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a4d91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610afe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016103c1565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610bb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016103c1565b610bbe8282610dca565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290610bf9908490610dca565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610791565b803573ffffffffffffffffffffffffffffffffffffffff81168114610c6d57600080fd5b919050565b600060208284031215610c83578081fd5b610c8c82610c49565b9392505050565b60008060408385031215610ca5578081fd5b610cae83610c49565b9150610cbc60208401610c49565b90509250929050565b600080600060608486031215610cd9578081fd5b610ce284610c49565b9250610cf060208501610c49565b9150604084013590509250925092565b60008060408385031215610d12578182fd5b610d1b83610c49565b946020939093013593505050565b600060208284031215610d3a578081fd5b5035919050565b6000602080835283518082850152825b81811015610d6d57858101830151858201604001528201610d51565b81811115610d7e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610dc557610dc5610e35565b500190565b600082821015610ddc57610ddc610e35565b500390565b600181811c90821680610df557607f821691505b60208210811415610e2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220dfefdbe8fcdc325b1b70f98f6e3fd4facbe44718dbceba0084479f200c390fd064736f6c63430008040033000000000000000000000000b747463d17d3d2999ba2862d545fc7efc5204d7f0000000000000000000000000115f37fd631dba431519aefc247b1065147f35e
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b747463d17d3d2999ba2862d545fc7efc5204d7f0000000000000000000000000115f37fd631dba431519aefc247b1065147f35e
-----Decoded View---------------
Arg [0] : reserve (address): 0xb747463d17d3d2999ba2862d545fc7efc5204d7f
Arg [1] : custodian (address): 0x0115f37fd631dba431519aefc247b1065147f35e
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b747463d17d3d2999ba2862d545fc7efc5204d7f
Arg [1] : 0000000000000000000000000115f37fd631dba431519aefc247b1065147f35e
Deployed ByteCode Sourcemap
15769:823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6618:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8785:169;;;;;;:::i;:::-;;:::i;:::-;;;1663:14:1;;1656:22;1638:41;;1626:2;1611:18;8785:169:0;1593:92:1;7738:108:0;7826:12;;7738:108;;;6553:25:1;;;6541:2;6526:18;7738:108:0;6508:76:1;9436:422:0;;;;;;:::i;:::-;;:::i;7580:93::-;;;7663:2;6731:36:1;;6719:2;6704:18;7580:93:0;6686:87:1;10267:215:0;;;;;;:::i;:::-;;:::i;16083:129::-;;;;;;:::i;:::-;;:::i;15813:49::-;;15858:4;15813:49;;7909:127;;;;;;:::i;:::-;8010:18;;7983:7;8010:18;;;;;;;;;;;;7909:127;16220:369;;;;;;:::i;:::-;;:::i;6837:104::-;;;:::i;10985:377::-;;;;;;:::i;:::-;;:::i;8249:175::-;;;;;;:::i;:::-;;:::i;8487:151::-;;;;;;:::i;:::-;8603:18;;;;8576:7;8603:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8487:151;6618:100;6672:13;6705:5;6698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6618:100;:::o;8785:169::-;8868:4;8885:39;4279:10;8908:7;8917:6;8885:8;:39::i;:::-;-1:-1:-1;8942:4:0;8785:169;;;;:::o;9436:422::-;9542:4;9559:36;9569:6;9577:9;9588:6;9559:9;:36::i;:::-;9635:19;;;9608:24;9635:19;;;:11;:19;;;;;;;;4279:10;9635:33;;;;;;;;9687:26;;;;9679:79;;;;;;;4176:2:1;9679:79:0;;;4158:21:1;4215:2;4195:18;;;4188:30;4254:34;4234:18;;;4227:62;4325:10;4305:18;;;4298:38;4353:19;;9679:79:0;;;;;;;;;9769:57;9778:6;4279:10;9786:12;9800:25;9819:6;9800:16;:25;:::i;:::-;9769:8;:57::i;:::-;-1:-1:-1;9846:4:0;;9436:422;-1:-1:-1;;;;9436:422:0:o;10267:215::-;4279:10;10355:4;10404:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10355:4;;10372:80;;10395:7;;10404:47;;10441:10;;10404:47;:::i;16083:129::-;16138:4;16155:27;4279:10;16175:6;16155:5;:27::i;:::-;-1:-1:-1;16200:4:0;;16083:129;-1:-1:-1;16083:129:0:o;16220:369::-;16296:4;;16339:32;16349:7;4279:10;8487:151;:::i;16339:32::-;16312:59;;16410:6;16390:16;:26;;16382:75;;;;;;;4585:2:1;16382:75:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;4734:6;4714:18;;;4707:34;4758:19;;16382:75:0;4557:226:1;16382:75:0;16468:58;16477:7;4279:10;16486:12;4199:98;16468:58;16537:22;16543:7;16552:6;16537:5;:22::i;:::-;-1:-1:-1;16577:4:0;;16220:369;-1:-1:-1;;;16220:369:0:o;6837:104::-;6893:13;6926:7;6919:14;;;;;:::i;10985:377::-;4279:10;11078:4;11122:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11175:35;;;;11167:85;;;;;;;6203:2:1;11167:85:0;;;6185:21:1;6242:2;6222:18;;;6215:30;6281:34;6261:18;;;6254:62;6352:7;6332:18;;;6325:35;6377:19;;11167:85:0;6175:227:1;11167:85:0;11263:67;4279:10;11286:7;11295:34;11314:15;11295:16;:34;:::i;8249:175::-;8335:4;8352:42;4279:10;8376:9;8387:6;8352:9;:42::i;14341:346::-;14443:19;;;14435:68;;;;;;;5798:2:1;14435:68:0;;;5780:21:1;5837:2;5817:18;;;5810:30;5876:34;5856:18;;;5849:62;5947:6;5927:18;;;5920:34;5971:19;;14435:68:0;5770:226:1;14435:68:0;14522:21;;;14514:68;;;;;;;3366:2:1;14514:68:0;;;3348:21:1;3405:2;3385:18;;;3378:30;3444:34;3424:18;;;3417:62;3515:4;3495:18;;;3488:32;3537:19;;14514:68:0;3338:224:1;14514:68:0;14595:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14647:32;;6553:25:1;;;14647:32:0;;6526:18:1;14647:32:0;;;;;;;;14341:346;;;:::o;11852:604::-;11958:20;;;11950:70;;;;;;;5392:2:1;11950:70:0;;;5374:21:1;5431:2;5411:18;;;5404:30;5470:34;5450:18;;;5443:62;5541:7;5521:18;;;5514:35;5566:19;;11950:70:0;5364:227:1;11950:70:0;12039:23;;;12031:71;;;;;;;2559:2:1;12031:71:0;;;2541:21:1;2598:2;2578:18;;;2571:30;2637:34;2617:18;;;2610:62;2708:5;2688:18;;;2681:33;2731:19;;12031:71:0;2531:225:1;12031:71:0;12199:17;;;12175:21;12199:17;;;;;;;;;;;12235:23;;;;12227:74;;;;;;;3769:2:1;12227:74:0;;;3751:21:1;3808:2;3788:18;;;3781:30;3847:34;3827:18;;;3820:62;3918:8;3898:18;;;3891:36;3944:19;;12227:74:0;3741:228:1;12227:74:0;12332:22;12348:6;12332:13;:22;:::i;:::-;12312:17;;;;:9;:17;;;;;;;;;;;:42;;;;12365:20;;;;;;;;:30;;12389:6;;12312:9;12365:30;;12389:6;;12365:30;:::i;:::-;;;;;;;;12430:9;12413:35;;12422:6;12413:35;;;12441:6;12413:35;;;;6553:25:1;;6541:2;6526:18;;6508:76;12413:35:0;;;;;;;;11852:604;;;;:::o;13409:494::-;13493:21;;;13485:67;;;;;;;4990:2:1;13485:67:0;;;4972:21:1;5029:2;5009:18;;;5002:30;5068:34;5048:18;;;5041:62;5139:3;5119:18;;;5112:31;5160:19;;13485:67:0;4962:223:1;13485:67:0;13652:18;;;13627:22;13652:18;;;;;;;;;;;13689:24;;;;13681:71;;;;;;;2963:2:1;13681:71:0;;;2945:21:1;3002:2;2982:18;;;2975:30;3041:34;3021:18;;;3014:62;3112:4;3092:18;;;3085:32;3134:19;;13681:71:0;2935:224:1;13681:71:0;13784:23;13801:6;13784:14;:23;:::i;:::-;13763:18;;;:9;:18;;;;;;;;;;:44;;;;13818:12;:22;;13834:6;;13763:9;13818:22;;13834:6;;13818:22;:::i;:::-;;;;-1:-1:-1;;13858:37:0;;6553:25:1;;;13884:1:0;;13858:37;;;;;;6541:2:1;6526:18;13858:37:0;6508:76:1;14:196;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;:::-;366:39;285:126;-1:-1:-1;;;285:126:1:o;416:270::-;484:6;492;545:2;533:9;524:7;520:23;516:32;513:2;;;566:6;558;551:22;513:2;594:29;613:9;594:29;:::i;:::-;584:39;;642:38;676:2;665:9;661:18;642:38;:::i;:::-;632:48;;503:183;;;;;:::o;691:338::-;768:6;776;784;837:2;825:9;816:7;812:23;808:32;805:2;;;858:6;850;843:22;805:2;886:29;905:9;886:29;:::i;:::-;876:39;;934:38;968:2;957:9;953:18;934:38;:::i;:::-;924:48;;1019:2;1008:9;1004:18;991:32;981:42;;795:234;;;;;:::o;1034:264::-;1102:6;1110;1163:2;1151:9;1142:7;1138:23;1134:32;1131:2;;;1184:6;1176;1169:22;1131:2;1212:29;1231:9;1212:29;:::i;:::-;1202:39;1288:2;1273:18;;;;1260:32;;-1:-1:-1;;;1121:177:1:o;1303:190::-;1362:6;1415:2;1403:9;1394:7;1390:23;1386:32;1383:2;;;1436:6;1428;1421:22;1383:2;-1:-1:-1;1464:23:1;;1373:120;-1:-1:-1;1373:120:1:o;1690:662::-;1802:4;1831:2;1860;1849:9;1842:21;1892:6;1886:13;1935:6;1930:2;1919:9;1915:18;1908:34;1960:4;1973:140;1987:6;1984:1;1981:13;1973:140;;;2082:14;;;2078:23;;2072:30;2048:17;;;2067:2;2044:26;2037:66;2002:10;;1973:140;;;2131:6;2128:1;2125:13;2122:2;;;2201:4;2196:2;2187:6;2176:9;2172:22;2168:31;2161:45;2122:2;-1:-1:-1;2268:2:1;2256:15;2273:66;2252:88;2237:104;;;;2343:2;2233:113;;1811:541;-1:-1:-1;;;1811:541:1:o;6778:128::-;6818:3;6849:1;6845:6;6842:1;6839:13;6836:2;;;6855:18;;:::i;:::-;-1:-1:-1;6891:9:1;;6826:80::o;6911:125::-;6951:4;6979:1;6976;6973:8;6970:2;;;6984:18;;:::i;:::-;-1:-1:-1;7021:9:1;;6960:76::o;7041:437::-;7120:1;7116:12;;;;7163;;;7184:2;;7238:4;7230:6;7226:17;7216:27;;7184:2;7291;7283:6;7280:14;7260:18;7257:38;7254:2;;;7328:77;7325:1;7318:88;7429:4;7426:1;7419:15;7457:4;7454:1;7447:15;7254:2;;7096:382;;;:::o;7483:184::-;7535:77;7532:1;7525:88;7632:4;7629:1;7622:15;7656:4;7653:1;7646:15
Swarm Source
ipfs://dfefdbe8fcdc325b1b70f98f6e3fd4facbe44718dbceba0084479f200c390fd0
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.