Polygon Sponsored slots available. Book your slot here!
Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x7dc2367c99c6b734bf225044c1ee8ec7b38d1b0dc5e21345d3f94c25f1809ddb | Set Basketball S... | 37169700 | 166 days 21 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 0.004341680441 | |
0xabd271380ba39f6e423d64939d5722ecf1b383d36288628b85b3e72a57c71558 | Setmemorabilia M... | 37169696 | 166 days 21 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 0.023434947005 | |
0x1e2957b3af9cd69abb7b8d8689db751b3942c89b74641b22549ad09bdea1602a | Set Tshirt Signe... | 37169694 | 166 days 21 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 0.005624983186 | |
0x2cf78f78398d5418e9fc0d558102851424ba7509e764c6e2ac2f58095150431e | Add Users | 37169683 | 166 days 21 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 0.00740186391 | |
0x6c6b7ccf80850b5e3a19f9fe0f3b6516d29884c5cfc15875ecba75452b633cc4 | Set Seed | 37146098 | 167 days 11 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 0.005744407833 | |
0x31b4df3bb57ad8d92e9d3b6384a74e469cdccc03bc0151e330368f87c9a01c6c | Add Users | 37146073 | 167 days 11 hrs ago | Lympo: Deployer | IN | 0xe0087fe82ff10f6a5b2ef0a074d91eacf3e2e9da | 0 MATIC | 1.200923660892 | |
0x5eaf692945a46248fd6b9702d51444f38bb0be621a134e8ca4c29eea463cd826 | 0x60806040 | 37145922 | 167 days 11 hrs ago | Lympo: Deployer | IN | Create: LKFRewardWinners | 0 MATIC | 0.057840342252 |
[ Download CSV Export ]
Contract Source Code Verified (Exact Match)
Contract Name:
LKFRewardWinners
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-12-22 */ /** *Submitted for verification at polygonscan.com on 2022-12-16 */ // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: contracts/LKFRewardWinners.sol contract LKFRewardWinners is Ownable { uint public seed; uint nonce; address[] public users; address[] public memorabiliaMedalsWinners; address public basketballSignedWinner; address public tshirtSignedWinner; function addUsers(address[] memory _users) public onlyOwner { for(uint i = 0; i < _users.length; i++) { users.push(_users[i]); } } function setmemorabiliaMedalsWinners() public onlyOwner { require(memorabiliaMedalsWinners.length == 0, "already set"); for(uint i = 0; i < 10; i ++) { nonce++; uint random = getRandom(); uint winnerId = random % users.length; memorabiliaMedalsWinners.push(users[winnerId]); } } function setBasketballSignedWinner() public onlyOwner { require(basketballSignedWinner == address(0), "already set"); nonce++; uint random = getRandom(); uint winnerId = random % users.length; basketballSignedWinner = users[winnerId]; } function setTshirtSignedWinner() public onlyOwner { require(tshirtSignedWinner == address(0), "already set"); nonce++; uint random = getRandom(); uint winnerId = random % users.length; tshirtSignedWinner = users[winnerId]; } function getRandom() public view returns (uint) { return uint(keccak256(abi.encodePacked(seed, nonce))); } function setSeed() public onlyOwner { require(seed == 0, "seed already set"); seed = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"_users","type":"address[]"}],"name":"addUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"basketballSignedWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRandom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"memorabiliaMedalsWinners","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setBasketballSignedWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTshirtSignedWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setmemorabiliaMedalsWinners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tshirtSignedWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"users","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108818061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80637d94792a1161008c578063bf12081d11610066578063bf12081d146101a2578063d7722472146101aa578063ed8bf6a3146101bd578063f2fde38b146101c557600080fd5b80637d94792a146101725780638da5cb5b14610189578063aacc5a171461019a57600080fd5b8063365b98b2116100c8578063365b98b21461013c57806343083f0e1461014f578063700c947414610157578063715018a61461016a57600080fd5b80631e0524fc146100ef578063307105041461011f5780633518c00b14610132575b600080fd5b6101026100fd366004610695565b6101d8565b6040516001600160a01b0390911681526020015b60405180910390f35b600654610102906001600160a01b031681565b61013a610202565b005b61010261014a366004610695565b6102db565b61013a6102eb565b61013a6101653660046106e0565b610368565b61013a6103e1565b61017b60015481565b604051908152602001610116565b6000546001600160a01b0316610102565b61017b6103f5565b61013a610427565b600554610102906001600160a01b031681565b61013a6104ce565b61013a6101d33660046107a5565b610575565b600481815481106101e857600080fd5b6000918252602090912001546001600160a01b0316905081565b61020a6105eb565b600454156102335760405162461bcd60e51b815260040161022a906107c7565b60405180910390fd5b60005b600a8110156102d8576002805490600061024f836107ec565b9190505550600061025e6103f5565b6003549091506000906102719083610813565b905060046003828154811061028857610288610835565b60009182526020808320909101548354600181018555938352912090910180546001600160a01b0319166001600160a01b03909216919091179055508190506102d0816107ec565b915050610236565b50565b600381815481106101e857600080fd5b6102f36105eb565b600154156103365760405162461bcd60e51b815260206004820152601060248201526f1cd9595908185b1c9958591e481cd95d60821b604482015260640161022a565b60408051446020820152429181019190915260600160408051601f198184030181529190528051602090910120600155565b6103706105eb565b60005b81518110156103dd57600382828151811061039057610390610835565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b03909216919091179055806103d5816107ec565b915050610373565b5050565b6103e96105eb565b6103f36000610645565b565b600154600254604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b61042f6105eb565b6006546001600160a01b0316156104585760405162461bcd60e51b815260040161022a906107c7565b60028054906000610468836107ec565b919050555060006104776103f5565b60035490915060009061048a9083610813565b90506003818154811061049f5761049f610835565b600091825260209091200154600680546001600160a01b0319166001600160a01b039092169190911790555050565b6104d66105eb565b6005546001600160a01b0316156104ff5760405162461bcd60e51b815260040161022a906107c7565b6002805490600061050f836107ec565b9190505550600061051e6103f5565b6003549091506000906105319083610813565b90506003818154811061054657610546610835565b600091825260209091200154600580546001600160a01b0319166001600160a01b039092169190911790555050565b61057d6105eb565b6001600160a01b0381166105e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161022a565b6102d881610645565b6000546001600160a01b031633146103f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161022a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156106a757600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b80356001600160a01b03811681146106db57600080fd5b919050565b600060208083850312156106f357600080fd5b823567ffffffffffffffff8082111561070b57600080fd5b818501915085601f83011261071f57600080fd5b813581811115610731576107316106ae565b8060051b604051601f19603f83011681018181108582111715610756576107566106ae565b60405291825284820192508381018501918883111561077457600080fd5b938501935b828510156107995761078a856106c4565b84529385019392850192610779565b98975050505050505050565b6000602082840312156107b757600080fd5b6107c0826106c4565b9392505050565b6020808252600b908201526a185b1c9958591e481cd95d60aa1b604082015260600190565b60006001820161080c57634e487b7160e01b600052601160045260246000fd5b5060010190565b60008261083057634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212208159b71ab5efecd7d923c05b30590feeb4cec6542ac528f8cf5a49b9b68b3abd64736f6c63430008110033
Deployed ByteCode Sourcemap
3710:1699:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3829:41;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;363:32:1;;;345:51;;333:2;318:18;3829:41:0;;;;;;;;3921:33;;;;;-1:-1:-1;;;;;3921:33:0;;;4137:368;;;:::i;:::-;;3798:22;;;;;;:::i;:::-;;:::i;5226:179::-;;;:::i;3963:166::-;;;;;;:::i;:::-;;:::i;2850:103::-;;;:::i;3756:16::-;;;;;;;;;1989:25:1;;;1977:2;1962:18;3756:16:0;1843:177:1;2202:87:0;2248:7;2275:6;-1:-1:-1;;;;;2275:6:0;2202:87;;5097:120;;;:::i;4811:278::-;;;:::i;3877:37::-;;;;;-1:-1:-1;;;;;3877:37:0;;;4513:290;;;:::i;3108:201::-;;;;;;:::i;:::-;;:::i;3829:41::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3829:41:0;;-1:-1:-1;3829:41:0;:::o;4137:368::-;2088:13;:11;:13::i;:::-;4212:24:::1;:31:::0;:36;4204:60:::1;;;;-1:-1:-1::0;;;4204:60:0::1;;;;;;;:::i;:::-;;;;;;;;;4279:6;4275:221;4295:2;4291:1;:6;4275:221;;;4320:5;:7:::0;;;:5:::1;:7;::::0;::::1;:::i;:::-;;;;;;4342:11;4356;:9;:11::i;:::-;4409:5;:12:::0;4342:25;;-1:-1:-1;4384:13:0::1;::::0;4400:21:::1;::::0;4342:25;4400:21:::1;:::i;:::-;4384:37;;4438:24;4468:5;4474:8;4468:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;4438:46;;4468:15;4438:46;::::1;::::0;;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4438:46:0::1;-1:-1:-1::0;;;;;4468:15:0;;::::1;4438:46:::0;;;::::1;::::0;;-1:-1:-1;4299:4:0;;-1:-1:-1;4299:4:0::1;::::0;::::1;:::i;:::-;;;;4275:221;;;;4137:368::o:0;3798:22::-;;;;;;;;;;;;5226:179;2088:13;:11;:13::i;:::-;5281:4:::1;::::0;:9;5273:38:::1;;;::::0;-1:-1:-1;;;5273:38:0;;3341:2:1;5273:38:0::1;::::0;::::1;3323:21:1::0;3380:2;3360:18;;;3353:30;-1:-1:-1;;;3399:18:1;;;3392:46;3455:18;;5273:38:0::1;3139:340:1::0;5273:38:0::1;5344:51;::::0;;5361:16:::1;5344:51;::::0;::::1;3641:19:1::0;5379:15:0::1;3676:12:1::0;;;3669:28;;;;3713:12;;5344:51:0::1;::::0;;-1:-1:-1;;5344:51:0;;::::1;::::0;;;;;;5334:62;;5344:51:::1;5334:62:::0;;::::1;::::0;5322:4:::1;:75:::0;5226:179::o;3963:166::-;2088:13;:11;:13::i;:::-;4038:6:::1;4034:88;4054:6;:13;4050:1;:17;4034:88;;;4089:5;4100:6;4107:1;4100:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;4089:21;;::::1;::::0;::::1;::::0;;-1:-1:-1;4089:21:0;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;4089:21:0::1;-1:-1:-1::0;;;;;4089:21:0;;::::1;::::0;;;::::1;::::0;;4069:3;::::1;::::0;::::1;:::i;:::-;;;;4034:88;;;;3963:166:::0;:::o;2850:103::-;2088:13;:11;:13::i;:::-;2915:30:::1;2942:1;2915:18;:30::i;:::-;2850:103::o:0;5097:120::-;5195:4;;5201:5;;5178:29;;;;;;;3641:19:1;;;;3676:12;;;3669:28;;;;5178:29:0;;;;;;;;;3713:12:1;;;;5178:29:0;;5168:40;;;;;;5097:120::o;4811:278::-;2088:13;:11;:13::i;:::-;4880:18:::1;::::0;-1:-1:-1;;;;;4880:18:0::1;:32:::0;4872:56:::1;;;;-1:-1:-1::0;;;4872:56:0::1;;;;;;;:::i;:::-;4939:5;:7:::0;;;:5:::1;:7;::::0;::::1;:::i;:::-;;;;;;4957:11;4971;:9;:11::i;:::-;5020:5;:12:::0;4957:25;;-1:-1:-1;4995:13:0::1;::::0;5011:21:::1;::::0;4957:25;5011:21:::1;:::i;:::-;4995:37;;5066:5;5072:8;5066:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;5045:18:::1;:36:::0;;-1:-1:-1;;;;;;5045:36:0::1;-1:-1:-1::0;;;;;5066:15:0;;::::1;5045:36:::0;;;::::1;::::0;;-1:-1:-1;;4811:278:0:o;4513:290::-;2088:13;:11;:13::i;:::-;4586:22:::1;::::0;-1:-1:-1;;;;;4586:22:0::1;:36:::0;4578:60:::1;;;;-1:-1:-1::0;;;4578:60:0::1;;;;;;;:::i;:::-;4649:5;:7:::0;;;:5:::1;:7;::::0;::::1;:::i;:::-;;;;;;4667:11;4681;:9;:11::i;:::-;4730:5;:12:::0;4667:25;;-1:-1:-1;4705:13:0::1;::::0;4721:21:::1;::::0;4667:25;4721:21:::1;:::i;:::-;4705:37;;4780:5;4786:8;4780:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;4755:22:::1;:40:::0;;-1:-1:-1;;;;;;4755:40:0::1;-1:-1:-1::0;;;;;4780:15:0;;::::1;4755:40:::0;;;::::1;::::0;;-1:-1:-1;;4513:290:0:o;3108:201::-;2088:13;:11;:13::i;:::-;-1:-1:-1;;;;;3197:22:0;::::1;3189:73;;;::::0;-1:-1:-1;;;3189:73:0;;3938:2:1;3189:73:0::1;::::0;::::1;3920:21:1::0;3977:2;3957:18;;;3950:30;4016:34;3996:18;;;3989:62;-1:-1:-1;;;4067:18:1;;;4060:36;4113:19;;3189:73:0::1;3736:402:1::0;3189:73:0::1;3273:28;3292:8;3273:18;:28::i;2367:132::-:0;2248:7;2275:6;-1:-1:-1;;;;;2275:6:0;833:10;2431:23;2423:68;;;;-1:-1:-1;;;2423:68:0;;4345:2:1;2423:68:0;;;4327:21:1;;;4364:18;;;4357:30;4423:34;4403:18;;;4396:62;4475:18;;2423:68:0;4143:356:1;3469:191:0;3543:16;3562:6;;-1:-1:-1;;;;;3579:17:0;;;-1:-1:-1;;;;;;3579:17:0;;;;;;3612:40;;3562:6;;;;;;;3612:40;;3543:16;3612:40;3532:128;3469:191;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;407:127::-;468:10;463:3;459:20;456:1;449:31;499:4;496:1;489:15;523:4;520:1;513:15;539:173;607:20;;-1:-1:-1;;;;;656:31:1;;646:42;;636:70;;702:1;699;692:12;636:70;539:173;;;:::o;717:1121::-;801:6;832:2;875;863:9;854:7;850:23;846:32;843:52;;;891:1;888;881:12;843:52;931:9;918:23;960:18;1001:2;993:6;990:14;987:34;;;1017:1;1014;1007:12;987:34;1055:6;1044:9;1040:22;1030:32;;1100:7;1093:4;1089:2;1085:13;1081:27;1071:55;;1122:1;1119;1112:12;1071:55;1158:2;1145:16;1180:2;1176;1173:10;1170:36;;;1186:18;;:::i;:::-;1232:2;1229:1;1225:10;1264:2;1258:9;1327:2;1323:7;1318:2;1314;1310:11;1306:25;1298:6;1294:38;1382:6;1370:10;1367:22;1362:2;1350:10;1347:18;1344:46;1341:72;;;1393:18;;:::i;:::-;1429:2;1422:22;1479:18;;;1513:15;;;;-1:-1:-1;1555:11:1;;;1551:20;;;1583:19;;;1580:39;;;1615:1;1612;1605:12;1580:39;1639:11;;;;1659:148;1675:6;1670:3;1667:15;1659:148;;;1741:23;1760:3;1741:23;:::i;:::-;1729:36;;1692:12;;;;1785;;;;1659:148;;;1826:6;717:1121;-1:-1:-1;;;;;;;;717:1121:1:o;2025:186::-;2084:6;2137:2;2125:9;2116:7;2112:23;2108:32;2105:52;;;2153:1;2150;2143:12;2105:52;2176:29;2195:9;2176:29;:::i;:::-;2166:39;2025:186;-1:-1:-1;;;2025:186:1:o;2216:335::-;2418:2;2400:21;;;2457:2;2437:18;;;2430:30;-1:-1:-1;;;2491:2:1;2476:18;;2469:41;2542:2;2527:18;;2216:335::o;2556:232::-;2595:3;2616:17;;;2613:140;;2675:10;2670:3;2666:20;2663:1;2656:31;2710:4;2707:1;2700:15;2738:4;2735:1;2728:15;2613:140;-1:-1:-1;2780:1:1;2769:13;;2556:232::o;2793:209::-;2825:1;2851;2841:132;;2895:10;2890:3;2886:20;2883:1;2876:31;2930:4;2927:1;2920:15;2958:4;2955:1;2948:15;2841:132;-1:-1:-1;2987:9:1;;2793:209::o;3007:127::-;3068:10;3063:3;3059:20;3056:1;3049:31;3099:4;3096:1;3089:15;3123:4;3120:1;3113:15
Swarm Source
ipfs://8159b71ab5efecd7d923c05b30590feeb4cec6542ac528f8cf5a49b9b68b3abd
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.