-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #286 from ckb-cell/test/btc-transfer-all
test: Add integration tests for btc-transfer-all
- Loading branch information
Showing
3 changed files
with
115 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
113 changes: 113 additions & 0 deletions
113
tests/rgbpp/xudt/btc-transfer-all/1-btc-transfer-all.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import { bitcoin } from 'rgbpp/btc'; | ||
import { buildRgbppTransferAllTxs, sendRgbppTxGroups } from 'rgbpp'; | ||
import { btcDataSource, isMainnet, collector, btcAccount } from '../../env'; | ||
import { signPsbt } from '../../../../examples/rgbpp/shared/btc-account'; | ||
import { saveCkbVirtualTxResult } from '../../../../examples/rgbpp/shared/utils'; | ||
import { readStepLog } from '../../shared/utils'; | ||
|
||
interface TestParams { | ||
xudtTypeArgs: string; | ||
fromAddress: string; | ||
toAddress: string; | ||
} | ||
|
||
const rgbppTransferAllTxs = async ({ xudtTypeArgs, fromAddress, toAddress }: TestParams) => { | ||
const result = await buildRgbppTransferAllTxs({ | ||
ckb: { | ||
xudtTypeArgs, | ||
collector, | ||
}, | ||
btc: { | ||
assetAddresses: [fromAddress], | ||
fromAddress: fromAddress, | ||
toAddress: toAddress, | ||
dataSource: btcDataSource, | ||
feeRate: 5, | ||
}, | ||
isMainnet, | ||
}); | ||
|
||
console.log('result.transactions.length', result.transactions.length); | ||
console.log('result.summary.included.assets', result.summary.included.xudtAssets); | ||
console.log('result.summary.excluded.assets', result.summary.excluded.xudtAssets); | ||
|
||
const signedGroups = await Promise.all( | ||
result.transactions.map(async (group) => { | ||
const psbt = bitcoin.Psbt.fromHex(group.btc.psbtHex); | ||
|
||
// Sign transactions | ||
signPsbt(psbt, btcAccount); | ||
|
||
psbt.finalizeAllInputs(); | ||
|
||
return { | ||
ckbVirtualTxResult: JSON.stringify(group.ckb.virtualTxResult), | ||
btcTxHex: psbt.extractTransaction().toHex(), | ||
}; | ||
}), | ||
); | ||
|
||
const signedGroupsData = JSON.parse(JSON.stringify(signedGroups, null, 2)); | ||
|
||
// Save signedGroupsData | ||
saveCkbVirtualTxResult(signedGroupsData, '1-btc-transfer-all'); | ||
|
||
console.log('signedGroups', signedGroupsData); | ||
|
||
// Send transactions | ||
const sentGroups = await sendRgbppTxGroups({ | ||
txGroups: signedGroups, | ||
btcService: btcDataSource.service, | ||
}); | ||
console.log('sentGroups', JSON.stringify(sentGroups, null, 2)); | ||
|
||
const successfulTxIds = sentGroups | ||
.filter((group) => group.btcTxId) | ||
.map((group) => `https://mempool.space/testnet/tx/${group.btcTxId}`); | ||
|
||
console.log('Successful Transactions:', successfulTxIds.join('\n')); | ||
|
||
try { | ||
const interval = setInterval(async () => { | ||
try { | ||
const states = await Promise.all( | ||
sentGroups | ||
.filter((group) => group.btcTxId) | ||
.map(async (group) => { | ||
const btcTxId = group.btcTxId!; | ||
const { state, failedReason } = await btcDataSource.service.getRgbppTransactionState(btcTxId); | ||
return { btcTxId, state, failedReason }; | ||
}), | ||
); | ||
|
||
for (const { btcTxId, state, failedReason } of states) { | ||
console.log(`State for transaction ${btcTxId}: ${state}`); | ||
if (state === 'completed' || state === 'failed') { | ||
if (state === 'completed') { | ||
const { txhash: txHash } = await btcDataSource.service.getRgbppTransactionHash(btcTxId); | ||
console.info(`Rgbpp asset has been transferred on BTC and the related CKB tx hash is ${txHash}`); | ||
console.info(`Explorer: https://pudge.explorer.nervos.org/transaction/${txHash}`); | ||
} else { | ||
console.warn(`Rgbpp CKB transaction failed and the reason is ${failedReason}`); | ||
} | ||
} | ||
} | ||
|
||
if (states.every(({ state }) => state === 'completed' || state === 'failed')) { | ||
clearInterval(interval); | ||
} | ||
} catch (error) { | ||
console.error('Error during transaction state tracking:', error); | ||
} | ||
}, 30 * 1000); | ||
} catch (error) { | ||
console.error('Error during transaction state tracking:', error); | ||
} | ||
}; | ||
|
||
rgbppTransferAllTxs({ | ||
// Please use your own RGB++ xudt asset's xudtTypeArgs | ||
xudtTypeArgs: readStepLog('xUDT-type-script').args, | ||
fromAddress: btcAccount.from, | ||
toAddress: 'tb1qdnvvnyhc5wegxgh0udwaej04n8w08ahrr0w4q9', | ||
}).catch(console.error); |
ebcefc3
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.
New snapshot version of the rgbpp-sdk packages have been released:
0.0.0-snap-20240904113103
0.0.0-snap-20240904113103
0.0.0-snap-20240904113103
0.0.0-snap-20240904113103