Skip to content

Commit

Permalink
Merge pull request #4863 from BitGo/WIN-3395-fix-sui-example-docs-in-sdk
Browse files Browse the repository at this point in the history


chore: fix sui example docs
  • Loading branch information
aarvay committed Aug 29, 2024
2 parents 61a3215 + 8b570d4 commit 1d78128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ts/sui/multi-recipient-pay-transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const accessToken = '';
const walletId = '';

// TODO: set your passphrase for your wallet here
const passphrase = '';
const walletPassphrase = '';

// TODO: set the recipients here, each recipient is an object with address and amount.
const recipients = [
Expand All @@ -44,7 +44,7 @@ async function buildPayTx() {

const response = await wallet.sendMany({
recipients,
passphrase,
walletPassphrase,
type: 'transfer',
});
console.log(util.inspect(response, { showHidden: false, depth: 5, colors: true }));
Expand Down

0 comments on commit 1d78128

Please sign in to comment.