Skip to content

Commit 0dd62ad

Browse files
committed
feat: refactor broadcast helper functions, upgrade deps
1 parent cbe6949 commit 0dd62ad

18 files changed

+269
-348
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"@scure/bip32": "^1.1.1",
1818
"@scure/bip39": "^1.1.0",
1919
"@stacks/common": "^6.0.0",
20-
"@stacks/network": "^6.0.0",
21-
"@stacks/stacking": "^6.0.0",
22-
"@stacks/transactions": "^6.0.0",
20+
"@stacks/network": "^6.3.0",
21+
"@stacks/stacking": "^6.0.2",
22+
"@stacks/transactions": "^6.5.0",
2323
"@types/node": "^16.7.13",
2424
"micro-btc-signer": "^0.2.0",
2525
"node-fetch": "^2.6.7",

tests/integration/clarity/natives/get-burn-block-info.spec.ts

+10-9
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ import {
1111
import { StacksNetwork, StacksTestnet } from "@stacks/network";
1212
import { Accounts, Constants } from "../../constants";
1313
import { DevnetNetworkOrchestrator } from "@hirosystems/stacks-devnet-js";
14-
import { broadcastStackSTX, waitForNextRewardPhase } from "../../pox/helpers";
14+
import { waitForNextRewardPhase } from "../../pox/helpers";
1515
import {
1616
buildDevnetNetworkOrchestrator,
1717
getBitcoinBlockHeight,
1818
waitForStacksTransaction,
1919
getNetworkIdFromEnv,
2020
getChainInfo,
2121
} from "../../helpers";
22+
import { broadcastStackSTX } from "../../pox/helpers-direct-stacking";
2223

2324
describe("get-burn-block-info?", () => {
2425
let orchestrator: DevnetNetworkOrchestrator;
@@ -171,14 +172,14 @@ describe("get-burn-block-info?", () => {
171172

172173
// Broadcast some STX stacking orders
173174
let response = await broadcastStackSTX(
174-
2,
175-
network,
176-
90_000_000_000_000,
177-
Accounts.WALLET_1,
178-
blockHeight,
179-
12,
180-
1000,
181-
1
175+
{
176+
poxVersion: 2,
177+
network,
178+
account: Accounts.WALLET_1,
179+
fee: 1000,
180+
nonce: 1,
181+
},
182+
{ amount: 90_000_000_000_000, blockHeight, cycles: 12 }
182183
);
183184
expect(response.error).toBeUndefined();
184185

tests/integration/clarity/natives/stx-account.spec.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { StacksNetwork, StacksTestnet } from "@stacks/network";
1111
import { Accounts, Constants } from "../../constants";
1212
import { DevnetNetworkOrchestrator } from "@hirosystems/stacks-devnet-js";
1313
import {
14-
broadcastStackSTX,
1514
getPoxInfo,
1615
waitForNextPreparePhase,
1716
waitForNextRewardPhase,
@@ -24,6 +23,7 @@ import {
2423
getChainInfo,
2524
} from "../../helpers";
2625
import { principalCV } from "@stacks/transactions/dist/clarity/types/principalCV";
26+
import { broadcastStackSTX } from "../../pox/helpers-direct-stacking";
2727

2828
describe("stx-account", () => {
2929
let orchestrator: DevnetNetworkOrchestrator;
@@ -337,14 +337,14 @@ describe("stx-account", () => {
337337
// Broadcast some STX stacking orders
338338
let cycles = 12;
339339
let response = await broadcastStackSTX(
340-
2,
341-
network,
342-
25_000_000_000_000,
343-
Accounts.WALLET_1,
344-
blockHeight,
345-
cycles,
346-
1000,
347-
5
340+
{
341+
poxVersion: 2,
342+
network,
343+
account: Accounts.WALLET_1,
344+
fee: 1000,
345+
nonce: 1,
346+
},
347+
{ amount: 25_000_000_000_000, blockHeight, cycles: 5 }
348348
);
349349
expect(response.error).toBeUndefined();
350350

tests/integration/consensus/transaction-fee.spec.ts

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,24 @@
1+
import { DevnetNetworkOrchestrator } from "@hirosystems/stacks-devnet-js";
2+
import { StacksNetwork, StacksTestnet } from "@stacks/network";
13
import {
2-
makeContractDeploy,
3-
broadcastTransaction,
44
AnchorMode,
5+
ClarityValue,
6+
ClarityVersion,
57
PostConditionMode,
68
TxBroadcastResultOk,
7-
makeContractCall,
8-
SignedContractCallOptions,
9-
ClarityVersion,
10-
ClarityValue,
11-
createLPString,
9+
broadcastTransaction,
1210
contractPrincipalCV,
11+
makeContractCall,
12+
makeContractDeploy,
1313
} from "@stacks/transactions";
14-
import { StacksNetwork, StacksTestnet } from "@stacks/network";
14+
import { afterAll, beforeAll, describe, expect, it } from "vitest";
1515
import { Accounts, Constants } from "../constants";
16-
import { getAccount, expectAccountToBe } from "../pox/helpers";
17-
import { principalCV } from "@stacks/transactions/dist/clarity/types/principalCV";
1816
import {
1917
buildDevnetNetworkOrchestrator,
20-
getNetworkIdFromCtx,
18+
getNetworkIdFromEnv,
2119
waitForStacksTransaction,
2220
} from "../helpers";
23-
import { DevnetNetworkOrchestrator } from "@hirosystems/stacks-devnet-js";
24-
import { describe, expect, it, test, beforeAll, afterAll } from "vitest";
21+
import { expectAccountToBe, getAccount } from "../pox/helpers";
2522

2623
const CONTRACT_TRAIT = `
2724
(define-trait foo
@@ -52,7 +49,7 @@ describe("transaction-fee", () => {
5249
let orchestrator: DevnetNetworkOrchestrator;
5350

5451
beforeAll(async (ctx) => {
55-
orchestrator = buildDevnetNetworkOrchestrator(getNetworkIdFromCtx(ctx.id));
52+
orchestrator = buildDevnetNetworkOrchestrator(getNetworkIdFromEnv());
5653
orchestrator.start();
5754
});
5855

tests/integration/pox/helpers-direct-stacking.ts

+5-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Contracts } from "../constants";
1313

1414
import { toBytes } from "@stacks/common";
1515
import { decodeBtcAddress } from "@stacks/stacking";
16-
import { Account, BroadcastOptions } from "./helpers";
16+
import { Account, BroadcastOptions, BroadcastOptionsPox2 } from "./helpers";
1717
const fetch = require("node-fetch");
1818

1919
export const broadcastStackSTX = async (
@@ -54,11 +54,8 @@ export const broadcastStackSTX = async (
5454
};
5555

5656
export const broadcastStackIncrease = async (
57-
network: StacksNetwork,
58-
amount: number,
59-
account: Account,
60-
fee: number,
61-
nonce: number
57+
{ network, account, fee, nonce }: BroadcastOptionsPox2,
58+
{ amount }: { amount: number }
6259
): Promise<TxBroadcastResult> => {
6360
const txOptions = {
6461
contractAddress: Contracts.POX_2.address,
@@ -79,11 +76,8 @@ export const broadcastStackIncrease = async (
7976
};
8077

8178
export const broadcastStackExtend = async (
82-
network: StacksNetwork,
83-
account: Account,
84-
cycles: number,
85-
fee: number,
86-
nonce: number
79+
{ network, account, fee, nonce }: BroadcastOptionsPox2,
80+
{ cycles }: { cycles: number }
8781
): Promise<TxBroadcastResult> => {
8882
const { version, data } = decodeBtcAddress(account.btcAddress);
8983
const address = {

tests/integration/pox/helpers-pooled-stacking.ts

+61-58
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { StacksNetwork } from "@stacks/network";
21
import {
32
AnchorMode,
43
PostConditionMode,
@@ -16,19 +15,22 @@ import { Contracts } from "../constants";
1615

1716
import { toBytes } from "@stacks/common";
1817
import { decodeBtcAddress } from "@stacks/stacking";
19-
import { Account } from "./helpers";
18+
import { Account, BroadcastOptions, BroadcastOptionsPox2 } from "./helpers";
2019
const fetch = require("node-fetch");
2120

2221
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+
}
3234
): Promise<TxBroadcastResult> => {
3335
let poxAddressCV;
3436
if (poolRewardAccount) {
@@ -69,13 +71,13 @@ export const broadcastDelegateSTX = async (
6971
return result;
7072
};
7173

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> => {
7981
const txOptions = {
8082
contractAddress: Contracts.POX_1.address,
8183
contractName: poxVersion == 1 ? Contracts.POX_1.name : Contracts.POX_2.name,
@@ -95,16 +97,20 @@ export const broadcastRevokeDelegateStx = async (
9597
};
9698

9799
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+
}
108114
): Promise<TxBroadcastResult> => {
109115
const { version, data } = decodeBtcAddress(poolRewardAccount.btcAddress);
110116
const poxAddress = {
@@ -137,14 +143,12 @@ export const broadcastDelegateStackSTX = async (
137143
};
138144

139145
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 }
148152
): Promise<TxBroadcastResult> => {
149153
const { version, data } = decodeBtcAddress(poolRewardAccount.btcAddress);
150154
const poxAddress = {
@@ -175,14 +179,16 @@ export const broadcastDelegateStackExtend = async (
175179
};
176180

177181
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+
}
186192
): Promise<TxBroadcastResult> => {
187193
const { version, data } = decodeBtcAddress(poolRewardAccount.btcAddress);
188194
const poxAddress = {
@@ -225,13 +231,11 @@ export const broadcastDelegateStackIncrease = async (
225231
* @returns
226232
*/
227233
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 }
235239
): Promise<TxBroadcastResult> => {
236240
const { version, data } = decodeBtcAddress(poolRewardAccount.btcAddress);
237241
const poxAddress = {
@@ -261,13 +265,12 @@ export const broadcastStackAggregationCommitIndexed = async (
261265
};
262266

263267
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 }
271274
): Promise<TxBroadcastResult> => {
272275
const { version, data } = decodeBtcAddress(poolRewardAccount.btcAddress);
273276
const poxAddress = {

tests/integration/pox/helpers.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ export interface Account {
3333
secretKey: string;
3434
}
3535

36-
export interface BroadcastOptions {
37-
poxVersion: number;
36+
export interface BroadcastOptionsPox2 {
3837
network: StacksNetwork;
3938
account: Account;
4039
fee: number;
4140
nonce: number;
4241
}
42+
export interface BroadcastOptions extends BroadcastOptionsPox2 {
43+
poxVersion: number;
44+
}
4345

4446
const delay = () => new Promise((resolve) => setTimeout(resolve, 3000));
4547

0 commit comments

Comments
 (0)