From 92acb7af20e7e795346cd6f451262ff602e874de Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Mon, 10 Jan 2022 00:44:19 -0800 Subject: [PATCH] Final values for NFT-Devnet stuff --- assets/js/test-net.js | 2 +- .../connect-your-rippled-to-the-xrp-test-net.md | 6 +++--- .../install-rippled-on-centos-rhel-with-yum.md | 13 +++++++++++++ 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/assets/js/test-net.js b/assets/js/test-net.js index 35e981c915..8b9e9e8cbb 100644 --- a/assets/js/test-net.js +++ b/assets/js/test-net.js @@ -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") } diff --git a/content/tutorials/manage-the-rippled-server/configuration/connect-your-rippled-to-the-xrp-test-net.md b/content/tutorials/manage-the-rippled-server/configuration/connect-your-rippled-to-the-xrp-test-net.md index d03fc4328c..a7cf3cc99b 100644 --- a/content/tutorials/manage-the-rippled-server/configuration/connect-your-rippled-to-the-xrp-test-net.md +++ b/content/tutorials/manage-the-rippled-server/configuration/connect-your-rippled-to-the-xrp-test-net.md @@ -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 @@ -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. diff --git a/content/tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum.md b/content/tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum.md index c49583b76b..950bfff6e7 100644 --- a/content/tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum.md +++ b/content/tutorials/manage-the-rippled-server/installation/install-rippled-on-centos-rhel-with-yum.md @@ -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:. @@ -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 +