diff --git a/README.md b/README.md index 2af67a3..19cff38 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ The TRISA test net is comprised of the following: -- [TRISA Directory Service](https://trisatest.net) - a user interface to explore the TRISA Global Directory Service and register to become a TRISA member +- [TRISA Directory Service](https://testnet.directory) - a user interface to explore the TRISA Global Directory Service and register to become a TRISA member - [TestNet Demo](https://vaspbot.com) - a demo site to show TRISA interactions between “robot” VASPs that run in the TestNet -For more details, see the [TRISA Documentation](https://trisatest.net/), or check out the [TRISA codebase](https://github.com/trisacrypto/trisa). +For more details, see the [TRISA Documentation](https://trisa.dev), or check out the [TRISA codebase](https://github.com/trisacrypto/trisa). ## Monorepo Organization diff --git a/containers/docker-compose.yml b/containers/docker-compose.yml index 053e6e3..61dcdf7 100644 --- a/containers/docker-compose.yml +++ b/containers/docker-compose.yml @@ -87,7 +87,7 @@ services: volumes: - ../fixtures/db:/data environment: - - GDS_DIRECTORY_ID=trisatest.net + - GDS_DIRECTORY_ID=testnet.directory - GDS_SECRET_KEY=supersecretsquirrel - GDS_MAINTENANCE=false - GDS_LOG_LEVEL=debug diff --git a/containers/docs-redirect/Dockerfile b/containers/docs-redirect/Dockerfile index 0339c7d..73910da 100644 --- a/containers/docs-redirect/Dockerfile +++ b/containers/docs-redirect/Dockerfile @@ -1,7 +1,7 @@ FROM nginx:stable LABEL maintainer="TRISA " -LABEL description="Redirect trisatest.net to trisa.dev" +LABEL description="Redirect testnet.directory to trisa.dev" COPY containers/docs-redirect/nginx.conf /etc/nginx/conf.d/default.conf diff --git a/manifests/rvasp/alice.yaml b/manifests/rvasp/alice.yaml index a92ca85..5ee043a 100644 --- a/manifests/rvasp/alice.yaml +++ b/manifests/rvasp/alice.yaml @@ -44,7 +44,7 @@ spec: - name: RVASP_TRUST_CHAIN_PATH value: "/data/certs/trisa.zip" - name: RVASP_DIRECTORY_SERVICE_URL - value: "api.trisatest.net:443" + value: "api.testnet.directory:443" - name: RVASP_LOG_LEVEL value: info volumes: diff --git a/manifests/rvasp/bob.yaml b/manifests/rvasp/bob.yaml index 99cdb48..f162879 100644 --- a/manifests/rvasp/bob.yaml +++ b/manifests/rvasp/bob.yaml @@ -44,7 +44,7 @@ spec: - name: RVASP_TRUST_CHAIN_PATH value: "/data/certs/trisa.zip" - name: RVASP_DIRECTORY_SERVICE_URL - value: "api.trisatest.net:443" + value: "api.testnet.directory:443" - name: RVASP_LOG_LEVEL value: info volumes: diff --git a/manifests/rvasp/evil.yaml b/manifests/rvasp/evil.yaml index 9f2d7fc..b749942 100644 --- a/manifests/rvasp/evil.yaml +++ b/manifests/rvasp/evil.yaml @@ -44,7 +44,7 @@ spec: - name: RVASP_TRUST_CHAIN_PATH value: "/data/certs/trisa.zip" - name: RVASP_DIRECTORY_SERVICE_URL - value: "api.trisatest.net:443" + value: "api.testnet.directory:443" - name: RVASP_LOG_LEVEL value: info volumes: diff --git a/manifests/trisads.yaml b/manifests/trisads.yaml index e86d0fa..e2dd237 100644 --- a/manifests/trisads.yaml +++ b/manifests/trisads.yaml @@ -36,13 +36,13 @@ spec: - name: GDS_BIND_ADDR value: :443 - name: GDS_DIRECTORY_ID - value: vaspdirectory.net + value: trisa.directory - name: GDS_DATABASE_URL value: leveldb:////data - name: GDS_LOG_LEVEL value: info - name: GDS_SERVICE_EMAIL - value: "TRISA Directory Service " + value: "TRISA Directory Service " - name: GDS_ADMIN_EMAIL value: "TRISA Admins " - name: SECTIGO_USERNAME diff --git a/pkg/rvasp/config/config.go b/pkg/rvasp/config/config.go index f14994b..11e425c 100644 --- a/pkg/rvasp/config/config.go +++ b/pkg/rvasp/config/config.go @@ -33,7 +33,7 @@ type Config struct { // GDSConfig is the configuration for connecting to GDS type GDSConfig struct { - URL string `split_words:"true" default:"api.trisatest.net:443"` + URL string `split_words:"true" default:"api.testnet.directory:443"` Insecure bool `split_words:"true" default:"false"` } diff --git a/pkg/version.go b/pkg/version.go index f828102..1c19e0c 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -5,7 +5,7 @@ import "fmt" // Version component constants for the current build. const ( VersionMajor = 1 - VersionMinor = 2 + VersionMinor = 3 VersionPatch = 0 VersionReleaseLevel = "" VersionReleaseNumber = 0 diff --git a/scripts/fixtures/template.json b/scripts/fixtures/template.json index f095247..24f5b2d 100644 --- a/scripts/fixtures/template.json +++ b/scripts/fixtures/template.json @@ -104,7 +104,7 @@ "id": "", "identity_certificate": null, "last_updated": "2021-08-31T12:36:27Z", - "registered_directory": "trisatest.net", + "registered_directory": "testnet.directory", "service_status": "UNKNOWN", "signature": "", "signing_certificates": [], diff --git a/web/demo/npm/src/App.js b/web/demo/npm/src/App.js index 769aa24..69e9179 100644 --- a/web/demo/npm/src/App.js +++ b/web/demo/npm/src/App.js @@ -183,7 +183,7 @@ class App extends Component { var leftPane = null - var topRow =

VASP Cryptocurrency Exchange Simulator utilizing TRISA protocol

Learn more about integrating TRISA: Documentation

+ var topRow =

VASP Cryptocurrency Exchange Simulator utilizing TRISA protocol

Learn more about integrating TRISA: Documentation

if (this.state.selectedOriginatingVasp) { console.log("Originating vasp creation") diff --git a/web/demo/npm/src/components/TrisaDSCard.tsx b/web/demo/npm/src/components/TrisaDSCard.tsx index ef75833..3a66b6d 100644 --- a/web/demo/npm/src/components/TrisaDSCard.tsx +++ b/web/demo/npm/src/components/TrisaDSCard.tsx @@ -28,7 +28,7 @@ class TrisaDSCard extends Component {

Directory Service:

- https://trisatest.net + https://testnet.directory