Pure package detail
grc721
gno.land/p/samcrew/grc721
Indexed deployment identity with independently loaded latest RPC source. Functions and Render are realm-only RPC capabilities.
Indexed deployment
Identity
- Package path
- gno.land/p/samcrew/grc721
- Block
- 100487
- Deployed (UTC)
- Transaction
- 3Mttq1292gOdQO2hbMzYtF4B3uNaa1QgcPTzZaMTkqo=
Latest RPC state
Source
package grc721
// IGRC2981 follows the Ethereum standard
type IGRC2981 interface {
// RoyaltyInfo retrieves royalty information for a tokenID and salePrice.
// It returns the payment address, royalty amount, and an error if any.
RoyaltyInfo(tokenID TokenID, salePrice int64) (address, int64, error)
}
// RoyaltyInfo represents royalty information for a token.
type RoyaltyInfo struct {
PaymentAddress address // PaymentAddress is the address where royalty payment should be sent.
Percentage int64 // Percentage is the royalty percentage. It indicates the percentage of royalty to be paid for each sale. For example : Percentage = 10 => 10%
}
The verified vm/qfuncs operation accepts realm paths only.
Pure packages expose source files but do not have Realm Render.