1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

refactor constants

This commit is contained in:
Miquel A. Cabot 2022-03-24 14:07:27 +01:00
parent e80edb8ab2
commit 65c1d2f493

View File

@ -25,6 +25,13 @@ describe('NFT', () => {
const FEE_ZERO = '0'
const CAP_AMOUNT = '10000'
const NFT_DATA: NftCreateData = {
name: NFT_NAME,
symbol: NFT_SYMBOL,
templateIndex: 1,
tokenURI: NFT_TOKEN_URI
}
before(async () => {
const accounts = await web3.eth.getAccounts()
nftOwner = accounts[0]
@ -39,14 +46,8 @@ describe('NFT', () => {
it('should initialize NFTFactory instance and create a new NFT', async () => {
nftFactory = new NftFactory(contracts.erc721FactoryAddress, web3)
const nftData: NftCreateData = {
name: NFT_NAME,
symbol: NFT_SYMBOL,
templateIndex: 1,
tokenURI: NFT_TOKEN_URI
}
nftAddress = await nftFactory.createNFT(nftOwner, nftData)
nftAddress = await nftFactory.createNFT(nftOwner, NFT_DATA)
nftDatatoken = new Nft(web3, ERC721Template.abi as AbiItem[])
})