mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 12:15:50 +00:00
more NFT tutorial fixes
This commit is contained in:
@@ -165,7 +165,7 @@ async function createBuyOffer() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Submit signed blob --------------------------------------------------------
|
// Submit signed blob --------------------------------------------------------
|
||||||
const tx = await client.submit(transactionBlob,{wallet})//AndWait
|
const tx = await client.submitAndWait(transactionBlob,{wallet})
|
||||||
|
|
||||||
console.log("***Sell Offers***")
|
console.log("***Sell Offers***")
|
||||||
let nftSellOffers
|
let nftSellOffers
|
||||||
|
|||||||
@@ -407,7 +407,7 @@ async function createSellOffer() {
|
|||||||
|
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const tx = await client.submitAndWait(transactionBlob,{wallet})//AndWait
|
const tx = await client.submitAndWait(transactionBlob,{wallet})
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -539,7 +539,7 @@ async function createBuyOffer() {
|
|||||||
|
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const tx = await client.submit(transactionBlob,{wallet})//AndWait
|
const tx = await client.submitAndWait(transactionBlob,{wallet})
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user