We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c88b71 commit bdfc90aCopy full SHA for bdfc90a
lib/firefly.ts
@@ -344,6 +344,10 @@ export default class FireFly extends HttpBase {
344
return this.getOne<FireFlyTokenPoolResponse>(`/tokens/pools/${nameOrId}`, options);
345
}
346
347
+ async deleteTokenPool(nameOrId: string, options?: FireFlyDeleteOptions) {
348
+ await this.deleteOne(`/tokens/pools/${nameOrId}`, options);
349
+ }
350
+
351
mintTokens(transfer: FireFlyTokenMintRequest, options?: FireFlyCreateOptions) {
352
return this.createOne<FireFlyTokenTransferResponse>('/tokens/mint', transfer, options);
353
0 commit comments