Use pokt
This commit is contained in:
parent
ca6b7bcd07
commit
99d316fc40
|
@ -62,8 +62,8 @@
|
||||||
|
|
||||||
(def login-node-config
|
(def login-node-config
|
||||||
{:WalletConfig (cond-> {:Enabled true}
|
{:WalletConfig (cond-> {:Enabled true}
|
||||||
(not= config/infura-key "")
|
(not= config/pokt-key "")
|
||||||
(assoc :InfuraKey config/infura-key)
|
(assoc :PoktKey config/pokt-key)
|
||||||
|
|
||||||
(not= config/opensea-api-key "")
|
(not= config/opensea-api-key "")
|
||||||
(assoc :OpenseaAPIKey config/opensea-api-key))})
|
(assoc :OpenseaAPIKey config/opensea-api-key))})
|
||||||
|
|
|
@ -20,9 +20,11 @@
|
||||||
;; flags stay up to date and are removed once behavior introduced is stable.
|
;; flags stay up to date and are removed once behavior introduced is stable.
|
||||||
|
|
||||||
(goog-define INFURA_TOKEN "800c641949d64d768a5070a1b0511938")
|
(goog-define INFURA_TOKEN "800c641949d64d768a5070a1b0511938")
|
||||||
|
(goog-define POKT_TOKEN "")
|
||||||
(goog-define OPENSEA_API_KEY "")
|
(goog-define OPENSEA_API_KEY "")
|
||||||
|
|
||||||
(def infura-key INFURA_TOKEN)
|
(def infura-key INFURA_TOKEN)
|
||||||
|
(def pokt-key POKT_TOKEN)
|
||||||
(def mainnet-rpc-url (str "https://eth-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN))
|
(def mainnet-rpc-url (str "https://eth-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN))
|
||||||
(def testnet-rpc-url (str "https://ropsten.infura.io/v3/" INFURA_TOKEN))
|
(def testnet-rpc-url (str "https://ropsten.infura.io/v3/" INFURA_TOKEN))
|
||||||
(def goerli-rpc-url (str "https://goerli-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN))
|
(def goerli-rpc-url (str "https://goerli-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN))
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
||||||
"owner": "status-im",
|
"owner": "status-im",
|
||||||
"repo": "status-go",
|
"repo": "status-go",
|
||||||
"version": "v0.108.3+hotfix.5",
|
"version": "release/v0.108.x",
|
||||||
"commit-sha1": "8398958994ed7bdcf98a011dfe0f1695d4eccb42",
|
"commit-sha1": "9d55c4dbffa420ca499caa6b9fd7c9f1b5e866a5",
|
||||||
"src-sha256": "05jvcc5kqp8dadhzl9cxlm0wh8qwsg6ag91n2bd3r884v7mm4wg0"
|
"src-sha256": "0j0isxc1qsdz34ypmb40dksips5r8rnc4inbf0h8hv19a2sd5qph"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue