More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,099 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 62815584 | 66 days ago | IN | 0 POL | 0.00198842 | ||||
Withdraw | 62813969 | 66 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 62813528 | 66 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 62812872 | 66 days ago | IN | 0 POL | 0.00208311 | ||||
Withdraw | 62812826 | 66 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 61845935 | 90 days ago | IN | 0 POL | 0.00271184 | ||||
Withdraw | 61045377 | 110 days ago | IN | 0 POL | 0.00195195 | ||||
Withdraw | 60619308 | 120 days ago | IN | 0 POL | 0.00204732 | ||||
Withdraw | 60579303 | 121 days ago | IN | 0 POL | 0.00259852 | ||||
Withdraw | 60528730 | 123 days ago | IN | 0 POL | 0.00214754 | ||||
Withdraw | 60142347 | 132 days ago | IN | 0 POL | 0.00246495 | ||||
Withdraw | 60026912 | 135 days ago | IN | 0 POL | 0.00208246 | ||||
Withdraw | 60013434 | 136 days ago | IN | 0 POL | 0.00240784 | ||||
Withdraw | 60012741 | 136 days ago | IN | 0 POL | 0.00221261 | ||||
Deposit | 59941381 | 138 days ago | IN | 0 POL | 0.00275886 | ||||
Withdraw | 59751553 | 142 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 59668528 | 144 days ago | IN | 0 POL | 0.00246531 | ||||
Deposit | 59658401 | 145 days ago | IN | 0 POL | 0.00275886 | ||||
Withdraw | 59581714 | 147 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 59541412 | 148 days ago | IN | 0 POL | 0.00198842 | ||||
Withdraw | 59540113 | 148 days ago | IN | 0 POL | 0.00195195 | ||||
Withdraw | 59506538 | 148 days ago | IN | 0 POL | 0.001993 | ||||
Withdraw | 59463802 | 150 days ago | IN | 0 POL | 0.00195231 | ||||
Withdraw | 59409424 | 151 days ago | IN | 0 POL | 0.00246566 | ||||
Withdraw | 59406394 | 151 days ago | IN | 0 POL | 0.00209559 |
Loading...
Loading
Contract Name:
StableVault
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./utils/MetaContext.sol"; import "./interfaces/IStableVault.sol"; interface IERC20Mintable is IERC20 { function mintFor(address, uint256) external; function burnFrom(address, uint256) external; function decimals() external view returns (uint); } interface ERC20Permit is IERC20 { function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; } contract StableVault is MetaContext, IStableVault { mapping(address => bool) public allowed; mapping(address => uint) private tokenIndex; address[] public tokens; address public immutable stable; constructor(address _stable) { stable = _stable; } function deposit(address _token, uint256 _amount) public { require(allowed[_token], "Token not listed"); IERC20(_token).transferFrom(_msgSender(), address(this), _amount); IERC20Mintable(stable).mintFor( _msgSender(), _amount*(10**(18-IERC20Mintable(_token).decimals())) ); } function depositWithPermit(address _token, uint256 _amount, uint256 _deadline, bool _permitMax, uint8 v, bytes32 r, bytes32 s) external { uint _toAllow = _amount; if (_permitMax) _toAllow = type(uint).max; ERC20Permit(_token).permit(_msgSender(), address(this), _toAllow, _deadline, v, r, s); deposit(_token, _amount); } function withdraw(address _token, uint256 _amount) external returns (uint256 _output) { IERC20Mintable(stable).burnFrom(_msgSender(), _amount); _output = _amount/10**(18-IERC20Mintable(_token).decimals()); IERC20(_token).transfer( _msgSender(), _output ); } function listToken(address _token) external onlyOwner { require(!allowed[_token], "Already added"); tokenIndex[_token] = tokens.length; tokens.push(_token); allowed[_token] = true; } function delistToken(address _token) external onlyOwner { require(allowed[_token], "Not added"); tokenIndex[tokens[tokens.length-1]] = tokenIndex[_token]; tokens[tokenIndex[_token]] = tokens[tokens.length-1]; delete tokenIndex[_token]; tokens.pop(); allowed[_token] = false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; contract MetaContext is Ownable { mapping(address => bool) private _isTrustedForwarder; function setTrustedForwarder(address _forwarder, bool _bool) external onlyOwner { _isTrustedForwarder[_forwarder] = _bool; } function isTrustedForwarder(address _forwarder) external view returns (bool) { return _isTrustedForwarder[_forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (_isTrustedForwarder[msg.sender]) { // The assembly code is more direct than the Solidity version using `abi.decode`. /// @solidity memory-safe-assembly assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (_isTrustedForwarder[msg.sender]) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IStableVault { function deposit(address, uint) external; function withdraw(address, uint) external returns (uint256); function allowed(address) external view returns (bool); function stable() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stable","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"delistToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"bool","name":"_permitMax","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"depositWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"listToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_forwarder","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setTrustedForwarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"_output","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200144f3803806200144f8339810160408190526200003491620000ee565b62000048620000426200005a565b6200009a565b6001600160a01b031660805262000120565b3360009081526001602052604081205460ff161562000080575060131936013560601c90565b62000095620000ea60201b62000d8d1760201c565b905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3390565b6000602082840312156200010157600080fd5b81516001600160a01b03811681146200011957600080fd5b9392505050565b608051611306620001496000396000818160fe015281816106240152610b7401526113066000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c8063715018a61161008c578063d63a8e1111610066578063d63a8e1114610205578063e691d03b14610228578063f2fde38b1461023b578063f3fef3a31461024e57600080fd5b8063715018a6146101cc5780638da5cb5b146101d4578063abffc9ac146101f257600080fd5b806347e7ef24116100bd57806347e7ef241461015d5780634f64b2be14610170578063572b6c051461018357600080fd5b80631fc1e25f146100e457806322be3de1146100f957806335fd95c41461014a575b600080fd5b6100f76100f2366004610f31565b61026f565b005b6101207f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100f7610158366004610f61565b6103c7565b6100f761016b366004610fd6565b6104d2565b61012061017e366004611000565b61077c565b6101bc610191366004610f31565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6040519015158152602001610141565b6100f76107b3565b60005473ffffffffffffffffffffffffffffffffffffffff16610120565b6100f7610200366004610f31565b6107c7565b6101bc610213366004610f31565b60026020526000908152604090205460ff1681565b6100f7610236366004611019565b610a5b565b6100f7610249366004610f31565b610ab9565b61026161025c366004610fd6565b610b70565b604051908152602001610141565b610277610d91565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff161561030c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f416c72656164792061646465640000000000000000000000000000000000000060448201526064015b60405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff909216600081815260036020908152604080832086905560018087019095557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905591815260029091529190912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b8584156103f157507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b8773ffffffffffffffffffffffffffffffffffffffff1663d505accf610415610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064810189905260ff8716608482015260a4810186905260c4810185905260e401600060405180830381600087803b1580156104a657600080fd5b505af11580156104ba573d6000803e3d6000fd5b505050506104c888886104d2565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526002602052604090205460ff16610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f546f6b656e206e6f74206c6973746564000000000000000000000000000000006044820152606401610303565b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd610585610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064016020604051808303816000875af11580156105fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106219190611050565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663da1919b3610666610e4b565b8473ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d5919061106d565b6106e09060126110b5565b6106eb90600a6111ee565b6106f590856111fa565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561076057600080fd5b505af1158015610774573d6000803e3d6000fd5b505050505050565b6004818154811061078c57600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6107bb610d91565b6107c56000610e93565b565b6107cf610d91565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff1661085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420616464656400000000000000000000000000000000000000000000006044820152606401610303565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020819052604082205460048054919391610899906001906110b5565b815481106108a9576108a9611237565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902055600480546108eb906001906110b5565b815481106108fb576108fb611237565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff8481168452600390925260409092205460048054929093169291811061094657610946611237565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff94851617905591831681526003909152604081205560048054806109b3576109b3611266565b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905590920190925573ffffffffffffffffffffffffffffffffffffffff92909216815260029091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610a63610d91565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610ac1610d91565b73ffffffffffffffffffffffffffffffffffffffff8116610b64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610303565b610b6d81610e93565b50565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc6790610bb6610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101859052604401600060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caa919061106d565b610cb59060126110b5565b610cc090600a6111ee565b610cca9083611295565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610cf0610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611050565b5092915050565b3390565b610d99610e4b565b73ffffffffffffffffffffffffffffffffffffffff16610dce60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610303565b3360009081526001602052604081205460ff1615610e8e57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c90565b503390565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f2c57600080fd5b919050565b600060208284031215610f4357600080fd5b610f4c82610f08565b9392505050565b8015158114610b6d57600080fd5b600080600080600080600060e0888a031215610f7c57600080fd5b610f8588610f08565b965060208801359550604088013594506060880135610fa381610f53565b9350608088013560ff81168114610fb957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610fe957600080fd5b610ff283610f08565b946020939093013593505050565b60006020828403121561101257600080fd5b5035919050565b6000806040838503121561102c57600080fd5b61103583610f08565b9150602083013561104581610f53565b809150509250929050565b60006020828403121561106257600080fd5b8151610f4c81610f53565b60006020828403121561107f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156110c7576110c7611086565b500390565b600181815b8085111561112557817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561110b5761110b611086565b8085161561111857918102915b93841c93908002906110d1565b509250929050565b60008261113c575060016111e8565b81611149575060006111e8565b816001811461115f576002811461116957611185565b60019150506111e8565b60ff84111561117a5761117a611086565b50506001821b6111e8565b5060208310610133831016604e8410600b84101617156111a8575081810a6111e8565b6111b283836110cc565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156111e4576111e4611086565b0290505b92915050565b6000610f4c838361112d565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561123257611232611086565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000826112cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220e20c6df99d0b40a44db073c2d6b3f9ff3b8df8d5d9c1b03a5c74254bb424ab2164736f6c634300080f003300000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c8063715018a61161008c578063d63a8e1111610066578063d63a8e1114610205578063e691d03b14610228578063f2fde38b1461023b578063f3fef3a31461024e57600080fd5b8063715018a6146101cc5780638da5cb5b146101d4578063abffc9ac146101f257600080fd5b806347e7ef24116100bd57806347e7ef241461015d5780634f64b2be14610170578063572b6c051461018357600080fd5b80631fc1e25f146100e457806322be3de1146100f957806335fd95c41461014a575b600080fd5b6100f76100f2366004610f31565b61026f565b005b6101207f00000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e881565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100f7610158366004610f61565b6103c7565b6100f761016b366004610fd6565b6104d2565b61012061017e366004611000565b61077c565b6101bc610191366004610f31565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6040519015158152602001610141565b6100f76107b3565b60005473ffffffffffffffffffffffffffffffffffffffff16610120565b6100f7610200366004610f31565b6107c7565b6101bc610213366004610f31565b60026020526000908152604090205460ff1681565b6100f7610236366004611019565b610a5b565b6100f7610249366004610f31565b610ab9565b61026161025c366004610fd6565b610b70565b604051908152602001610141565b610277610d91565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff161561030c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f416c72656164792061646465640000000000000000000000000000000000000060448201526064015b60405180910390fd5b6004805473ffffffffffffffffffffffffffffffffffffffff909216600081815260036020908152604080832086905560018087019095557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90950180547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905591815260029091529190912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169091179055565b8584156103f157507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b8773ffffffffffffffffffffffffffffffffffffffff1663d505accf610415610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064810189905260ff8716608482015260a4810186905260c4810185905260e401600060405180830381600087803b1580156104a657600080fd5b505af11580156104ba573d6000803e3d6000fd5b505050506104c888886104d2565b5050505050505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526002602052604090205460ff16610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f546f6b656e206e6f74206c6973746564000000000000000000000000000000006044820152606401610303565b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd610585610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064016020604051808303816000875af11580156105fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106219190611050565b507f00000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e873ffffffffffffffffffffffffffffffffffffffff1663da1919b3610666610e4b565b8473ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d5919061106d565b6106e09060126110b5565b6106eb90600a6111ee565b6106f590856111fa565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561076057600080fd5b505af1158015610774573d6000803e3d6000fd5b505050505050565b6004818154811061078c57600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6107bb610d91565b6107c56000610e93565b565b6107cf610d91565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604090205460ff1661085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f7420616464656400000000000000000000000000000000000000000000006044820152606401610303565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020819052604082205460048054919391610899906001906110b5565b815481106108a9576108a9611237565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902055600480546108eb906001906110b5565b815481106108fb576108fb611237565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff8481168452600390925260409092205460048054929093169291811061094657610946611237565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff94851617905591831681526003909152604081205560048054806109b3576109b3611266565b6000828152602080822083017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905590920190925573ffffffffffffffffffffffffffffffffffffffff92909216815260029091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610a63610d91565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610ac1610d91565b73ffffffffffffffffffffffffffffffffffffffff8116610b64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610303565b610b6d81610e93565b50565b60007f00000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e873ffffffffffffffffffffffffffffffffffffffff166379cc6790610bb6610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101859052604401600060405180830381600087803b158015610c2357600080fd5b505af1158015610c37573d6000803e3d6000fd5b505050508273ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610caa919061106d565b610cb59060126110b5565b610cc090600a6111ee565b610cca9083611295565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610cf0610e4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303816000875af1158015610d62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d869190611050565b5092915050565b3390565b610d99610e4b565b73ffffffffffffffffffffffffffffffffffffffff16610dce60005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610303565b3360009081526001602052604081205460ff1615610e8e57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffec36013560601c90565b503390565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610f2c57600080fd5b919050565b600060208284031215610f4357600080fd5b610f4c82610f08565b9392505050565b8015158114610b6d57600080fd5b600080600080600080600060e0888a031215610f7c57600080fd5b610f8588610f08565b965060208801359550604088013594506060880135610fa381610f53565b9350608088013560ff81168114610fb957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610fe957600080fd5b610ff283610f08565b946020939093013593505050565b60006020828403121561101257600080fd5b5035919050565b6000806040838503121561102c57600080fd5b61103583610f08565b9150602083013561104581610f53565b809150509250929050565b60006020828403121561106257600080fd5b8151610f4c81610f53565b60006020828403121561107f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156110c7576110c7611086565b500390565b600181815b8085111561112557817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561110b5761110b611086565b8085161561111857918102915b93841c93908002906110d1565b509250929050565b60008261113c575060016111e8565b81611149575060006111e8565b816001811461115f576002811461116957611185565b60019150506111e8565b60ff84111561117a5761117a611086565b50506001821b6111e8565b5060208310610133831016604e8410600b84101617156111a8575081810a6111e8565b6111b283836110cc565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156111e4576111e4611086565b0290505b92915050565b6000610f4c838361112d565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561123257611232611086565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000826112cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b50049056fea2646970667358221220e20c6df99d0b40a44db073c2d6b3f9ff3b8df8d5d9c1b03a5c74254bb424ab2164736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e8
-----Decoded View---------------
Arg [0] : _stable (address): 0x76973Ba2AFF24F87fFE41FDBfD15308dEBB8f7E8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000076973ba2aff24f87ffe41fdbfd15308debb8f7e8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.999615 | 9,519.6452 | $9,515.98 |
[ 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.