File tree Expand file tree Collapse file tree
bitgo/test/v2/fixtures/staking
sdk-core/src/bitgo/staking Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ export default {
2121 finalizeGoStakingRequest : function ( coin : string , type : 'STAKE' | 'UNSTAKE' ) : GoStakingRequest {
2222 return {
2323 id : 'string' ,
24+ goAccountId : 'goAccountId' ,
2425 amount : '1' ,
2526 type : type ,
2627 coin : coin ,
2728 status : 'NEW' ,
28- goSpecificStatus : 'NEW' ,
2929 statusModifiedDate : '2025-01-03T22:04:29.264Z' ,
3030 createdDate : '2025-01-03T22:04:29.264Z' ,
3131 } ;
Original file line number Diff line number Diff line change @@ -13,16 +13,20 @@ interface FeeInfo {
1313
1414export interface GoStakingRequest {
1515 id : string ;
16- amount : string ;
1716 clientId ?: string ;
17+ goAccountId : string ;
18+ amount : string ;
1819 type : 'STAKE' | 'UNSTAKE' ;
1920 coin : string ;
2021 status : string ;
21- goSpecificStatus : string ;
2222 error ?: string ;
23- rawError ?: string ;
2423 statusModifiedDate : string ;
2524 createdDate : string ;
25+ properties ?: GoStakingRequestProperties ;
26+ }
27+
28+ interface GoStakingRequestProperties {
29+ amount : string ;
2630}
2731
2832export interface GoStakeOptions {
You can’t perform that action at this time.
0 commit comments