@Kristoph Creator Token on Showtime.xyz
Verified contract
Active on
Base with 25 txns
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($4.62)
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
USDC | ERC-20 | 4.528 | $1.00 |
$4.53 | |
GRG | ERC-20 | 0.05 | $1.88 |
$0.09 |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 10430553 | 9 months ago | | | 0 | 0.000000007678520136 | |
| 10430549 | 9 months ago | | | 0 | 0.000000007902654858 | |
| 10430545 | 9 months ago | | | 0 | 0.000000007902654858 | |
| 10430541 | 9 months ago | | | 0 | 0.000000007906902309 | |
| 10430537 | 9 months ago | | | 0 | 0.000000008148026835 | |
| 10430530 | 9 months ago | | | 0 | 0.000000008148026835 | |
| 10430526 | 9 months ago | | | 0 | 0.000000008391002814 | |
| 10430522 | 9 months ago | | | 0 | 0.000000008391002814 | |
| 10430519 | 9 months ago | | | 0 | 0.000000008392963176 | |
| 10430515 | 9 months ago | | | 0 | 0.000000008647483509 |
ABI
ABI objects
Getter at block 22010807
ADMIN_FEE_BIPS() view returns (uint256)
300
BONDING_CURVE() view returns (address)
0x111b42bc001f62ada2312f258ab63b8219af3561
CREATOR_FEE_BIPS() view returns (uint256)
700
CREATOR_ROYALTY_BIPS() view returns (uint96)
1000
REFERRER() view returns (address)
0x0000000000000000000000000000000000000000
admin() view returns (address)
0x244312d5330debd654fe1f4e353badac730d7b3c
creator() view returns (address)
0xb3397a6feedff2b9fce9ca1086cb1bdd617c16bf
isPaused() view returns (bool)
false
lastId() view returns (uint256)
24
name() view returns (string)
@Kristoph Creator Token on Showtime.xyz
payToken() view returns (address)
0x833589fcd6edb6e08f4c7c32d4f71b54bda02913
priceToBuyNext() view returns (uint256 _tokenPrice, uint256 _creatorFee, uint256 _adminFee)
(_tokenPrice=1440000, _creatorFee=100800, _adminFee=43200)
priceToSellNext() view returns (uint256 _tokenPrice, uint256 _creatorFee, uint256 _adminFee)
(_tokenPrice=1281600, _creatorFee=89712, _adminFee=38448)
symbol() view returns (string)
SHOW
totalSupply() view returns (uint256)
5
Read-only
balanceOf(address owner) view returns (uint256)
calculateFees(uint256 _price) view returns (uint256 _creatorFee, uint256 _adminFee)
getApproved(uint256 tokenId) view returns (address)
isApprovedForAll(address owner, address operator) view returns (bool)
ownerOf(uint256 tokenId) view returns (address)
priceToBuyNext(uint256 _numOfTokens) view returns (uint256 _tokenPrice, uint256 _creatorFee, uint256 _adminFee)
priceToSellNext(uint256 _numOfTokens) view returns (uint256 _tokenPrice, uint256 _creatorFee, uint256 _adminFee)
royaltyInfo(uint256 tokenId, uint256 salePrice) view returns (address, uint256)
supportsInterface(bytes4 interfaceId) view returns (bool)
tokenURI(uint256) view returns (string)
State-modifying
Events approve(address to, uint256 tokenId)
bulkBuy(address _to, uint256 _numOfTokens, uint256 _maxPayment) returns (uint256 _totalPrice)
bulkBuy(uint256 _numOfTokens, uint256 _maxPayment) returns (uint256 _totalPrice)
bulkSell(uint256[] _tokenIds) returns (uint256 _netProceeds)
bulkSell(uint256[] _tokenIds, uint256 _minAcceptedPrice) returns (uint256 _netProceeds)
buy(address _to, uint256 _maxPayment) returns (uint256 _totalPrice)
buy(uint256 _maxPayment) returns (uint256 _totalPrice)
pause(bool _pauseState)
safeTransferFrom(address from, address to, uint256 tokenId)
safeTransferFrom(address from, address to, uint256 tokenId, bytes data)
sell(uint256 _tokenId) returns (uint256 _netProceeds)
sell(uint256 _tokenId, uint256 _minAcceptedPrice) returns (uint256 _netProceeds)
setApprovalForAll(address operator, bool approved)
transferFrom(address from, address to, uint256 tokenId)
updateAdmin(address _newAdmin)
updateCreator(address _newCreator)
updateTokenURI(string _newTokenURI)
AdminUpdated(address oldAdmin, address newAdmin)
Approval(address indexed owner, address indexed approved, uint256 indexed tokenId)
ApprovalForAll(address indexed owner, address indexed operator, bool approved)
Bought(address indexed payer, address indexed receiver, uint256 indexed tokenId, uint256 paymentAmount, uint256 creatorFee, uint256 adminFee)
CreatorUpdated(address oldCreator, address newCreator)
Sold(address indexed seller, uint256 indexed tokenId, uint256 salePrice, uint256 creatorFee, uint256 adminFee)
ToggledPause(bool oldPauseState, bool newPauseState, address caller)
TokenURIUpdated(string oldTokenURI, string newTokenURI)
Transfer(address indexed from, address indexed to, uint256 indexed tokenId)
constructor(string _name, string _symbol, string _tokenURI, address _creator, uint256 _creatorFee, uint96 _creatorRoyalty, address _admin, uint256 _adminFee, address _referrer, address _payToken, address _bondingCurve)
This contract contains no fallback and receive objects.
CreatorToken__AddressZeroNotAllowed()
CreatorToken__CallerIsNotOwner(uint256 tokenId, address owner, address caller)
CreatorToken__ContractIsPaused()
CreatorToken__LastTokensCannotBeSold(uint256 circulatingSupply)
CreatorToken__MaxFeeExceeded(uint256 fee, uint256 maxFee)
CreatorToken__MaxPaymentExceeded(uint256 price, uint256 maxPayment)
CreatorToken__MinAcceptedPriceExceeded(uint256 price, uint256 minAcceptedPrice)
CreatorToken__MinHoldingTimeNotReached(uint256 holdingTime, uint256 minHoldingTime)
CreatorToken__Unauthorized(bytes32 reason, address caller)