Skip to content

Commit aee142a

Browse files
committed
upgraded overledger urls sandbox and production to new .dev urls, changed polygon network option from mumbai to amoy
1 parent 5b1c403 commit aee142a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

components/overledger/common/constants.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,13 @@ export const TECHNOLOGY_OPTIONS = [
2424
export const NETWORK_OPTIONS = {
2525
"ethereum": [
2626
"ethereum sepolia testnet",
27-
"ethereum goerli testnet",
2827
"ethereum mainnet",
29-
"polygon mumbai testnet",
28+
"polygon amoy testnet",
3029
"polygon mainnet",
3130
"avalanche fuji testnet",
3231
"avalanche c-chain mainnet",
3332
"xdc apothem testnet",
3433
"xdc network mainnet",
35-
"Defined on demand",
3634
],
3735
"substrate": [
3836
"polkadot westend",

components/overledger/overledger.app.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export default {
2727
},
2828
_getBaseUrl(environment) { //conditional for environment url selection.
2929
return environment === "sandbox"
30-
? "https://api.sandbox.overledger.io"
31-
: "https://api.overledger.io";
30+
? "https://api.staging.overledger.dev"
31+
: "https://api.overledger.dev";
3232
},
3333
_makeRequest({
3434
$ = this, environment, path, ...otherOpts

0 commit comments

Comments
 (0)