|
| 1 | +import { DevnetNetworkOrchestrator } from "@hirosystems/stacks-devnet-js"; |
| 2 | +import { StacksTestnet } from "@stacks/network"; |
| 3 | +import { |
| 4 | + SomeCV, |
| 5 | + TupleCV, |
| 6 | + UIntCV, |
| 7 | + cvToString, |
| 8 | + hexToCV, |
| 9 | +} from "@stacks/transactions"; |
| 10 | +import { Accounts } from "../../constants"; |
| 11 | +import { |
| 12 | + buildDevnetNetworkOrchestrator, |
| 13 | + getNetworkIdFromEnv, |
| 14 | + waitForStacksTransaction, |
| 15 | +} from "../../helpers"; |
| 16 | +import { |
| 17 | + getPoxInfo, |
| 18 | + readRewardCyclePoxAddressList, |
| 19 | + waitForNextRewardPhase, |
| 20 | +} from "../helpers"; |
| 21 | +import { |
| 22 | + broadcastStackIncrease, |
| 23 | + broadcastStackSTX, |
| 24 | +} from "../helpers-direct-stacking"; |
| 25 | + |
| 26 | +describe("testing solo stacker increase without bug", () => { |
| 27 | + let orchestrator: DevnetNetworkOrchestrator; |
| 28 | + let timeline = { |
| 29 | + epoch_2_0: 100, |
| 30 | + epoch_2_05: 102, |
| 31 | + epoch_2_1: 106, |
| 32 | + pox_2_activation: 109, |
| 33 | + }; |
| 34 | + |
| 35 | + beforeAll(() => { |
| 36 | + orchestrator = buildDevnetNetworkOrchestrator(getNetworkIdFromEnv()); |
| 37 | + orchestrator.start(); |
| 38 | + }); |
| 39 | + |
| 40 | + afterAll(() => { |
| 41 | + orchestrator.terminate(); |
| 42 | + }); |
| 43 | + |
| 44 | + it("using stacks-increase in the same cycle should result in increased rewards", async () => { |
| 45 | + const network = new StacksTestnet({ url: orchestrator.getStacksNodeUrl() }); |
| 46 | + |
| 47 | + // Wait for Stacks genesis block |
| 48 | + await orchestrator.waitForNextStacksBlock(); |
| 49 | + // Wait for block N+1 where N is the height of the next reward phase |
| 50 | + await waitForNextRewardPhase(network, orchestrator, 1); |
| 51 | + |
| 52 | + const blockHeight = timeline.pox_2_activation + 1; |
| 53 | + const fee = 1000; |
| 54 | + const cycles = 1; |
| 55 | + |
| 56 | + // Alice stacks 900m (1/4 of liquid suply) |
| 57 | + let response = await broadcastStackSTX( |
| 58 | + 2, |
| 59 | + network, |
| 60 | + 900_000_000_000_001, |
| 61 | + Accounts.FAUCET, |
| 62 | + blockHeight, |
| 63 | + cycles, |
| 64 | + fee, |
| 65 | + 0 |
| 66 | + ); |
| 67 | + expect(response.error).toBeUndefined(); |
| 68 | + |
| 69 | + // let Alice's stacking confirm to enforce reward index 0 |
| 70 | + await waitForStacksTransaction(orchestrator, response.txid); |
| 71 | + |
| 72 | + // Bob stacks 80m |
| 73 | + response = await broadcastStackSTX( |
| 74 | + 2, |
| 75 | + network, |
| 76 | + 80_000_000_000_010, |
| 77 | + Accounts.WALLET_2, |
| 78 | + blockHeight, |
| 79 | + cycles, |
| 80 | + fee, |
| 81 | + 0 |
| 82 | + ); |
| 83 | + expect(response.error).toBeUndefined(); |
| 84 | + |
| 85 | + // Bob increases by 10m |
| 86 | + response = await broadcastStackIncrease( |
| 87 | + network, |
| 88 | + 10_000_000_000_100, |
| 89 | + Accounts.WALLET_2, |
| 90 | + fee, |
| 91 | + 1 |
| 92 | + ); |
| 93 | + expect(response.error).toBeUndefined(); |
| 94 | + // let Bobx's stacking confirm to enforce reward index 1 |
| 95 | + await waitForStacksTransaction(orchestrator, response.txid); |
| 96 | + |
| 97 | + // Cloe stacks 80m |
| 98 | + response = await broadcastStackSTX( |
| 99 | + 2, |
| 100 | + network, |
| 101 | + 80_000_000_001_000, |
| 102 | + Accounts.WALLET_3, |
| 103 | + blockHeight, |
| 104 | + cycles, |
| 105 | + fee, |
| 106 | + 0 |
| 107 | + ); |
| 108 | + expect(response.error).toBeUndefined(); |
| 109 | + |
| 110 | + // Cloe increases by 10m |
| 111 | + response = await broadcastStackIncrease( |
| 112 | + network, |
| 113 | + 10_000_000_010_000, |
| 114 | + Accounts.WALLET_3, |
| 115 | + fee, |
| 116 | + 1 |
| 117 | + ); |
| 118 | + expect(response.error).toBeUndefined(); |
| 119 | + await orchestrator.waitForStacksBlockIncludingTransaction(response.txid); |
| 120 | + |
| 121 | + let poxInfo = await getPoxInfo(network); |
| 122 | + |
| 123 | + // Asserts about pox info for better knowledge sharing |
| 124 | + expect(poxInfo.total_liquid_supply_ustx).toBe(1_405_738_842_905_579); |
| 125 | + expect(poxInfo.contract_id).toBe("ST000000000000000000002AMW42H.pox-2"); |
| 126 | + expect(poxInfo.pox_activation_threshold_ustx).toBe(70_286_942_145_278); |
| 127 | + expect(poxInfo.current_cycle.id).toBe(1); |
| 128 | + expect(poxInfo.current_cycle.min_threshold_ustx).toBe(29_290_000_000_000); |
| 129 | + |
| 130 | + // Assert that the next cycle has 100m STX locked |
| 131 | + expect(poxInfo.current_cycle.stacked_ustx).toBe(0); |
| 132 | + expect(poxInfo.current_cycle.is_pox_active).toBe(false); |
| 133 | + expect(poxInfo.next_cycle.stacked_ustx).toBe(1_080_000_000_011_111); |
| 134 | + |
| 135 | + // Check Alice's table entry |
| 136 | + const poxAddrInfo0 = await readRewardCyclePoxAddressList(network, 2, 0); |
| 137 | + const poxAddrInfo0CV = hexToCV(poxAddrInfo0.data) as SomeCV<TupleCV>; |
| 138 | + expect((poxAddrInfo0CV.value.data["total-ustx"] as UIntCV).value).toBe( |
| 139 | + BigInt(900_000_000_000_001) |
| 140 | + ); |
| 141 | + |
| 142 | + // Check Bob's table entry |
| 143 | + const poxAddrInfo1 = await readRewardCyclePoxAddressList(network, 2, 1); |
| 144 | + const poxAddrInfo1CV = hexToCV(poxAddrInfo1.data) as SomeCV<TupleCV>; |
| 145 | + // HERE'S THE BUG: THIS SHOULD BE `u90000000000110` |
| 146 | + // expect(cvToString(poxAddrInfo1CV.value.data["total-ustx"])).toBe("u90000000000110"); |
| 147 | + expect((poxAddrInfo1CV.value.data["total-ustx"] as UIntCV).value).toBe( |
| 148 | + BigInt(990_000_000_000_111) |
| 149 | + ); |
| 150 | + // Check Cloe's table entry |
| 151 | + const poxAddrInfo2 = await readRewardCyclePoxAddressList(network, 2, 2); |
| 152 | + const poxAddrInfo2CV = hexToCV(poxAddrInfo2.data) as SomeCV<TupleCV>; |
| 153 | + // HERE'S THE BUG: THIS SHOULD BE `u90000000011000` |
| 154 | + // expect(cvToString(poxAddrInfo1CV.value.data["total-ustx"])).toBe("u90000000011000"); |
| 155 | + expect((poxAddrInfo2CV.value.data["total-ustx"] as UIntCV).value).toBe( |
| 156 | + BigInt(1080_000_000_011_111) |
| 157 | + ); |
| 158 | + |
| 159 | + const update = await waitForNextRewardPhase(network, orchestrator, 5); |
| 160 | + console.log(update) |
| 161 | + }); |
| 162 | +}); |
0 commit comments