Skip to content

Conversation

@lcovar
Copy link
Contributor

@lcovar lcovar commented Feb 6, 2026

BTC-0

TICKET: BTC-0

Add tests comparing legacy transaction building with expected WASM
building output. These tests verify:
- Transfer transaction building and call data extraction
- Staking transaction building
- Compact encoding format
- Call data structure documentation

BTC-0

TICKET: BTC-0
- Add wasmBuilderByteComparison.ts to compare serialized bytes
- Add @bitgo/wasm-dot dependency

BTC-0

TICKET: BTC-0
@lcovar lcovar force-pushed the BTC-0.dot-wasm branch 2 times, most recently from 8f026fb to 93666ed Compare February 6, 2026 07:20
- Update wasmBuilderByteComparison tests to use buildTransaction function
- Fix extractCallData to handle unsigned extrinsic version byte
- Update wasm-dot package with renamed metadata field

BTC-0

TICKET: BTC-0
Add comprehensive byte-for-byte comparison tests between legacy
(txwrapper-polkadot) and WASM (@bitgo/wasm-dot) builders:

- Transfer transactions (transfer, transferKeepAlive)
- Staking transactions (bond, unbond, withdrawUnbonded, chill)
- Proxy transactions (addProxy with Any/Staking types)
- Batch transactions (atomic batchAll, non-atomic batch)

All tests use strict assertions to verify WASM produces identical
call data bytes as the legacy implementation.

BTC-0

TICKET: BTC-0
Add explainTransactionFromHex as the single source of truth for parsing
DOT transactions from serialized bytes using the WASM parser. This
replaces intent-based parsing with a bytes-only approach.

- Add @bitgo/wasm-dot dependency
- Create wasmParser.ts with explainTransactionFromHex function
- Export DotWasmExplanation type and function from lib/index.ts

TICKET: BTC-0
Remove ~850 lines of unused Solana-inspired instruction mapping code
that was never integrated. DOT uses extrinsic calls (pallet methods),
not instructions. The actual WASM parser (explainTransactionFromHex in
wasmParser.ts) supersedes this pattern.

Deleted files:
- src/lib/wasm/wasmInstructionMapper.ts
- src/lib/wasm/transaction.ts
- src/lib/wasm/index.ts
- test/unit/wasmTransaction.ts

BTC-0

TICKET: BTC-0
- Delete wasmBuilderComparison.ts (scaffolding with console.log exploration)
- Simplify wasmBuilderByteComparison.ts to compare full serialized hex
  directly (toBroadcastFormat vs toHex) instead of extracting call data
  subsets that hid envelope differences
- Update wasm-dot tgz to latest build
- Fix duplicate @bitgo/wasm-dot entry in package.json

The comparison tests now correctly expose that legacy toBroadcastFormat()
returns signing payloads for unsigned txs while WASM toHex() returns
actual unsigned extrinsics — these are different formats by design.

BTC-0

TICKET: BTC-0
… payloads

Compare WASM signablePayload() against legacy toBroadcastFormat() for
unsigned transactions. Accounts for format difference: txwrapper encodes
call as Bytes (with compact-length prefix), subxt encodes as raw Call.
All 11 comparison tests now pass (191 passing, 0 failing).

BTC-0

TICKET: BTC-0
Replace DotParser.parseTransactionHex() with the standalone
parseTransaction() function, matching the wasm-solana pattern.

BTC-0

TICKET: BTC-0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant