Skip to content

Commit 7539dc6

Browse files
feat(babylonlabs-io-btc-staking-ts): index.ts
Expose the Staking class and staking utils for external use. Retry-Counter: 1 Issue: BTC-1826
1 parent 2ba822f commit 7539dc6

File tree

1 file changed

+12
-17
lines changed
  • modules/babylonlabs-io-btc-staking-ts/src

1 file changed

+12
-17
lines changed
Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
1-
export { StakingScriptData } from "./staking";
2-
export type { StakingScripts } from "./staking";
3-
export {
4-
ObservableStaking,
5-
ObservableStakingScriptData,
6-
} from "./staking/observable";
7-
export * from "./staking/transactions";
8-
export * from "./types";
9-
export * from "./utils/btc";
10-
export * from "./utils/utxo/findInputUTXO";
11-
export * from "./utils/utxo/getPsbtInputFields";
12-
export * from "./utils/utxo/getScriptType";
13-
export {
14-
getBabylonParamByBtcHeight,
15-
getBabylonParamByVersion,
16-
} from "./utils/staking/param";
17-
export * from "./staking/manager";
1+
export { StakingScriptData, Staking } from './staking';
2+
export type { StakingScripts } from './staking';
3+
export { ObservableStaking, ObservableStakingScriptData } from './staking/observable';
4+
export * from './staking/transactions';
5+
export * from './types';
6+
export * from './utils/btc';
7+
export * from './utils/staking';
8+
export * from './utils/utxo/findInputUTXO';
9+
export * from './utils/utxo/getPsbtInputFields';
10+
export * from './utils/utxo/getScriptType';
11+
export { getBabylonParamByBtcHeight, getBabylonParamByVersion } from './utils/staking/param';
12+
export * from './staking/manager';

0 commit comments

Comments
 (0)