Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 172 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24365630 | 37 days ago | IN | 0 ETH | 0.00000656 | ||||
| Approve | 24352039 | 39 days ago | IN | 0 ETH | 0.00000359 | ||||
| Approve | 24327061 | 43 days ago | IN | 0 ETH | 0.00000793 | ||||
| Redeem | 24319036 | 44 days ago | IN | 0 ETH | 0.00003751 | ||||
| Redeem | 24319008 | 44 days ago | IN | 0 ETH | 0.00002382 | ||||
| Approve | 24318192 | 44 days ago | IN | 0 ETH | 0.00002852 | ||||
| Approve | 24317716 | 44 days ago | IN | 0 ETH | 0.00002869 | ||||
| Approve | 24317346 | 44 days ago | IN | 0 ETH | 0.00011142 | ||||
| Approve | 24317320 | 44 days ago | IN | 0 ETH | 0.00011082 | ||||
| Approve | 22222415 | 337 days ago | IN | 0 ETH | 0.00005177 | ||||
| Transfer | 22170918 | 344 days ago | IN | 0 ETH | 0.00034854 | ||||
| Redeem | 21161395 | 485 days ago | IN | 0 ETH | 0.00440076 | ||||
| Pay Interest | 21161303 | 485 days ago | IN | 0 ETH | 0.00138313 | ||||
| Transfer | 21083237 | 496 days ago | IN | 0 ETH | 0.00180044 | ||||
| Transfer | 21083116 | 496 days ago | IN | 0 ETH | 0.00250564 | ||||
| Redeem All | 21040748 | 502 days ago | IN | 0 ETH | 0.00147861 | ||||
| Transfer | 20982231 | 510 days ago | IN | 0 ETH | 0.00339241 | ||||
| Mint | 20351301 | 598 days ago | IN | 0 ETH | 0.00067065 | ||||
| Redeem All | 19815909 | 673 days ago | IN | 0 ETH | 0.00078936 | ||||
| Approve | 19495264 | 718 days ago | IN | 0 ETH | 0.00091763 | ||||
| Mint | 19495043 | 718 days ago | IN | 0 ETH | 0.00481252 | ||||
| Redeem All | 18553650 | 850 days ago | IN | 0 ETH | 0.00358339 | ||||
| Redeem All | 18267933 | 890 days ago | IN | 0 ETH | 0.00244558 | ||||
| Redeem All | 17616212 | 981 days ago | IN | 0 ETH | 0.00356795 | ||||
| Approve | 17544678 | 991 days ago | IN | 0 ETH | 0.00044644 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Proxy
Compiler Version
v0.5.12+commit.7709ece9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-22
*/
pragma solidity ^0.5.0;
contract Proxy {
// Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
constructor(bytes memory constructData, address contractLogic) public {
// save the code address
assembly { // solium-disable-line
sstore(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7, contractLogic)
}
// solhint-disable-next-line avoid-low-level-calls
(bool success, /* bytes memory _*/ ) = contractLogic.delegatecall(constructData); // solium-disable-line
require(success, "Construction failed");
}
function() external payable {
assembly { // solium-disable-line
let contractLogic := sload(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7)
calldatacopy(0x0, 0x0, calldatasize)
let success := delegatecall(sub(gas, 10000), contractLogic, 0x0, calldatasize, 0, 0)
let retSz := returndatasize
returndatacopy(0, 0, retSz)
switch success
case 0 {
revert(0, retSz)
}
default {
return(0, retSz)
}
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"bytes","name":"constructData","type":"bytes"},{"internalType":"address","name":"contractLogic","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]Contract Creation Code
608060405234801561001057600080fd5b506040516102b43803806102b48339818101604052604081101561003357600080fd5b810190808051604051939291908464010000000082111561005357600080fd5b90830190602082018581111561006857600080fd5b825164010000000081118282018810171561008257600080fd5b82525081516020918201929091019080838360005b838110156100af578181015183820152602001610097565b50505050905090810190601f1680156100dc5780820380516001836020036101000a031916815260200191505b5060408190526020918201517fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf78190558551909450600093506001600160a01b0385169286929182918401908083835b6020831061014b5780518252601f19909201916020918201910161012c565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d80600081146101ab576040519150601f19603f3d011682016040523d82523d6000602084013e6101b0565b606091505b505090508061022057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f436f6e737472756374696f6e206661696c656400000000000000000000000000604482015290519081900360640190fd5b5050506083806102316000396000f3fe60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7543660008037600080366000846127105a03f43d806000803e818015604957816000f35b816000fdfea265627a7a7231582085ce0784d5e8231f306f6b034de58419a12aa810d1d857af267cf944aa565c8464736f6c634300050c00320000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cca383189750c3dfbbdcdb12ddecd130fd23485a0000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000001a952bd0b1c8bb986b6e2e51e9be86ef625bc7db00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7543660008037600080366000846127105a03f43d806000803e818015604957816000f35b816000fdfea265627a7a7231582085ce0784d5e8231f306f6b034de58419a12aa810d1d857af267cf944aa565c8464736f6c634300050c0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000cca383189750c3dfbbdcdb12ddecd130fd23485a0000000000000000000000000000000000000000000000000000000000000024c4d66de80000000000000000000000001a952bd0b1c8bb986b6e2e51e9be86ef625bc7db00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : constructData (bytes): 0xc4d66de80000000000000000000000001a952bd0b1c8bb986b6e2e51e9be86ef625bc7db
Arg [1] : contractLogic (address): 0xccA383189750c3DfBBDcdB12dDEcd130fd23485a
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000cca383189750c3dfbbdcdb12ddecd130fd23485a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [3] : c4d66de80000000000000000000000001a952bd0b1c8bb986b6e2e51e9be86ef
Arg [4] : 625bc7db00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$899.99
Net Worth in ETH
0.438606
Token Allocations
DAI
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.999988 | 900 | $899.99 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.