增加1155获取余额的方法漏出
This commit is contained in:
parent
86822fcad9
commit
c1589f5b89
13
src/index.ts
13
src/index.ts
@ -581,6 +581,19 @@ export default class JCWallet {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async erc1155Balance(
|
||||||
|
address: string,
|
||||||
|
account: string,
|
||||||
|
tokenId: string
|
||||||
|
) {
|
||||||
|
let result = await this.erc1155Standard.getBalanceOf(
|
||||||
|
address,
|
||||||
|
account,
|
||||||
|
tokenId
|
||||||
|
);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
public async erc1155Info(address: string) {}
|
public async erc1155Info(address: string) {}
|
||||||
|
|
||||||
public async erc1155List(address: string, account?: string) {
|
public async erc1155List(address: string, account?: string) {
|
||||||
|
@ -93,7 +93,7 @@ export class ERC1155Standard {
|
|||||||
address: string,
|
address: string,
|
||||||
tokenId: string
|
tokenId: string
|
||||||
): Promise<number> => {
|
): Promise<number> => {
|
||||||
const contract = new this.web3.eth.Contract(abiERC1155, address);
|
const contract = new this.web3.eth.Contract(abiERC1155, contractAddress);
|
||||||
return new Promise<number>((resolve, reject) => {
|
return new Promise<number>((resolve, reject) => {
|
||||||
contract.methods.balanceOf(
|
contract.methods.balanceOf(
|
||||||
address,
|
address,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user