TransactionStep
Last updated
// Execute steps manually for better UX
for (const step of preparedPurchase.steps) {
console.log(`Executing: ${step.name}`);
const receipt = await step.execute(adapter);
console.log(`✓ ${step.name} complete: ${receipt.txHash}`);
}