Skip to content

在ERC721中铸造方法 #46

@wxiaofan

Description

@wxiaofan
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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions