Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

CSUB-1048 Payouts not displaying #99

Merged
merged 4 commits into from
Feb 14, 2024
Merged
Changes from 2 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
12 changes: 6 additions & 6 deletions src/config/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ const makeNetworkList = () => {
},
},
namespace: '09573a3526818a8ecd6eb92f60f1175d',
subscanEndpoint: 'http://127.0.0.1:4399',
subscanUrl: 'https://creditcoin3-testnet.subscan.io/',
subscanEndpoint: 'https://creditcoin3-dev.api.subscan.io',
subscanUrl: 'https://subscan-cc3-devnet.creditcoin.network',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the block explorer url, right?
In that case it should be: https://creditcoin3-dev.subscan.io

});
}
networks.creditcoinTest = makeCreditcoinNetwork({
Expand All @@ -109,8 +109,8 @@ const makeNetworkList = () => {
},
},
namespace: '09573a3526818a8ecd6eb92f60f1175d',
subscanEndpoint: 'http://127.0.0.1:4399',
subscanUrl: 'https://creditcoin3-testnet.subscan.io/',
subscanEndpoint: 'https://creditcoin3-testnet.api.subscan.io',
subscanUrl: 'https://subscan-cc3-testnet.creditcoin.network',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the block explorer url, right?
In that case it should be: https://creditcoin3-testnet.subscan.io

});
networks.creditcoin = makeCreditcoinNetwork({
name: 'creditcoin',
Expand All @@ -123,7 +123,7 @@ const makeNetworkList = () => {
},
namespace: 'creditcoin-mainnet',
subscanEndpoint: 'http://127.0.0.1:4399',
subscanUrl: 'https://creditcoin3.subscan.io/',
subscanUrl: 'https://creditcoin3.subscan.io',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This need to matches whatever it's on the other networks, I think this one is fine. But just to remember double check it.

});
if (import.meta.env.DEV) {
networks.creditcoinLocal = makeCreditcoinNetwork({
Expand All @@ -136,7 +136,7 @@ const makeNetworkList = () => {
},
},
subscanEndpoint: 'http://127.0.0.1:4399',
subscanUrl: 'https://creditcoin3-testnet.subscan.io/',
subscanUrl: 'https://creditcoin3-testnet.subscan.io',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This need to matches whatever it's on the other networks, I think this one is fine. But just to remember double check it.

});
}
return networks;
Expand Down
Loading