Create your NFT Art Gallery
import { ERC721Collectibles } from '@taikai/dappkit';
const erc721Collectibles = new ERC721Collectibles({
web3Host: 'WEB3_LINK',
});
await erc721Contract.start();
await erc721Collectibles.loadAbi();
// Deploy
const transactionReceipt = await erc721Collectibles.deployJsonAbi(
"Art | BEPRO",
"B.E.P.R.O",
1000,
"0xDAI_ADDRESS",
"0xPURCHASE_TOKEN",
"0xBASE_FEE_ADDRESS",
"0xOTHER_ADDRESS"
);
console.log(transactionReceipt);
Last updated