Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions getting-started/editor/sdk/utexo-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ console.log('Created ' + utxosCreated + ' UTXOs');
```javascript
// Issue a new NIA
const asset = await wallet.issueAssetNia({
ticker: "USD Token",
name: "USDT",
ticker: "USDT",
name: "USD Token",
amounts: [1000, 500],
precision: 6
});
Expand Down
4 changes: 2 additions & 2 deletions product-suite/untitled-page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ This SDK is designed for **Node.js** and is not browser-compatible.

```javascript
const asset = await wallet.issueAssetNia({
ticker: 'USD Token',
name: 'USDT',
ticker: 'USDT',
name: 'USD Token',
amounts: [1000, 500],
precision: 6
});
Expand Down