Skip to content

Commit

Permalink
Add porduction substrate urls
Browse files Browse the repository at this point in the history
  • Loading branch information
muhamadazmy committed Dec 29, 2021
1 parent effabe2 commit e122b49
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/environment/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ const (
// SubstrateDevURL default substrate url
SubstrateTestURL = "wss://tfchain.test.grid.tf/"
ActivationTestURL = "https://activation.test.grid.tf/activation/activate"

SubstrateMainURL = "wss://tfchain.grid.tf/"
ActivationMainURL = "https://activation.grid.tf/activation/activate"
)

// Environment holds information about running environment of a node
Expand Down Expand Up @@ -89,8 +92,8 @@ var (
// same as testnet for now. will be updated the day of the launch of production network
envProd = Environment{
RunningMode: RunningMain,
SubstrateURL: SubstrateDevURL,
ActivationURL: ActivationDevURL,
SubstrateURL: SubstrateMainURL,
ActivationURL: ActivationMainURL,
FlistURL: "redis://hub.grid.tf:9900",
BinRepo: "tf-zos-v3-bins",
}
Expand Down

0 comments on commit e122b49

Please sign in to comment.