mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 11:45:50 +00:00
DGE791-remove XLS20 refs
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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..."
|
||||
|
||||
Reference in New Issue
Block a user