Skip to content

Commit 1e7d814

Browse files
feat(sdk-core): add subType param in ClaimRewardsOptions
linear: SC-5888
1 parent d0a28b1 commit 1e7d814

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

modules/sdk-core/src/bitgo/staking/iStakingWallet.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,22 @@ export interface TaoSwitchValidatorOptions extends SwitchValidatorOptions {
228228
}
229229

230230
export interface ClaimRewardsOptions {
231+
/**
232+
* amount of rewards to claim
233+
*/
231234
amount: string;
235+
/**
236+
* clientId
237+
*/
232238
clientId?: string;
239+
/**
240+
* delegationId
241+
*/
233242
delegationId?: string;
243+
/**
244+
* coin specific staking subtype
245+
*/
246+
subType?: string;
234247
}
235248

236249
export interface DelegationOptions {

0 commit comments

Comments
 (0)