This commit is contained in:
aozhiwei 2023-07-22 20:56:19 +08:00
parent fc752b8a39
commit eb682da7ff

View File

@ -19,11 +19,12 @@ class Transfer extends BaseEventProcess {
await this.mint721Nft( await this.mint721Nft(
to, to,
tokenId, tokenId,
10, airDropMeta['item_id'],
bcconst.BC_NFT_HERO, bcconst.BC_NFT_HERO,
this.getContractAddress(), this.getContractAddress(),
this.getBlockNumber() this.getBlockNumber()
); );
await this.apiMint(airDropMeta);
} }
} }
@ -37,7 +38,7 @@ class Transfer extends BaseEventProcess {
await this.markOk(); await this.markOk();
} }
async apiMint() { async apiMint(airDropMeta) {
} }