1
- import { StacksNetwork } from "@stacks/network" ;
2
1
import {
3
2
AnchorMode ,
4
3
PostConditionMode ,
@@ -16,19 +15,22 @@ import { Contracts } from "../constants";
16
15
17
16
import { toBytes } from "@stacks/common" ;
18
17
import { decodeBtcAddress } from "@stacks/stacking" ;
19
- import { Account } from "./helpers" ;
18
+ import { Account , BroadcastOptions , BroadcastOptionsPox2 } from "./helpers" ;
20
19
const fetch = require ( "node-fetch" ) ;
21
20
22
21
export const broadcastDelegateSTX = async (
23
- poxVersion : number ,
24
- network : StacksNetwork ,
25
- account : Account ,
26
- fee : number ,
27
- nonce : number ,
28
- amount : number ,
29
- poolAddress : Account ,
30
- poolRewardAccount ?: Account ,
31
- untilBurnHeight ?: number
22
+ { poxVersion, network, account, fee, nonce } : BroadcastOptions ,
23
+ {
24
+ amount,
25
+ poolAddress,
26
+ poolRewardAccount,
27
+ untilBurnHeight,
28
+ } : {
29
+ amount : number ;
30
+ poolAddress : Account ;
31
+ poolRewardAccount ?: Account ;
32
+ untilBurnHeight ?: number ;
33
+ }
32
34
) : Promise < TxBroadcastResult > => {
33
35
let poxAddressCV ;
34
36
if ( poolRewardAccount ) {
@@ -69,13 +71,13 @@ export const broadcastDelegateSTX = async (
69
71
return result ;
70
72
} ;
71
73
72
- export const broadcastRevokeDelegateStx = async (
73
- poxVersion : number ,
74
- network : StacksNetwork ,
75
- account : Account ,
76
- fee : number ,
77
- nonce : number
78
- ) : Promise < TxBroadcastResult > => {
74
+ export const broadcastRevokeDelegateStx = async ( {
75
+ poxVersion,
76
+ network,
77
+ account,
78
+ fee,
79
+ nonce,
80
+ } : BroadcastOptions ) : Promise < TxBroadcastResult > => {
79
81
const txOptions = {
80
82
contractAddress : Contracts . POX_1 . address ,
81
83
contractName : poxVersion == 1 ? Contracts . POX_1 . name : Contracts . POX_2 . name ,
@@ -95,16 +97,20 @@ export const broadcastRevokeDelegateStx = async (
95
97
} ;
96
98
97
99
export const broadcastDelegateStackSTX = async (
98
- poxVersion : number ,
99
- network : StacksNetwork ,
100
- account : Account ,
101
- fee : number ,
102
- nonce : number ,
103
- stacker : Account ,
104
- amount : number ,
105
- poolRewardAccount : Account ,
106
- startBurnHeight : number ,
107
- lockPeriodCycles : number
100
+ { poxVersion, network, account, fee, nonce } : BroadcastOptions ,
101
+ {
102
+ stacker,
103
+ amount,
104
+ poolRewardAccount,
105
+ startBurnHeight,
106
+ lockPeriodCycles,
107
+ } : {
108
+ stacker : Account ;
109
+ amount : number ;
110
+ poolRewardAccount : Account ;
111
+ startBurnHeight : number ;
112
+ lockPeriodCycles : number ;
113
+ }
108
114
) : Promise < TxBroadcastResult > => {
109
115
const { version, data } = decodeBtcAddress ( poolRewardAccount . btcAddress ) ;
110
116
const poxAddress = {
@@ -137,14 +143,12 @@ export const broadcastDelegateStackSTX = async (
137
143
} ;
138
144
139
145
export const broadcastDelegateStackExtend = async (
140
- poxVersion : number ,
141
- network : StacksNetwork ,
142
- account : Account ,
143
- fee : number ,
144
- nonce : number ,
145
- stacker : Account ,
146
- poolRewardAccount : Account ,
147
- extendByCount : number
146
+ { poxVersion, network, account, fee, nonce } : BroadcastOptions ,
147
+ {
148
+ stacker,
149
+ poolRewardAccount,
150
+ extendByCount,
151
+ } : { stacker : Account ; poolRewardAccount : Account ; extendByCount : number }
148
152
) : Promise < TxBroadcastResult > => {
149
153
const { version, data } = decodeBtcAddress ( poolRewardAccount . btcAddress ) ;
150
154
const poxAddress = {
@@ -175,14 +179,16 @@ export const broadcastDelegateStackExtend = async (
175
179
} ;
176
180
177
181
export const broadcastDelegateStackIncrease = async (
178
- poxVersion : number ,
179
- network : StacksNetwork ,
180
- account : Account ,
181
- fee : number ,
182
- nonce : number ,
183
- stacker : Account ,
184
- poolRewardAccount : Account ,
185
- increaseByAmountUstx : number
182
+ { poxVersion, network, account, fee, nonce } : BroadcastOptions ,
183
+ {
184
+ stacker,
185
+ poolRewardAccount,
186
+ increaseByAmountUstx,
187
+ } : {
188
+ stacker : Account ;
189
+ poolRewardAccount : Account ;
190
+ increaseByAmountUstx : number ;
191
+ }
186
192
) : Promise < TxBroadcastResult > => {
187
193
const { version, data } = decodeBtcAddress ( poolRewardAccount . btcAddress ) ;
188
194
const poxAddress = {
@@ -225,13 +231,11 @@ export const broadcastDelegateStackIncrease = async (
225
231
* @returns
226
232
*/
227
233
export const broadcastStackAggregationCommitIndexed = async (
228
- poxVersion : number ,
229
- network : StacksNetwork ,
230
- account : Account ,
231
- fee : number ,
232
- nonce : number ,
233
- poolRewardAccount : Account ,
234
- cycleId : number
234
+ { poxVersion, network, account, fee, nonce } : BroadcastOptions ,
235
+ {
236
+ poolRewardAccount,
237
+ cycleId,
238
+ } : { poolRewardAccount : Account ; cycleId : number }
235
239
) : Promise < TxBroadcastResult > => {
236
240
const { version, data } = decodeBtcAddress ( poolRewardAccount . btcAddress ) ;
237
241
const poxAddress = {
@@ -261,13 +265,12 @@ export const broadcastStackAggregationCommitIndexed = async (
261
265
} ;
262
266
263
267
export const broadcastStackAggregationIncrease = async (
264
- network : StacksNetwork ,
265
- account : Account ,
266
- fee : number ,
267
- nonce : number ,
268
- poolRewardAccount : Account ,
269
- cycleId : number ,
270
- rewardIndex : number
268
+ { network, account, fee, nonce } : BroadcastOptionsPox2 ,
269
+ {
270
+ poolRewardAccount,
271
+ cycleId,
272
+ rewardIndex,
273
+ } : { poolRewardAccount : Account ; cycleId : number ; rewardIndex : number }
271
274
) : Promise < TxBroadcastResult > => {
272
275
const { version, data } = decodeBtcAddress ( poolRewardAccount . btcAddress ) ;
273
276
const poxAddress = {
0 commit comments