* Return the balance of the owner for the token class. * @param tokenClass the index of the token class. * @param owner the address of the owner. * @returns the balance of the owner for the token class.
(tokenClass: BigInt, owner: string)
| 111 | * @returns the balance of the owner for the token class. |
| 112 | */ |
| 113 | async getTokenOwnerBalance(tokenClass: BigInt, owner: string): Promise<BigInt> { |
| 114 | return await this.darcContract.getTokenOwnerBalance(tokenClass, owner); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Get the DARC plugins. |
no outgoing calls
no test coverage detected