Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion containers/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion containers/docs-redirect/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nginx:stable

LABEL maintainer="TRISA <admin@trisa.io>"
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

Expand Down
2 changes: 1 addition & 1 deletion manifests/rvasp/alice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion manifests/rvasp/bob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion manifests/rvasp/evil.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions manifests/trisads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <admin@vaspdirectory.net>"
value: "TRISA Directory Service <admin@trisa.directory>"
- name: GDS_ADMIN_EMAIL
value: "TRISA Admins <admin@trisa.io>"
- name: SECTIGO_USERNAME
Expand Down
2 changes: 1 addition & 1 deletion pkg/rvasp/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/fixtures/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
Expand Down
2 changes: 1 addition & 1 deletion web/demo/npm/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class App extends Component {

var leftPane = null

var topRow = <div className="top-row" align="center"><h2>VASP Cryptocurrency Exchange Simulator utilizing TRISA protocol</h2><h3>Learn more about integrating TRISA: <a target="_blank" href="https://trisatest.net">Documentation</a></h3></div>
var topRow = <div className="top-row" align="center"><h2>VASP Cryptocurrency Exchange Simulator utilizing TRISA protocol</h2><h3>Learn more about integrating TRISA: <a target="_blank" href="https://testnet.directory">Documentation</a></h3></div>

if (this.state.selectedOriginatingVasp) {
console.log("Originating vasp creation")
Expand Down
2 changes: 1 addition & 1 deletion web/demo/npm/src/components/TrisaDSCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class TrisaDSCard extends Component<TrisaDSCardProps> {
<h3>Directory Service:</h3>
</Col>
<Col className="card-right-table">
<a target="_blank" href="https://trisatest.net">https://trisatest.net</a>
<a target="_blank" href="https://testnet.directory">https://testnet.directory</a>
</Col>
</Row>
<Row>
Expand Down