-
Notifications
You must be signed in to change notification settings - Fork 299
feat(sdk-coin-sol): support versioned sol transactions with customTx intent #7109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
feat(sdk-coin-sol): support versioned sol transactions with customTx intent #7109
Conversation
7af5115
to
cad7c96
Compare
df09add
to
f5a95a3
Compare
f5a95a3
to
c9dd588
Compare
cfd8f71
to
343e386
Compare
946226b
to
bd1ed73
Compare
"webpack-prod": "NODE_OPTIONS=--max-old-space-size=4096 cross-env NODE_ENV=production webpack", | ||
"test": "npm run coverage", | ||
"unit-test": "mocha 'test/v2/unit/**/*.ts' 'test/unit/**/*.ts'", | ||
"unit-test": "NODE_OPTIONS=--max-old-space-size=8192 mocha 'test/v2/unit/**/*.ts' 'test/unit/**/*.ts'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The bitgo module unit-tests were failing with FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
. I tried optimizing and reviewing my changes in sdk-core
, but it doesn’t seem like they should be causing the memory issue, so I bumped the memory to unblock for now.
modules/sdk-coin-sol/test/unit/transactionBuilder/customInstructionBuilder.ts
Show resolved
Hide resolved
bd1ed73
to
d52e094
Compare
d52e094
to
b33402f
Compare
Ticket: SC-3231
We currently only support rebuilding Solana custom transactions in the legacy format. This PR adds support for Solana’s versioned transactions (with Address Lookup Tables) to enable WalletConnect compatibility, since most DApps rely on versioned transactions (Jupiter, Adrena, Kamino, etc)