Skip to content
Merged
Changes from 1 commit
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
63 changes: 43 additions & 20 deletions grid-client/deployer/stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,86 +11,109 @@ var (
DevNetwork: {
"wss://tfchain.dev.grid.tf/ws",
"wss://tfchain.dev.grid.tf:443",
"wss://tfchain.02.dev.grid.tf/ws",
"wss://tfchain.02.dev.grid.tf:443",
"wss://tfchain.dev.threefold.me/ws",
"wss://tfchain.dev.threefold.me:443",
},
QaNetwork: {
"wss://tfchain.qa.grid.tf/ws",
"wss://tfchain.qa.grid.tf:443",
"wss://tfchain.02.qa.grid.tf/ws",
"wss://tfchain.02.qa.grid.tf:443",
"wss://tfchain.qa.threefold.me/ws",
"wss://tfchain.qa.threefold.me:443",
},
TestNetwork: {
"wss://tfchain.test.grid.tf/ws",
"wss://tfchain.test.grid.tf:443",
"wss://tfchain.02.test.grid.tf/ws",
"wss://tfchain.02.test.grid.tf:443",
"wss://tfchain.test.threefold.me/ws",
"wss://tfchain.test.threefold.me:443",
},
MainNetwork: {
"wss://tfchain.grid.tf/ws",
"wss://tfchain.grid.tf:443",
"wss://tfchain.02.grid.tf/ws",
"wss://tfchain.02.grid.tf:443",
"wss://tfchain.be.grid.tf/ws",
"wss://tfchain.be.grid.tf:443",
"wss://tfchain.grid.threefold.me/ws",
"wss://tfchain.grid.threefold.me:443",
"wss://tfchain.sg.grid.tf/ws",
"wss://tfchain.sg.grid.tf:443",
"wss://tfchain.us.grid.tf/ws",
"wss://tfchain.us.grid.tf:443",
"wss://tfchain.grid.threefold.io/ws",
"wss://tfchain.grid.threefold.io:443",
},
}

// ProxyURLs are proxy urls
ProxyURLs = map[string][]string{
DevNetwork: {
"https://gridproxy.dev.grid.tf/",
"https://gridproxy.02.dev.grid.tf/",
"https://gridproxy.dev.threefold.me/",
"https://gridproxy.dev.ninja.tf/",
},
TestNetwork: {
"https://gridproxy.test.grid.tf/",
"https://gridproxy.02.test.grid.tf/",
"https://gridproxy.test.threefold.me/",
},
QaNetwork: {
"https://gridproxy.qa.grid.tf/",
"https://gridproxy.02.qa.grid.tf/",
"https://gridproxy.qa.threefold.me/",
"https://gridproxy.qa.ninja.tf/",
},
MainNetwork: {
"https://gridproxy.grid.tf/",
"https://gridproxy.02.grid.tf/",
"https://gridproxy.be.grid.tf/",
"https://gridproxy.grid.threefold.me/",
"https://gridproxy.sg.grid.tf/",
"https://gridproxy.us.grid.tf/",
"https://gridproxy.grid.threefold.io/",
},
}

// GraphQlURLs for graphql urls
GraphQlURLs = map[string][]string{
DevNetwork: {
"https://graphql.dev.grid.tf/graphql",
"https://graphql.02.dev.grid.tf/graphql",
"https://graphql.dev.threefold.me/graphql",
},
TestNetwork: {
"https://graphql.test.grid.tf/graphql",
"https://graphql.02.test.grid.tf/graphql",
"https://graphql.test.threefold.me/graphql",
},
QaNetwork: {
"https://graphql.qa.grid.tf/graphql",
"https://graphql.02.qa.grid.tf/graphql",
"https://graphql.qa.threefold.me/graphql",
},
MainNetwork: {
"https://graphql.grid.tf/graphql",
"https://graphql.02.grid.tf/graphql",
"https://graphql.be.grid.tf/graphql",
"https://graphql.grid.threefold.me/graphql",
"https://graphql.sg.grid.tf/graphql",
"https://graphql.us.grid.tf/graphql",
"https://graphql.grid.threefold.io/graphql",
},
}

// RelayURLs relay urls
RelayURLs = map[string][]string{
DevNetwork: {
"wss://relay.dev.grid.tf",
"wss://relay.02.dev.grid.tf",
"wss://relay.dev.threefold.me",
},
TestNetwork: {
"wss://relay.test.grid.tf",
"wss://relay.02.test.grid.tf",
"wss://relay.test.threefold.me",
},
QaNetwork: {
"wss://relay.qa.grid.tf",
"wss://relay.02.qa.grid.tf",
"wss://relay.qa.threefold.me",
"wss://relay.qa.ninja.tf",
},
MainNetwork: {
"wss://relay.grid.tf",
// "wss://relay.02.grid.tf",
"wss://relay.be.grid.tf",
"wss://relay.grid.threefold.me",
"wss://relay.sg.grid.tf",
"wss://relay.us.grid.tf",
"wss://relay.grid.threefold.io",
},
}

Expand Down
Loading