ApproveEvent
Class: ApproveEvent
Properties overview
Defined in: packages/nft/src/interfaces/events.ts:51
Emitted when an NFT's approved address is updated.
Extends
- {
approved
:PublicKey
;
nftAddress
:PublicKey
;
}
Constructors
new ApproveEvent()
new ApproveEvent(value: {
approved: PublicKey;
nftAddress: PublicKey;
}): ApproveEvent
Defined in: node_modules/o1js/dist/node/lib/provable/types/struct.d.ts:103
Parameters
value
approved
PublicKey
= PublicKey
The public key of the approved address.
nftAddress
PublicKey
= PublicKey
The public key address of the NFT.
Returns
Inherited from
Struct({
/ The public key address of the NFT. /
nftAddress: PublicKey,
/ The public key of the approved address. /
approved: PublicKey,
}).constructor
Properties
approved
approved: PublicKey = PublicKey;
Defined in: packages/nft/src/interfaces/events.ts:55
The public key of the approved address.
Inherited from
Struct({
/ The public key address of the NFT. /
nftAddress: PublicKey,
/ The public key of the approved address. /
approved: PublicKey,
}).approved
nftAddress
nftAddress: PublicKey = PublicKey;
Defined in: packages/nft/src/interfaces/events.ts:53
The public key address of the NFT.
Inherited from
Struct({
/ The public key address of the NFT. /
nftAddress: PublicKey,
/ The public key of the approved address. /
approved: PublicKey,
}).nftAddress
Updated 10 days ago