Final values for NFT-Devnet stuff

This commit is contained in:
mDuo13
2022-01-10 00:44:19 -08:00
parent 8b19927f8c
commit 92acb7af20
3 changed files with 17 additions and 4 deletions

View File

@@ -84,7 +84,7 @@ $(document).ready(function() {
"Devnet")
}
function nftnet_click(evt) {
rippleTestNetCredentials("http://35.161.243.164:3000/accounts",
rippleTestNetCredentials("http://faucet.xls20-sandbox.rippletest.net/accounts",
"NFT-Devnet")
}

View File

@@ -120,10 +120,10 @@ Edit your `validators.txt` file. This file is located in the same folder as your
*NFT-Devnet*
[validator_list_sites]
TODO
http://nftvalidators.s3.us-west-2.amazonaws.com/index.json
[validator_list_keys]
TODO
EDDB9B7F8D3F2378B3CBCAEFA8BCECFDE67017E06D55EA6C9EA25751072341CA8B
<!-- MULTICODE_BLOCK_END -->
@@ -155,7 +155,7 @@ To connect to the NFT-Devnet, you must also forcefully enable the NFT feature, `
```
[features]
XLS20
NonFungibleTokensV1
```
**Warning:** Do not use the `[features]` stanza when connecting to Mainnet or Testnet. Forcefully enabling different features than the rest of the network could cause your server to diverge from the network.

View File

@@ -26,6 +26,7 @@ Before you install `rippled`, you must meet the [System Requirements](system-req
- `stable` for the latest production release (`master` branch)
- `unstable` for pre-release builds (`release` branch)
- `nightly` for experimental/development builds (`develop` branch)
- `xls20` for the preview of the [XLS-20d NFT standard](https://github.com/XRPLF/XRPL-Standards/discussions/46) :not_enabled:.
<!-- MULTICODE_BLOCK_START -->
@@ -65,6 +66,18 @@ Before you install `rippled`, you must meet the [System Requirements](system-req
gpgkey=https://repos.ripple.com/repos/rippled-rpm/nightly/repodata/repomd.xml.key
REPOFILE
*XLS-20d*
cat << REPOFILE | sudo tee /etc/yum.repos.d/ripple.repo
[xls20]
name=xls20
baseurl=https://repos.ripple.com/repos/rippled-rpm-test-mirror/xls20
enabled=1
gpgcheck=0
repo_gpgcheck=1
gpgkey=https://repos.ripple.com/repos/rippled-rpm-test-mirror/xls20/repodata/repomd.xml.key
REPOFILE
<!-- MULTICODE_BLOCK_START -->