add filterName && nftPool test context
This commit is contained in:
@@ -74,6 +74,16 @@ export const DROPS_ERC1155 = "DropsERC1155"
|
||||
export const DROPS_FEE_MODEL = "DropsFeeModel"
|
||||
export const DROPS_PROXY = "DODODropsProxy"
|
||||
|
||||
export const DODO_NFT = "DODONFT"
|
||||
export const DODO_NFT_1155 = "DODONFT1155"
|
||||
|
||||
export const FILTER_ERC721_V1 = "FilterERC721"
|
||||
export const FILTER_ERC1155_V1 = "FilterERC1155"
|
||||
export const FILTER_ADMIN = "FilterAdmin"
|
||||
export const CONTROLLER = "Controller"
|
||||
export const DODO_NFT_APPROVE = "DODONFTApprove"
|
||||
export const DODO_NFT_POOL_PROXY = "DODONFTPoolProxy"
|
||||
|
||||
|
||||
interface ContractJson {
|
||||
abi: any;
|
||||
|
||||
111
test/utils/NFTPoolContext.ts
Normal file
111
test/utils/NFTPoolContext.ts
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
|
||||
Copyright 2021 DODO ZOO.
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
*/
|
||||
|
||||
import BigNumber from 'bignumber.js';
|
||||
import Web3 from 'web3';
|
||||
import { Contract } from 'web3-eth-contract';
|
||||
|
||||
import * as contracts from './Contracts';
|
||||
import { decimalStr, mweiStr } from './Converter';
|
||||
import { EVM, getDefaultWeb3 } from './EVM';
|
||||
import * as log from './Log';
|
||||
|
||||
BigNumber.config({
|
||||
EXPONENTIAL_AT: 1000,
|
||||
DECIMAL_PLACES: 80,
|
||||
});
|
||||
|
||||
|
||||
export class NFTPoolContext {
|
||||
EVM: EVM;
|
||||
Web3: Web3;
|
||||
|
||||
FilterAdmin: Contract;
|
||||
FilterERC721V1: Contract;
|
||||
FilterERC1155V1: Contract;
|
||||
Controller: Contract;
|
||||
DODONFTApprove: Contract;
|
||||
DODONFTPoolProxy: Contract;
|
||||
|
||||
//nft token
|
||||
DodoNft: Contract;
|
||||
DodoNft1155: Contract;
|
||||
|
||||
Deployer: string;
|
||||
Maintainer: string;
|
||||
SpareAccounts: string[];
|
||||
|
||||
constructor() { }
|
||||
|
||||
async init() {
|
||||
this.EVM = new EVM();
|
||||
this.Web3 = getDefaultWeb3();
|
||||
const allAccounts = await this.Web3.eth.getAccounts();
|
||||
this.Deployer = allAccounts[0];
|
||||
this.Maintainer = allAccounts[1];
|
||||
this.SpareAccounts = allAccounts.slice(2, 10);
|
||||
|
||||
|
||||
this.DodoNft = await contracts.newContract(contracts.DODO_NFT);
|
||||
this.DodoNft1155 = await contracts.newContract(contracts.DODO_NFT_1155);
|
||||
|
||||
await this.DodoNft.methods.init(this.Deployer, "DODONFT", "DODONFT").send(this.sendParam(this.Deployer));
|
||||
await this.DodoNft1155.methods.initOwner(this.Deployer).send(this.sendParam(this.Deployer));
|
||||
|
||||
var cloneFactory = await contracts.newContract(
|
||||
contracts.CLONE_FACTORY_CONTRACT_NAME
|
||||
);
|
||||
var filterAdminTemplate = await contracts.newContract(contracts.FILTER_ADMIN)
|
||||
var filterERC721V1Template = await contracts.newContract(contracts.FILTER_ERC721_V1)
|
||||
var filterERC1155V1Template = await contracts.newContract(contracts.FILTER_ERC1155_V1)
|
||||
|
||||
this.Controller = await contracts.newContract(contracts.CONTROLLER)
|
||||
await this.Controller.methods.initOwner(this.Deployer).send(this.sendParam(this.Deployer));
|
||||
|
||||
this.DODONFTApprove = await contracts.newContract(
|
||||
contracts.DODO_NFT_APPROVE
|
||||
);
|
||||
|
||||
this.DODONFTPoolProxy = await contracts.newContract(contracts.DODO_NFT_POOL_PROXY,
|
||||
[
|
||||
cloneFactory.options.address,
|
||||
filterAdminTemplate.options.address,
|
||||
this.Controller.options.address,
|
||||
this.Deployer,
|
||||
this.DODONFTApprove.options.address,
|
||||
"" //TODO:ERC721 => ERC20
|
||||
]
|
||||
)
|
||||
|
||||
await this.DODONFTPoolProxy.methods.initOwner(this.Deployer).send(this.sendParam(this.Deployer));
|
||||
await this.DODONFTPoolProxy.methods.setFilterTemplate(1, filterERC721V1Template.options.address).send(this.sendParam(this.Deployer));
|
||||
await this.DODONFTPoolProxy.methods.setFilterTemplate(2, filterERC1155V1Template.options.address).send(this.sendParam(this.Deployer));
|
||||
|
||||
await this.DODONFTApprove.methods.init(this.Deployer, [this.DODONFTPoolProxy.options.address]).send(this.sendParam(this.Deployer));
|
||||
|
||||
console.log(log.blueText("[Init NFTPool context]"));
|
||||
}
|
||||
|
||||
sendParam(sender, value = "0") {
|
||||
return {
|
||||
from: sender,
|
||||
gas: process.env["COVERAGE"] ? 10000000000 : 7000000,
|
||||
gasPrice: mweiStr("1000"),
|
||||
value: decimalStr(value),
|
||||
};
|
||||
}
|
||||
|
||||
async mintTestToken(to: string, token: Contract, amount: string) {
|
||||
await token.methods.mint(to, amount).send(this.sendParam(this.Deployer));
|
||||
}
|
||||
}
|
||||
|
||||
export async function getNFTPoolContext(weth: string): Promise<NFTPoolContext> {
|
||||
var context = new NFTPoolContext();
|
||||
await context.init();
|
||||
return context;
|
||||
}
|
||||
Reference in New Issue
Block a user