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.
2 parents fe1bb8e + e13d5da commit f7e90efCopy full SHA for f7e90ef
modules/sdk-core/src/bitgo/staking/iStakingWallet.ts
@@ -23,6 +23,16 @@ export interface DelegationRequest {
23
validator: string;
24
}
25
26
+export type CoredaoParams = {
27
+ expireAt: string;
28
+ rewardAddress: string;
29
+};
30
+
31
+export type BabylonParams = {
32
+ duration: string;
33
34
35
36
/**
37
* Represents the options for staking.
38
* @typedef {Object} StakeOptions
@@ -116,6 +126,18 @@ export interface StakeOptions {
116
126
*/
117
127
rewardAddress?: string;
118
128
129
+ /**
130
+ * btc babylon staking params
131
+ */
132
133
+ babylon?: BabylonParams;
134
135
136
+ * btc coredao staking params
137
138
139
+ coredao?: CoredaoParams;
140
119
141
120
142
* ada vote delegation drep id
121
143
0 commit comments