We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db7d638 commit 85d920bCopy full SHA for 85d920b
1 file changed
modules/sdk-core/src/bitgo/staking/goStakingInterfaces.ts
@@ -13,16 +13,20 @@ interface FeeInfo {
13
14
export interface GoStakingRequest {
15
id: string;
16
- amount: string;
17
clientId?: string;
+ goAccountId: string;
18
+ amount: string;
19
type: 'STAKE' | 'UNSTAKE';
20
coin: string;
21
status: string;
- goSpecificStatus: string;
22
error?: string;
23
- rawError?: string;
24
statusModifiedDate: string;
25
createdDate: string;
+ properties?: GoStakingRequestProperties;
26
+}
27
+
28
+interface GoStakingRequestProperties {
29
30
}
31
32
export interface GoStakeOptions {
0 commit comments