From 7c30c9b6dda8014575ba4f34f59fc4844c0ffe7a Mon Sep 17 00:00:00 2001 From: dtfiedler Date: Thu, 14 Nov 2024 14:25:41 -0600 Subject: [PATCH] fix(io): add `getDelegations` to `AoIORead` --- src/types/io.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/io.ts b/src/types/io.ts index 32eeda0c..d135ab9a 100644 --- a/src/types/io.ts +++ b/src/types/io.ts @@ -363,6 +363,9 @@ export interface AoIORead { getGateways( params?: PaginationParams, ): Promise>; + getDelegations( + params: PaginationParams & { address: WalletAddress }, + ): Promise>; getBalance(params: { address: WalletAddress }): Promise; getBalances( params?: PaginationParams,