@silvana-one/nft
Version:
Mina NFT library
12 lines • 304 B
JavaScript
import { PublicKey, Struct } from "o1js";
/**
* Event emitted when the ownership of the contract changes.
*
* Contains the old owner's and new owner's public keys.
*/
export class OwnershipChangeEvent extends Struct({
from: PublicKey,
to: PublicKey,
}) {
}
//# sourceMappingURL=ownable.js.map