This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var web3 = require('@solana/web3.js'); | |
var splToken = require('@solana/spl-token'); | |
// 1. make a wallet | |
// 2. Airdrop | |
// 3. make a mint account | |
// 4. make a associated account | |
// 5. Mint to associated account | |
// -- Metadata | |
// 6. Create metadata account |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var web3 = require('@solana/web3.js'); | |
var splToken = require('@solana/spl-token'); | |
var metaplex = require('metaplex/metadatafull.js'); | |
// 1. make a wallet | |
// 2. Airdrop | |
// 3. make a mint account | |
// 4. make a associated account | |
// 5. Mint to associated account | |
// -- Metadata | |
// 6. Create metadata account |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.createMetadata = createMetadata; | |
exports.updateMetadata = updateMetadata; | |
exports.createMasterEdition = createMasterEdition; | |
exports.METADATA_SCHEMA = exports.Metadata = exports.Data = exports.Creator = exports.toPublicKey = exports.EDITION = void 0; |