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 5e27a5c + cddf32c commit 98994d1Copy full SHA for 98994d1
modules/sdk-core/src/bitgo/lightning/codecs.ts
@@ -173,3 +173,23 @@ export const LndGetBalancesResponse = t.strict(
173
);
174
175
export type LndGetBalancesResponse = t.TypeOf<typeof LndGetBalancesResponse>;
176
+
177
+export const ChanPoints = t.strict(
178
+ {
179
+ fundingTxid: t.string,
180
+ outputIndex: t.number,
181
+ },
182
+ 'ChanPoints'
183
+);
184
185
+export type ChanPoints = t.TypeOf<typeof ChanPoints>;
186
187
+export const BackupResponse = t.strict(
188
189
+ chanPoints: t.array(ChanPoints),
190
+ multiChanBackup: t.string,
191
192
+ 'BackupResponse'
193
194
195
+export type BackupResponse = t.TypeOf<typeof BackupResponse>;
0 commit comments