Prefix used to store and identify contract standard metadata in the storage
Update extra metadata of the contract
Basic usage example:
Assume we need update the contract extra metadata with the new contract extra metadata object ContractExtraMeta
,
const persistent_nft_contract_metadata = new PersistentNFTContractMetadata();
persistent_nft_contract_metadata.update_extra( ContractExtraMeta );
updated contract extra metadata object
Update standard metadata of the contract
Basic usage example:
Assume we need update the contract standard metadata with the new contract standard metadata object ContractMeta
,
const persistent_nft_contract_metadata = new PersistentNFTContractMetadata();
persistent_nft_contract_metadata.update_standard( ContractMeta );
updated contract standard metadata object
Generated using TypeDoc
Prefix used to store and identify contract extra metadata in the storage