My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | ||
---|---|---|---|---|---|---|---|---|
0x3546e06385227d3789bdc34eb33acf0604ca2bae82adb33217e8137d1ae00897 | Set Ref | 37209610 | 275 days 13 hrs ago | 0x6a885bd0086368b56dbf2005bb72bbcc5fd7e2b9 | IN | Iron Bank: Band Protocol | 0 FTM | 0.143675 |
0x3832391b7df39a4870a52e5b08ec014fd63f15e8e60f909af64f488384174883 | Transfer Ownersh... | 37190120 | 275 days 19 hrs ago | 0xa78dea8ce0744960eacc14854edbcbaf18b219ed | IN | Iron Bank: Band Protocol | 0 FTM | 0.009915522007 |
0x5b49b8dc75a6c44f4831048ad960297f42d7366b24a884db8a49751a07b8fcd9 | Set Ref | 37190009 | 275 days 19 hrs ago | 0xa78dea8ce0744960eacc14854edbcbaf18b219ed | IN | Iron Bank: Band Protocol | 0 FTM | 0.008697945194 |
0xdf68df4856604214f60543cb8b107c48d8b65b020f1d875c23537a16e15d69c7 | 0x60806040 | 2217228 | 714 days 7 hrs ago | 0xa78dea8ce0744960eacc14854edbcbaf18b219ed | IN | Create: StdReferenceProxy | 0 FTM | 0.021351242 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xdf68df4856604214f60543cb8b107c48d8b65b020f1d875c23537a16e15d69c7 | 2217228 | 714 days 7 hrs ago | 0xa78dea8ce0744960eacc14854edbcbaf18b219ed | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
StdReferenceProxy
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-02-14 */ // SPDX-License-Identifier: Apache-2.0 pragma solidity 0.6.11; pragma experimental ABIEncoderV2; /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IStdReference { /// A structure returned whenever someone requests for standard reference data. struct ReferenceData { uint256 rate; // base/quote exchange rate, multiplied by 1e18. uint256 lastUpdatedBase; // UNIX epoch of the last time when base price gets updated. uint256 lastUpdatedQuote; // UNIX epoch of the last time when quote price gets updated. } /// Returns the price data for the given base/quote pair. Revert if not available. function getReferenceData(string memory _base, string memory _quote) external view returns (ReferenceData memory); /// Similar to getReferenceData, but with multiple base/quote pairs at once. function getReferenceDataBulk(string[] memory _bases, string[] memory _quotes) external view returns (ReferenceData[] memory); } abstract contract StdReferenceBase is IStdReference { function getReferenceData(string memory _base, string memory _quote) public virtual override view returns (ReferenceData memory); function getReferenceDataBulk(string[] memory _bases, string[] memory _quotes) public override view returns (ReferenceData[] memory) { require(_bases.length == _quotes.length, "BAD_INPUT_LENGTH"); uint256 len = _bases.length; ReferenceData[] memory results = new ReferenceData[](len); for (uint256 idx = 0; idx < len; idx++) { results[idx] = getReferenceData(_bases[idx], _quotes[idx]); } return results; } } contract StdReferenceProxy is Ownable, StdReferenceBase { IStdReference public ref; constructor(IStdReference _ref) public { ref = _ref; } /// Updates standard reference implementation. Only callable by the owner. function setRef(IStdReference _ref) public onlyOwner { ref = _ref; } /// Returns the price data for the given base/quote pair. Revert if not available. function getReferenceData(string memory _base, string memory _quote) public override view returns (ReferenceData memory) { return ref.getReferenceData(_base, _quote); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IStdReference","name":"_ref","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":"string","name":"_base","type":"string"},{"internalType":"string","name":"_quote","type":"string"}],"name":"getReferenceData","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_bases","type":"string[]"},{"internalType":"string[]","name":"_quotes","type":"string[]"}],"name":"getReferenceDataBulk","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ref","outputs":[{"internalType":"contract IStdReference","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IStdReference","name":"_ref","type":"address"}],"name":"setRef","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620011a4380380620011a483398181016040528101906200003791906200014e565b6000620000496200012f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001dc565b600033905090565b6000815190506200014881620001c2565b92915050565b6000602082840312156200016157600080fd5b6000620001718482850162000137565b91505092915050565b60006200018782620001a2565b9050919050565b60006200019b826200017a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b620001cd816200018e565b8114620001d957600080fd5b50565b610fb880620001ec6000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063715018a61161005b578063715018a6146100ec5780638da5cb5b146100f6578063e42a071b14610114578063f2fde38b146101445761007d565b806321a78f681461008257806365555bcc146100a05780636bc855cc146100d0575b600080fd5b61008a610160565b6040516100979190610cd5565b60405180910390f35b6100ba60048036038101906100b591906109bd565b610186565b6040516100c79190610d87565b60405180910390f35b6100ea60048036038101906100e59190610994565b610243565b005b6100f461031d565b005b6100fe610472565b60405161010b9190610c98565b60405180910390f35b61012e60048036038101906101299190610928565b61049b565b60405161013b9190610cb3565b60405180910390f35b61015e600480360381019061015991906108ff565b6105ab565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61018e610777565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365555bcc84846040518363ffffffff1660e01b81526004016101eb929190610cf0565b60606040518083038186803b15801561020357600080fd5b505afa158015610217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023b9190610a29565b905092915050565b61024b61076f565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146102d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d090610d67565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61032561076f565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146103b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103aa90610d67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606081518351146104e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d890610d27565b60405180910390fd5b60008351905060608167ffffffffffffffff8111801561050057600080fd5b5060405190808252806020026020018201604052801561053a57816020015b610527610777565b81526020019060019003908161051f5790505b50905060008090505b8281101561059f5761057b86828151811061055a57fe5b602002602001015186838151811061056e57fe5b6020026020010151610186565b82828151811061058757fe5b60200260200101819052508080600101915050610543565b50809250505092915050565b6105b361076f565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063890610d67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890610d47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b60405180606001604052806000815260200160008152602001600081525090565b6000813590506107a781610f3d565b92915050565b600082601f8301126107be57600080fd5b81356107d16107cc82610dcf565b610da2565b9150818183526020840193506020810190508360005b8381101561081757813586016107fd8882610836565b8452602084019350602083019250506001810190506107e7565b5050505092915050565b60008135905061083081610f54565b92915050565b600082601f83011261084757600080fd5b813561085a61085582610df7565b610da2565b9150808252602083016020830185838301111561087657600080fd5b610881838284610eea565b50505092915050565b60006060828403121561089c57600080fd5b6108a66060610da2565b905060006108b6848285016108ea565b60008301525060206108ca848285016108ea565b60208301525060406108de848285016108ea565b60408301525092915050565b6000815190506108f981610f6b565b92915050565b60006020828403121561091157600080fd5b600061091f84828501610798565b91505092915050565b6000806040838503121561093b57600080fd5b600083013567ffffffffffffffff81111561095557600080fd5b610961858286016107ad565b925050602083013567ffffffffffffffff81111561097e57600080fd5b61098a858286016107ad565b9150509250929050565b6000602082840312156109a657600080fd5b60006109b484828501610821565b91505092915050565b600080604083850312156109d057600080fd5b600083013567ffffffffffffffff8111156109ea57600080fd5b6109f685828601610836565b925050602083013567ffffffffffffffff811115610a1357600080fd5b610a1f85828601610836565b9150509250929050565b600060608284031215610a3b57600080fd5b6000610a498482850161088a565b91505092915050565b6000610a5e8383610c05565b60608301905092915050565b610a7381610e78565b82525050565b6000610a8482610e33565b610a8e8185610e56565b9350610a9983610e23565b8060005b83811015610aca578151610ab18882610a52565b9750610abc83610e49565b925050600181019050610a9d565b5085935050505092915050565b610ae081610ec6565b82525050565b6000610af182610e3e565b610afb8185610e67565b9350610b0b818560208601610ef9565b610b1481610f2c565b840191505092915050565b6000610b2c601083610e67565b91507f4241445f494e5055545f4c454e475448000000000000000000000000000000006000830152602082019050919050565b6000610b6c602683610e67565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610bd2602083610e67565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b606082016000820151610c1b6000850182610c89565b506020820151610c2e6020850182610c89565b506040820151610c416040850182610c89565b50505050565b606082016000820151610c5d6000850182610c89565b506020820151610c706020850182610c89565b506040820151610c836040850182610c89565b50505050565b610c9281610ebc565b82525050565b6000602082019050610cad6000830184610a6a565b92915050565b60006020820190508181036000830152610ccd8184610a79565b905092915050565b6000602082019050610cea6000830184610ad7565b92915050565b60006040820190508181036000830152610d0a8185610ae6565b90508181036020830152610d1e8184610ae6565b90509392505050565b60006020820190508181036000830152610d4081610b1f565b9050919050565b60006020820190508181036000830152610d6081610b5f565b9050919050565b60006020820190508181036000830152610d8081610bc5565b9050919050565b6000606082019050610d9c6000830184610c47565b92915050565b6000604051905081810181811067ffffffffffffffff82111715610dc557600080fd5b8060405250919050565b600067ffffffffffffffff821115610de657600080fd5b602082029050602081019050919050565b600067ffffffffffffffff821115610e0e57600080fd5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000610e8382610e9c565b9050919050565b6000610e9582610e78565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610ed182610ed8565b9050919050565b6000610ee382610e9c565b9050919050565b82818337600083830152505050565b60005b83811015610f17578082015181840152602081019050610efc565b83811115610f26576000848401525b50505050565b6000601f19601f8301169050919050565b610f4681610e78565b8114610f5157600080fd5b50565b610f5d81610e8a565b8114610f6857600080fd5b50565b610f7481610ebc565b8114610f7f57600080fd5b5056fea2646970667358221220f3f44a1aa2dab459c0efcba38f1606018c76b47142f5fef44b7e04a56c7e941a64736f6c634300060b00330000000000000000000000005bfab94ede2f4d911a6cc6d06fdf2d43ad3c7068
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005bfab94ede2f4d911a6cc6d06fdf2d43ad3c7068
-----Decoded View---------------
Arg [0] : _ref (address): 0x5bfab94ede2f4d911a6cc6d06fdf2d43ad3c7068
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005bfab94ede2f4d911a6cc6d06fdf2d43ad3c7068
Deployed ByteCode Sourcemap
4862:656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4925:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5292:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5114:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2645:148;;;:::i;:::-;;2005:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4336:519;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2948:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4925:24;;;;;;;;;;;;;:::o;5292:223::-;5427:20;;:::i;:::-;5472:3;;;;;;;;;;;:20;;;5493:5;5500:6;5472:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5465:42;;5292:223;;;;:::o;5114:82::-;2227:12;:10;:12::i;:::-;2217:22;;:6;;;;;;;;;;;:22;;;2209:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5184:4:::1;5178:3;;:10;;;;;;;;;;;;;;;;;;5114:82:::0;:::o;2645:148::-;2227:12;:10;:12::i;:::-;2217:22;;:6;;;;;;;;;;;:22;;;2209:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2752:1:::1;2715:40;;2736:6;::::0;::::1;;;;;;;;;2715:40;;;;;;;;;;;;2783:1;2766:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2645:148::o:0;2005:79::-;2043:7;2070:6;;;;;;;;;;;2063:13;;2005:79;:::o;4336:519::-;4481:22;4546:7;:14;4529:6;:13;:31;4521:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4592:11;4606:6;:13;4592:27;;4630:30;4683:3;4663:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;4630:57;;4703:11;4717:1;4703:15;;4698:125;4726:3;4720;:9;4698:125;;;4768:43;4785:6;4792:3;4785:11;;;;;;;;;;;;;;4798:7;4806:3;4798:12;;;;;;;;;;;;;;4768:16;:43::i;:::-;4753:7;4761:3;4753:12;;;;;;;;;;;;;:58;;;;4731:5;;;;;;;4698:125;;;;4840:7;4833:14;;;;4336:519;;;;:::o;2948:244::-;2227:12;:10;:12::i;:::-;2217:22;;:6;;;;;;;;;;;:22;;;2209:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3057:1:::1;3037:22;;:8;:22;;;;3029:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3147:8;3118:38;;3139:6;::::0;::::1;;;;;;;;;3118:38;;;;;;;;;;;;3176:8;3167:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2948:244:::0;:::o;645:106::-;698:15;733:10;726:17;;645:106;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130::-;;85:6;72:20;63:29;;97:33;124:5;97:33;:::i;:::-;57:78;;;;:::o;159:708::-;;286:3;279:4;271:6;267:17;263:27;253:2;;304:1;301;294:12;253:2;341:6;328:20;363:90;378:74;445:6;378:74;:::i;:::-;363:90;:::i;:::-;354:99;;470:5;495:6;488:5;481:21;525:4;517:6;513:17;503:27;;547:4;542:3;538:14;531:21;;600:6;633:1;618:243;643:6;640:1;637:13;618:243;;;726:3;713:17;705:6;701:30;750:47;793:3;781:10;750:47;:::i;:::-;745:3;738:60;821:4;816:3;812:14;805:21;;849:4;844:3;840:14;833:21;;675:186;665:1;662;658:9;653:14;;618:243;;;622:14;246:621;;;;;;;:::o;875:172::-;;976:6;963:20;954:29;;988:54;1036:5;988:54;:::i;:::-;948:99;;;;:::o;1055:442::-;;1157:3;1150:4;1142:6;1138:17;1134:27;1124:2;;1175:1;1172;1165:12;1124:2;1212:6;1199:20;1234:65;1249:49;1291:6;1249:49;:::i;:::-;1234:65;:::i;:::-;1225:74;;1319:6;1312:5;1305:21;1355:4;1347:6;1343:17;1388:4;1381:5;1377:16;1423:3;1414:6;1409:3;1405:16;1402:25;1399:2;;;1440:1;1437;1430:12;1399:2;1450:41;1484:6;1479:3;1474;1450:41;:::i;:::-;1117:380;;;;;;;:::o;1546:683::-;;1676:4;1664:9;1659:3;1655:19;1651:30;1648:2;;;1694:1;1691;1684:12;1648:2;1712:20;1727:4;1712:20;:::i;:::-;1703:29;;1782:1;1814:60;1870:3;1861:6;1850:9;1846:22;1814:60;:::i;:::-;1807:4;1800:5;1796:16;1789:86;1742:144;1947:2;1980:60;2036:3;2027:6;2016:9;2012:22;1980:60;:::i;:::-;1973:4;1966:5;1962:16;1955:86;1896:156;2114:2;2147:60;2203:3;2194:6;2183:9;2179:22;2147:60;:::i;:::-;2140:4;2133:5;2129:16;2122:86;2062:157;1642:587;;;;:::o;2236:134::-;;2320:6;2314:13;2305:22;;2332:33;2359:5;2332:33;:::i;:::-;2299:71;;;;:::o;2377:241::-;;2481:2;2469:9;2460:7;2456:23;2452:32;2449:2;;;2497:1;2494;2487:12;2449:2;2532:1;2549:53;2594:7;2585:6;2574:9;2570:22;2549:53;:::i;:::-;2539:63;;2511:97;2443:175;;;;:::o;2625:678::-;;;2816:2;2804:9;2795:7;2791:23;2787:32;2784:2;;;2832:1;2829;2822:12;2784:2;2895:1;2884:9;2880:17;2867:31;2918:18;2910:6;2907:30;2904:2;;;2950:1;2947;2940:12;2904:2;2970:88;3050:7;3041:6;3030:9;3026:22;2970:88;:::i;:::-;2960:98;;2846:218;3123:2;3112:9;3108:18;3095:32;3147:18;3139:6;3136:30;3133:2;;;3179:1;3176;3169:12;3133:2;3199:88;3279:7;3270:6;3259:9;3255:22;3199:88;:::i;:::-;3189:98;;3074:219;2778:525;;;;;:::o;3310:283::-;;3435:2;3423:9;3414:7;3410:23;3406:32;3403:2;;;3451:1;3448;3441:12;3403:2;3486:1;3503:74;3569:7;3560:6;3549:9;3545:22;3503:74;:::i;:::-;3493:84;;3465:118;3397:196;;;;:::o;3600:578::-;;;3741:2;3729:9;3720:7;3716:23;3712:32;3709:2;;;3757:1;3754;3747:12;3709:2;3820:1;3809:9;3805:17;3792:31;3843:18;3835:6;3832:30;3829:2;;;3875:1;3872;3865:12;3829:2;3895:63;3950:7;3941:6;3930:9;3926:22;3895:63;:::i;:::-;3885:73;;3771:193;4023:2;4012:9;4008:18;3995:32;4047:18;4039:6;4036:30;4033:2;;;4079:1;4076;4069:12;4033:2;4099:63;4154:7;4145:6;4134:9;4130:22;4099:63;:::i;:::-;4089:73;;3974:194;3703:475;;;;;:::o;4185:323::-;;4330:2;4318:9;4309:7;4305:23;4301:32;4298:2;;;4346:1;4343;4336:12;4298:2;4381:1;4398:94;4484:7;4475:6;4464:9;4460:22;4398:94;:::i;:::-;4388:104;;4360:138;4292:216;;;;:::o;4516:293::-;;4663:106;4765:3;4757:6;4663:106;:::i;:::-;4798:4;4793:3;4789:14;4775:28;;4656:153;;;;:::o;4817:113::-;4900:24;4918:5;4900:24;:::i;:::-;4895:3;4888:37;4882:48;;:::o;5022:930::-;;5227:84;5305:5;5227:84;:::i;:::-;5324:116;5433:6;5428:3;5324:116;:::i;:::-;5317:123;;5461:86;5541:5;5461:86;:::i;:::-;5567:7;5595:1;5580:350;5605:6;5602:1;5599:13;5580:350;;;5672:6;5666:13;5693:123;5812:3;5797:13;5693:123;:::i;:::-;5686:130;;5833:90;5916:6;5833:90;:::i;:::-;5823:100;;5637:293;5627:1;5624;5620:9;5615:14;;5580:350;;;5584:14;5943:3;5936:10;;5206:746;;;;;;;:::o;5960:168::-;6064:58;6116:5;6064:58;:::i;:::-;6059:3;6052:71;6046:82;;:::o;6135:347::-;;6247:39;6280:5;6247:39;:::i;:::-;6298:71;6362:6;6357:3;6298:71;:::i;:::-;6291:78;;6374:52;6419:6;6414:3;6407:4;6400:5;6396:16;6374:52;:::i;:::-;6447:29;6469:6;6447:29;:::i;:::-;6442:3;6438:39;6431:46;;6227:255;;;;;:::o;6490:316::-;;6650:67;6714:2;6709:3;6650:67;:::i;:::-;6643:74;;6750:18;6746:1;6741:3;6737:11;6730:39;6797:2;6792:3;6788:12;6781:19;;6636:170;;;:::o;6815:375::-;;6975:67;7039:2;7034:3;6975:67;:::i;:::-;6968:74;;7075:34;7071:1;7066:3;7062:11;7055:55;7144:8;7139:2;7134:3;7130:12;7123:30;7181:2;7176:3;7172:12;7165:19;;6961:229;;;:::o;7199:332::-;;7359:67;7423:2;7418:3;7359:67;:::i;:::-;7352:74;;7459:34;7455:1;7450:3;7446:11;7439:55;7522:2;7517:3;7513:12;7506:19;;7345:186;;;:::o;7618:653::-;7761:4;7756:3;7752:14;7844:4;7837:5;7833:16;7827:23;7856:63;7913:4;7908:3;7904:14;7890:12;7856:63;:::i;:::-;7781:144;8009:4;8002:5;7998:16;7992:23;8021:63;8078:4;8073:3;8069:14;8055:12;8021:63;:::i;:::-;7935:155;8175:4;8168:5;8164:16;8158:23;8187:63;8244:4;8239:3;8235:14;8221:12;8187:63;:::i;:::-;8100:156;7734:537;;;:::o;8357:663::-;8510:4;8505:3;8501:14;8593:4;8586:5;8582:16;8576:23;8605:63;8662:4;8657:3;8653:14;8639:12;8605:63;:::i;:::-;8530:144;8758:4;8751:5;8747:16;8741:23;8770:63;8827:4;8822:3;8818:14;8804:12;8770:63;:::i;:::-;8684:155;8924:4;8917:5;8913:16;8907:23;8936:63;8993:4;8988:3;8984:14;8970:12;8936:63;:::i;:::-;8849:156;8483:537;;;:::o;9027:103::-;9100:24;9118:5;9100:24;:::i;:::-;9095:3;9088:37;9082:48;;:::o;9137:222::-;;9264:2;9253:9;9249:18;9241:26;;9278:71;9346:1;9335:9;9331:17;9322:6;9278:71;:::i;:::-;9235:124;;;;:::o;9366:490::-;;9603:2;9592:9;9588:18;9580:26;;9653:9;9647:4;9643:20;9639:1;9628:9;9624:17;9617:47;9678:168;9841:4;9832:6;9678:168;:::i;:::-;9670:176;;9574:282;;;;:::o;9863:264::-;;10011:2;10000:9;9996:18;9988:26;;10025:92;10114:1;10103:9;10099:17;10090:6;10025:92;:::i;:::-;9982:145;;;;:::o;10134:509::-;;10329:2;10318:9;10314:18;10306:26;;10379:9;10373:4;10369:20;10365:1;10354:9;10350:17;10343:47;10404:78;10477:4;10468:6;10404:78;:::i;:::-;10396:86;;10530:9;10524:4;10520:20;10515:2;10504:9;10500:18;10493:48;10555:78;10628:4;10619:6;10555:78;:::i;:::-;10547:86;;10300:343;;;;;:::o;10650:416::-;;10850:2;10839:9;10835:18;10827:26;;10900:9;10894:4;10890:20;10886:1;10875:9;10871:17;10864:47;10925:131;11051:4;10925:131;:::i;:::-;10917:139;;10821:245;;;:::o;11073:416::-;;11273:2;11262:9;11258:18;11250:26;;11323:9;11317:4;11313:20;11309:1;11298:9;11294:17;11287:47;11348:131;11474:4;11348:131;:::i;:::-;11340:139;;11244:245;;;:::o;11496:416::-;;11696:2;11685:9;11681:18;11673:26;;11746:9;11740:4;11736:20;11732:1;11721:9;11717:17;11710:47;11771:131;11897:4;11771:131;:::i;:::-;11763:139;;11667:245;;;:::o;11919:342::-;;12106:2;12095:9;12091:18;12083:26;;12120:131;12248:1;12237:9;12233:17;12224:6;12120:131;:::i;:::-;12077:184;;;;:::o;12268:256::-;;12330:2;12324:9;12314:19;;12368:4;12360:6;12356:17;12467:6;12455:10;12452:22;12431:18;12419:10;12416:34;12413:62;12410:2;;;12488:1;12485;12478:12;12410:2;12508:10;12504:2;12497:22;12308:216;;;;:::o;12531:314::-;;12700:18;12692:6;12689:30;12686:2;;;12732:1;12729;12722:12;12686:2;12767:4;12759:6;12755:17;12747:25;;12830:4;12824;12820:15;12812:23;;12623:222;;;:::o;12852:322::-;;12996:18;12988:6;12985:30;12982:2;;;13028:1;13025;13018:12;12982:2;13095:4;13091:9;13084:4;13076:6;13072:17;13068:33;13060:41;;13159:4;13153;13149:15;13141:23;;12919:255;;;:::o;13181:181::-;;13297:3;13289:11;;13335:4;13330:3;13326:14;13318:22;;13283:79;;;:::o;13369:167::-;;13508:5;13502:12;13492:22;;13473:63;;;:::o;13543:122::-;;13637:5;13631:12;13621:22;;13602:63;;;:::o;13672:138::-;;13800:4;13795:3;13791:14;13783:22;;13777:33;;;:::o;13818:208::-;;13978:6;13973:3;13966:19;14015:4;14010:3;14006:14;13991:29;;13959:67;;;;:::o;14035:163::-;;14150:6;14145:3;14138:19;14187:4;14182:3;14178:14;14163:29;;14131:67;;;;:::o;14206:91::-;;14268:24;14286:5;14268:24;:::i;:::-;14257:35;;14251:46;;;:::o;14304:112::-;;14387:24;14405:5;14387:24;:::i;:::-;14376:35;;14370:46;;;:::o;14423:121::-;;14496:42;14489:5;14485:54;14474:65;;14468:76;;;:::o;14551:72::-;;14613:5;14602:16;;14596:27;;;:::o;14630:163::-;;14730:58;14782:5;14730:58;:::i;:::-;14717:71;;14711:82;;;:::o;14800:129::-;;14900:24;14918:5;14900:24;:::i;:::-;14887:37;;14881:48;;;:::o;14937:145::-;15018:6;15013:3;15008;14995:30;15074:1;15065:6;15060:3;15056:16;15049:27;14988:94;;;:::o;15091:268::-;15156:1;15163:101;15177:6;15174:1;15171:13;15163:101;;;15253:1;15248:3;15244:11;15238:18;15234:1;15229:3;15225:11;15218:39;15199:2;15196:1;15192:10;15187:15;;15163:101;;;15279:6;15276:1;15273:13;15270:2;;;15344:1;15335:6;15330:3;15326:16;15319:27;15270:2;15140:219;;;;:::o;15367:97::-;;15455:2;15451:7;15446:2;15439:5;15435:14;15431:28;15421:38;;15415:49;;;:::o;15472:117::-;15541:24;15559:5;15541:24;:::i;:::-;15534:5;15531:35;15521:2;;15580:1;15577;15570:12;15521:2;15515:74;:::o;15596:159::-;15686:45;15725:5;15686:45;:::i;:::-;15679:5;15676:56;15666:2;;15746:1;15743;15736:12;15666:2;15660:95;:::o;15762:117::-;15831:24;15849:5;15831:24;:::i;:::-;15824:5;15821:35;15811:2;;15870:1;15867;15860:12;15811:2;15805:74;:::o
Swarm Source
ipfs://f3f44a1aa2dab459c0efcba38f1606018c76b47142f5fef44b7e04a56c7e941a
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.