@newcoin-foundation/newcoin-sdk
Version:
SDK for Newcoin blockchain
31 lines • 1.14 kB
JavaScript
export var default_schema = [
{ name: 'name', type: "string" },
{ name: 'description', type: "string" },
{ name: 'image', type: 'string' },
{ name: 'external_url', type: 'string' },
{ name: 'content_type', type: 'string' },
{ name: 'content', type: 'string' },
{ name: 'license', type: 'string' }
];
export var SBT_NFT_schema = [
{ name: 'name', type: "string" },
{ name: 'description', type: "string" },
{ name: 'image', type: 'string' },
{ name: 'type', type: 'string' },
{ name: 'issuer', type: 'string' },
{ name: 'recipient', type: 'string' },
{ name: 'quantifiers', type: 'string' },
{ name: 'signature', type: 'string' },
{ name: 'content', type: 'string' },
{ name: 'version', type: 'string' }
];
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
export var ERC721_schema = [
{ name: 'name', type: "string" },
{ name: 'description', type: "string" },
{ name: 'image', type: 'string' },
];
// https://docs.opensea.io/docs/metadata-standards
// export const OpenSea_schema = [
//]
//# sourceMappingURL=types.js.map