DGE791-remove XLS20 refs

This commit is contained in:
ddawson
2023-03-08 12:16:23 -08:00
parent 74ea710820
commit 78e8ea9c34
3 changed files with 9 additions and 16 deletions

View File

@@ -229,8 +229,9 @@ Get the broker account and connect to the ledger.
```
const wallet = xrpl.Wallet.fromSeed(brokerSeedField.value)
const client = new xrpl.Client("wss://xls20-sandbox.rippletest.net:51233")
results = 'Connecting to ' + getNet() + '...'
let net = getNet()
const client = new xrpl.Client(net)
results = 'Connecting to ' + net + '...'
document.getElementById('brokerResultField').value = results
await client.connect()
results += "\nConnected. Cancelling offer..."
@@ -326,9 +327,6 @@ Get the correct network host.
```
let faucetHost = null
if(document.getElementById("xls").checked) {
faucetHost = "faucet-nft.ripple.com"
}
if (type == 'standby') {
document.getElementById('standbyResultField').value = results

View File

@@ -422,8 +422,9 @@ Get the standby address and connect to the ledger.
```
const wallet = xrpl.Wallet.fromSeed(standbySeedField.value)
const client = new xrpl.Client("wss://xls20-sandbox.rippletest.net:51233")
results = 'Connecting to ' + getNet() + '...'
let net = getNet()
const client = new xrpl.Client(net)
results = 'Connecting to ' + net + '...'
document.getElementById('standbyResultField').value = results
await client.connect()
results += "\nConnected. Cancelling offer..."
@@ -945,8 +946,9 @@ async function oPcreateBuyOffer() {
async function oPcancelOffer() {
const wallet = xrpl.Wallet.fromSeed(operationalSeedField.value)
const client = new xrpl.Client("wss://xls20-sandbox.rippletest.net:51233")
results = 'Connecting to ' + getNet() + '...'
let net = getNet()
const client = new xrpl.Client(net)
results = 'Connecting to ' + net + '...'
document.getElementById('operationalResultField').value = results
await client.connect()
results += "\nConnected. Cancelling offer..."

View File

@@ -136,13 +136,6 @@
"shortname": "Devnet",
"longname": "s.devnet.rippletest.net (Devnet Public Cluster)"
},
{
"id": "wstool-1-connection-nftdevnet",
"ws_url": "wss://xls20-sandbox.rippletest.net:51233/",
"jsonrpc_url": "https://xls20-sandbox.rippletest.net:51234/",
"shortname": "NFT-Devnet",
"longname": "xls20-sandbox.rippletest.net (NFT-Devnet Cluster)"
},
{
"id": "wstool-1-connection-ammdevnet",
"ws_url": "wss://amm.devnet.rippletest.net:51233/",