-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
public String _mint(Option option, Address to, BigInteger tokenId) throws Exception {
return this.account.call(option, this.contract, "_mint", new Type[]{to, new Uint256(tokenId)});
}
public String _mint(Option option, CfxAddress to, BigInteger tokenId) throws Exception {
return this._mint(option, to.getABIAddress(), tokenId);
}
public String _mint(Option option, String to, BigInteger tokenId) throws Exception {
return this._mint(option, new Address(to), tokenId);
}
中并没有我想要的参数
Metadata
Metadata
Assignees
Labels
No labels