More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 6,518 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 59314618 | 142 days ago | IN | 0 POL | 0.00321483 | ||||
Claim | 59314347 | 142 days ago | IN | 0 POL | 0.00079722 | ||||
Claim | 50889409 | 360 days ago | IN | 0 POL | 0.33057684 | ||||
Claim | 50889386 | 360 days ago | IN | 0 POL | 0.31775643 | ||||
Claim | 50889363 | 360 days ago | IN | 0 POL | 0.3497306 | ||||
Claim | 50416226 | 372 days ago | IN | 0 POL | 4.13744209 | ||||
Claim | 50415117 | 372 days ago | IN | 0 POL | 4.13792372 | ||||
Claim | 50414972 | 372 days ago | IN | 0 POL | 2.7662828 | ||||
Claim | 50414721 | 372 days ago | IN | 0 POL | 2.05297891 | ||||
Claim | 50414628 | 372 days ago | IN | 0 POL | 3.68629184 | ||||
Claim | 50409170 | 372 days ago | IN | 0 POL | 0.27056261 | ||||
Claim | 50409074 | 372 days ago | IN | 0 POL | 0.25699598 | ||||
Claim | 50409049 | 372 days ago | IN | 0 POL | 0.03086568 | ||||
Claim | 50405335 | 372 days ago | IN | 0 POL | 0.24556395 | ||||
Claim | 50341018 | 374 days ago | IN | 0 POL | 0.08320773 | ||||
Claim | 50340836 | 374 days ago | IN | 0 POL | 0.68992928 | ||||
Claim | 50321777 | 375 days ago | IN | 0 POL | 0.04851206 | ||||
Claim | 50321739 | 375 days ago | IN | 0 POL | 0.04829286 | ||||
Claim | 50308247 | 375 days ago | IN | 0 POL | 0.00397159 | ||||
Claim | 50308004 | 375 days ago | IN | 0 POL | 0.00312546 | ||||
Claim | 50296431 | 375 days ago | IN | 0 POL | 0.27598851 | ||||
Claim | 50197235 | 378 days ago | IN | 0 POL | 0.60379719 | ||||
Claim | 50197069 | 378 days ago | IN | 0 POL | 0.32520342 | ||||
Claim | 50196975 | 378 days ago | IN | 0 POL | 0.00172444 | ||||
Claim | 50139824 | 379 days ago | IN | 0 POL | 0.00419221 |
Loading...
Loading
Contract Name:
BulkBRC20Mint
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-11-16 */ // SPDX-License-Identifier: MIT // wx:LaLashousiBiangesh1 // claim方法 count是打的次数 inscription填 data:,{"p":"prc-20","op":"mint","tick":"pols","amt":"100000000"} pragma solidity ^0.7.0; contract BulkBRC20Mint { address owner; uint256 tax = 5; constructor() { owner = msg.sender; } modifier isOwner() { require(msg.sender == owner, "Caller is not owner"); _; } function changeTax(uint _tax) isOwner public { tax = _tax; } function claim(uint count,string calldata inscription) public { bytes memory inscriptionBytes = bytes(inscription); for (uint i = 0; i < count; i++) { if (i % tax == 0){ (bool sent, ) = msg.sender.call{value:0}(inscriptionBytes); require(sent, "Failed to send"); }else{ (bool sent, ) = msg.sender.call{value:0}(inscriptionBytes); require(sent, "Failed to send"); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"changeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"string","name":"inscription","type":"string"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600560015534801561001557600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104cb806100656000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063268b15ed1461003b5780633e45c8af146100be575b600080fd5b6100bc6004803603604081101561005157600080fd5b81019080803590602001909291908035906020019064010000000081111561007857600080fd5b82018360208201111561008a57600080fd5b803590602001918460018302840111640100000000831117156100ac57600080fd5b90919293919293905050506100ec565b005b6100ea600480360360208110156100d457600080fd5b81019080803590602001909291905050506103ca565b005b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905060005b848110156103c3576000600154828161014d57fe5b0614156102875760003373ffffffffffffffffffffffffffffffffffffffff166000846040518082805190602001908083835b602083106101a35780518252602082019150602081019050602083039250610180565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610205576040519150601f19603f3d011682016040523d82523d6000602084013e61020a565b606091505b5050905080610281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4661696c656420746f2073656e6400000000000000000000000000000000000081525060200191505060405180910390fd5b506103b6565b60003373ffffffffffffffffffffffffffffffffffffffff166000846040518082805190602001908083835b602083106102d657805182526020820191506020810190506020830392506102b3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610338576040519150601f19603f3d011682016040523d82523d6000602084013e61033d565b606091505b50509050806103b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4661696c656420746f2073656e6400000000000000000000000000000000000081525060200191505060405180910390fd5b505b8080600101915050610138565b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f43616c6c6572206973206e6f74206f776e65720000000000000000000000000081525060200191505060405180910390fd5b806001819055505056fea2646970667358221220245e6487cb7e882f8eee92b6f4223e2c7fafa6f7d973f898b78191dd9ef4e69364736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100365760003560e01c8063268b15ed1461003b5780633e45c8af146100be575b600080fd5b6100bc6004803603604081101561005157600080fd5b81019080803590602001909291908035906020019064010000000081111561007857600080fd5b82018360208201111561008a57600080fd5b803590602001918460018302840111640100000000831117156100ac57600080fd5b90919293919293905050506100ec565b005b6100ea600480360360208110156100d457600080fd5b81019080803590602001909291905050506103ca565b005b600082828080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905060005b848110156103c3576000600154828161014d57fe5b0614156102875760003373ffffffffffffffffffffffffffffffffffffffff166000846040518082805190602001908083835b602083106101a35780518252602082019150602081019050602083039250610180565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610205576040519150601f19603f3d011682016040523d82523d6000602084013e61020a565b606091505b5050905080610281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4661696c656420746f2073656e6400000000000000000000000000000000000081525060200191505060405180910390fd5b506103b6565b60003373ffffffffffffffffffffffffffffffffffffffff166000846040518082805190602001908083835b602083106102d657805182526020820191506020810190506020830392506102b3565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610338576040519150601f19603f3d011682016040523d82523d6000602084013e61033d565b606091505b50509050806103b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4661696c656420746f2073656e6400000000000000000000000000000000000081525060200191505060405180910390fd5b505b8080600101915050610138565b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f43616c6c6572206973206e6f74206f776e65720000000000000000000000000081525060200191505060405180910390fd5b806001819055505056fea2646970667358221220245e6487cb7e882f8eee92b6f4223e2c7fafa6f7d973f898b78191dd9ef4e69364736f6c63430007060033
Deployed Bytecode Sourcemap
204:848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528:521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;446:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;528:521;601:29;639:11;;601:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667:6;662:380;683:5;679:1;:9;662:380;;;725:1;718:3;;714:1;:7;;;;;;:12;710:307;;;747:9;762:10;:15;;784:1;787:16;762:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;746:58;;;831:4;823:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;710:307;;;;894:9;909:10;:15;;931:1;934:16;909:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;893:58;;;978:4;970:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;710:307;;690:3;;;;;;;662:380;;;;528:521;;;;:::o;446:74::-;389:5;;;;;;;;;;375:19;;:10;:19;;;367:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;508:4:::1;502:3;:10;;;;446:74:::0;:::o
Swarm Source
ipfs://245e6487cb7e882f8eee92b6f4223e2c7fafa6f7d973f898b78191dd9ef4e693
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.