More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 260 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Run | 21034479 | 48 days ago | IN | 0 ETH | 0.00066428 | ||||
Run | 20325655 | 147 days ago | IN | 0 ETH | 0.00058566 | ||||
Run | 20134350 | 174 days ago | IN | 0 ETH | 0.00165811 | ||||
Run | 19984266 | 195 days ago | IN | 0 ETH | 0.00206694 | ||||
Run | 19731845 | 230 days ago | IN | 0 ETH | 0.00095127 | ||||
Run | 19553311 | 255 days ago | IN | 0 ETH | 0.00142798 | ||||
Run | 19545058 | 256 days ago | IN | 0 ETH | 0.00167633 | ||||
Run | 19538975 | 257 days ago | IN | 0 ETH | 0.00193587 | ||||
Run | 19537895 | 257 days ago | IN | 0 ETH | 0.00185799 | ||||
Run | 19537862 | 257 days ago | IN | 0 ETH | 0.00149087 | ||||
Run | 19266517 | 296 days ago | IN | 0 ETH | 0.00148346 | ||||
Run | 19015563 | 331 days ago | IN | 0 ETH | 0.00211873 | ||||
Run | 16886089 | 630 days ago | IN | 0 ETH | 0.00268437 | ||||
Run | 16886089 | 630 days ago | IN | 0 ETH | 0.0014848 | ||||
Run | 16749124 | 649 days ago | IN | 0 ETH | 0.00307195 | ||||
Run | 16728051 | 652 days ago | IN | 0 ETH | 0.00289343 | ||||
Run | 16454763 | 690 days ago | IN | 0 ETH | 0.00123021 | ||||
Run | 15647520 | 803 days ago | IN | 0 ETH | 0.0018537 | ||||
Run | 14463545 | 991 days ago | IN | 0 ETH | 0.00285572 | ||||
Run | 13935449 | 1073 days ago | IN | 0 ETH | 0.01233651 | ||||
Run | 13932938 | 1073 days ago | IN | 0 ETH | 0.00658257 | ||||
Run | 13900461 | 1078 days ago | IN | 0 ETH | 0.01119783 | ||||
Run | 13697057 | 1110 days ago | IN | 0 ETH | 0.00532993 | ||||
Run | 13572146 | 1130 days ago | IN | 0 ETH | 0.00936776 | ||||
Run | 13480025 | 1144 days ago | IN | 0 ETH | 0.00375612 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x8a015679...7822DE8f3 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PublicAmbix
Compiler Version
v0.5.7+commit.6da8b019
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-04-16 */ // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract ERC20Burnable is ERC20 { /** * @dev Burns a specific amount of tokens. * @param value The amount of token to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } /** * @dev Burns a specific amount of tokens from the target address and decrements allowance * @param from address The address which you want to send tokens from * @param value uint256 The amount of token to be burned */ function burnFrom(address from, uint256 value) public { _burnFrom(from, value); } } // File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; function safeTransfer(IERC20 token, address to, uint256 value) internal { require(token.transfer(to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { require(token.transferFrom(from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require((value == 0) || (token.allowance(address(this), spender) == 0)); require(token.approve(spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); require(token.approve(spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); require(token.approve(spender, newAllowance)); } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/misc/AbstractAmbix.sol pragma solidity ^0.5.0; /** @dev Ambix contract is used for morph Token set to another Token's by rule (recipe). In distillation process given Token's are burned and result generated by emission. The recipe presented as equation in form: (N1 * A1 & N'1 * A'1 & N''1 * A''1 ...) | (N2 * A2 & N'2 * A'2 & N''2 * A''2 ...) ... | (Nn * An & N'n * A'n & N''n * A''n ...) = M1 * B1 & M2 * B2 ... & Mm * Bm where A, B - input and output tokens N, M - token value coeficients n, m - input / output dimetion size | - is alternative operator (logical OR) & - is associative operator (logical AND) This says that `Ambix` should receive (approve) left part of equation and send (transfer) right part. */ contract AbstractAmbix is Ownable { using SafeERC20 for ERC20Burnable; using SafeERC20 for ERC20; address[][] public A; uint256[][] public N; address[] public B; uint256[] public M; /** * @dev Append token recipe source alternative * @param _a Token recipe source token addresses * @param _n Token recipe source token counts **/ function appendSource( address[] calldata _a, uint256[] calldata _n ) external onlyOwner { uint256 i; require(_a.length == _n.length && _a.length > 0); for (i = 0; i < _a.length; ++i) require(_a[i] != address(0)); if (_n.length == 1 && _n[0] == 0) { require(B.length == 1); } else { for (i = 0; i < _n.length; ++i) require(_n[i] > 0); } A.push(_a); N.push(_n); } /** * @dev Set sink of token recipe * @param _b Token recipe sink token list * @param _m Token recipe sink token counts */ function setSink( address[] calldata _b, uint256[] calldata _m ) external onlyOwner{ require(_b.length == _m.length); for (uint256 i = 0; i < _b.length; ++i) require(_b[i] != address(0)); B = _b; M = _m; } function _run(uint256 _ix) internal { require(_ix < A.length); uint256 i; if (N[_ix][0] > 0) { // Static conversion // Token count multiplier uint256 mux = ERC20(A[_ix][0]).allowance(msg.sender, address(this)) / N[_ix][0]; require(mux > 0); // Burning run for (i = 0; i < A[_ix].length; ++i) ERC20Burnable(A[_ix][i]).burnFrom(msg.sender, mux * N[_ix][i]); // Transfer up for (i = 0; i < B.length; ++i) ERC20(B[i]).safeTransfer(msg.sender, M[i] * mux); } else { // Dynamic conversion // Let source token total supply is finite and decrease on each conversion, // just convert finite supply of source to tokens on balance of ambix. // dynamicRate = balance(sink) / total(source) // Is available for single source and single sink only require(A[_ix].length == 1 && B.length == 1); ERC20Burnable source = ERC20Burnable(A[_ix][0]); ERC20 sink = ERC20(B[0]); uint256 scale = 10 ** 18 * sink.balanceOf(address(this)) / source.totalSupply(); uint256 allowance = source.allowance(msg.sender, address(this)); require(allowance > 0); source.burnFrom(msg.sender, allowance); uint256 reward = scale * allowance / 10 ** 18; require(reward > 0); sink.safeTransfer(msg.sender, reward); } } } // File: contracts/misc/PublicAmbix.sol pragma solidity ^0.5.0; contract PublicAmbix is AbstractAmbix { /** * @dev Run distillation process * @param _ix Source alternative index */ function run(uint256 _ix) external { _run(_ix); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"_b","type":"address[]"},{"name":"_m","type":"uint256[]"}],"name":"setSink","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_a","type":"address[]"},{"name":"_n","type":"uint256[]"}],"name":"appendSource","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"name":"A","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ix","type":"uint256"}],"name":"run","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"M","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"B","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"name":"N","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80638f32d59b116100715780638f32d59b1461027b578063a444f5e914610297578063d6c85529146102b4578063dac0eb07146102e3578063f2fde38b14610300578063fdbacf5a14610326576100a9565b80634898722d146100ae57806355c0a5f41461016e578063715018a61461022c57806383f86eb2146102345780638da5cb5b14610273575b600080fd5b61016c600480360360408110156100c457600080fd5b810190602081018135600160201b8111156100de57600080fd5b8201836020820111156100f057600080fd5b803590602001918460208302840111600160201b8311171561011157600080fd5b919390929091602081019035600160201b81111561012e57600080fd5b82018360208201111561014057600080fd5b803590602001918460208302840111600160201b8311171561016157600080fd5b509092509050610349565b005b61016c6004803603604081101561018457600080fd5b810190602081018135600160201b81111561019e57600080fd5b8201836020820111156101b057600080fd5b803590602001918460208302840111600160201b831117156101d157600080fd5b919390929091602081019035600160201b8111156101ee57600080fd5b82018360208201111561020057600080fd5b803590602001918460208302840111600160201b8311171561022157600080fd5b5090925090506103cc565b61016c610531565b6102576004803603604081101561024a57600080fd5b508035906020013561058c565b604080516001600160a01b039092168252519081900360200190f35b6102576105ca565b6102836105da565b604080519115158252519081900360200190f35b61016c600480360360208110156102ad57600080fd5b50356105eb565b6102d1600480360360208110156102ca57600080fd5b50356105f7565b60408051918252519081900360200190f35b610257600480360360208110156102f957600080fd5b5035610615565b61016c6004803603602081101561031657600080fd5b50356001600160a01b031661063c565b6102d16004803603604081101561033c57600080fd5b5080359060200135610656565b6103516105da565b61035a57600080fd5b82811461036657600080fd5b60005b838110156103ab57600085858381811061037f57fe5b905060200201356001600160a01b03166001600160a01b031614156103a357600080fd5b600101610369565b506103b860038585610cf7565b506103c560048383610d5a565b5050505050565b6103d46105da565b6103dd57600080fd5b600083821480156103ed57508315155b6103f657600080fd5b5060005b8381101561043c57600085858381811061041057fe5b905060200201356001600160a01b03166001600160a01b0316141561043457600080fd5b6001016103fa565b60018214801561045f57508282600081811061045457fe5b905060200201356000145b156104785760035460011461047357600080fd5b6104ab565b5060005b818110156104ab57600083838381811061049257fe5b90506020020135116104a357600080fd5b60010161047c565b600180548082018083556000929092526104e8907fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6018787610cf7565b50506002805460018101808355600092909252610528907f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace018585610d5a565b50505050505050565b6105396105da565b61054257600080fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001828154811061059957fe5b9060005260206000200181815481106105ae57fe5b6000918252602090912001546001600160a01b03169150829050565b6000546001600160a01b03165b90565b6000546001600160a01b0316331490565b6105f48161068d565b50565b6004818154811061060457fe5b600091825260209091200154905081565b6003818154811061062257fe5b6000918252602090912001546001600160a01b0316905081565b6106446105da565b61064d57600080fd5b6105f481610bef565b6002828154811061066357fe5b90600052602060002001818154811061067857fe5b90600052602060002001600091509150505481565b600154811061069b57600080fd5b600080600283815481106106ab57fe5b906000526020600020016000815481106106c157fe5b90600052602060002001541115610929576000600283815481106106e157fe5b906000526020600020016000815481106106f757fe5b90600052602060002001546001848154811061070f57fe5b9060005260206000200160008154811061072557fe5b6000918252602091829020015460408051600160e11b636eb1769f02815233600482015230602482015290516001600160a01b039092169263dd62ed3e92604480840193829003018186803b15801561077d57600080fd5b505afa158015610791573d6000803e3d6000fd5b505050506040513d60208110156107a757600080fd5b5051816107b057fe5b049050600081116107c057600080fd5b600091505b600183815481106107d257fe5b6000918252602090912001548210156108bc57600183815481106107f257fe5b90600052602060002001828154811061080757fe5b600091825260209091200154600280546001600160a01b03909216916379cc67909133918790811061083557fe5b90600052602060002001858154811061084a57fe5b60009182526020822001546040805163ffffffff861660e01b81526001600160a01b03909416600485015290860260248401525160448084019382900301818387803b15801561089957600080fd5b505af11580156108ad573d6000803e3d6000fd5b505050508160010191506107c5565b600091505b600354821015610923576109183382600485815481106108dd57fe5b906000526020600020015402600385815481106108f657fe5b6000918252602090912001546001600160a01b0316919063ffffffff610c5d16565b8160010191506108c1565b50610beb565b6001828154811061093657fe5b600091825260209091200154600114801561095357506003546001145b61095c57600080fd5b60006001838154811061096b57fe5b9060005260206000200160008154811061098157fe5b6000918252602082200154600380546001600160a01b0390921693509082906109a657fe5b9060005260206000200160009054906101000a90046001600160a01b031690506000826001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a0157600080fd5b505afa158015610a15573d6000803e3d6000fd5b505050506040513d6020811015610a2b57600080fd5b505160408051600160e01b6370a0823102815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b158015610a7657600080fd5b505afa158015610a8a573d6000803e3d6000fd5b505050506040513d6020811015610aa057600080fd5b5051670de0b6b3a76400000281610ab357fe5b60408051600160e11b636eb1769f02815233600482015230602482015290519290910492506000916001600160a01b0386169163dd62ed3e916044808301926020929190829003018186803b158015610b0b57600080fd5b505afa158015610b1f573d6000803e3d6000fd5b505050506040513d6020811015610b3557600080fd5b5051905080610b4357600080fd5b60408051600160e41b63079cc6790281523360048201526024810183905290516001600160a01b038616916379cc679091604480830192600092919082900301818387803b158015610b9457600080fd5b505af1158015610ba8573d6000803e3d6000fd5b505050506000670de0b6b3a764000082840281610bc157fe5b04905060008111610bd157600080fd5b6105286001600160a01b038516338363ffffffff610c5d16565b5050565b6001600160a01b038116610c0257600080fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031663a9059cbb83836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610cbd57600080fd5b505af1158015610cd1573d6000803e3d6000fd5b505050506040513d6020811015610ce757600080fd5b5051610cf257600080fd5b505050565b828054828255906000526020600020908101928215610d4a579160200282015b82811115610d4a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190610d17565b50610d56929150610da1565b5090565b828054828255906000526020600020908101928215610d95579160200282015b82811115610d95578235825591602001919060010190610d7a565b50610d56929150610dc5565b6105d791905b80821115610d565780546001600160a01b0319168155600101610da7565b6105d791905b80821115610d565760008155600101610dcb56fea165627a7a72305820af5164477dce0f96f7ac388f9e49901589a7554845aa6fbdeabbeac36c3d2cb80029
Swarm Source
bzzr://af5164477dce0f96f7ac388f9e49901589a7554845aa6fbdeabbeac36c3d2cb8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2.67 | 179,110.4778 | $478,224.98 |
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.