diff --git a/getting-started/editor/sdk/utexo-sdk.mdx b/getting-started/editor/sdk/utexo-sdk.mdx index cdea607..4118e01 100644 --- a/getting-started/editor/sdk/utexo-sdk.mdx +++ b/getting-started/editor/sdk/utexo-sdk.mdx @@ -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 }); diff --git a/product-suite/untitled-page.mdx b/product-suite/untitled-page.mdx index 96b334d..91eee3d 100644 --- a/product-suite/untitled-page.mdx +++ b/product-suite/untitled-page.mdx @@ -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 });