Skip to content

Commit

Permalink
fix(config): update explorer url
Browse files Browse the repository at this point in the history
  • Loading branch information
houssemmimoun27 committed Jun 16, 2023
1 parent dd9c8de commit 7af03dc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ OKP4_SMART_CONTRACT_COGNITARIUM_CODE_ID='6'
OKP4_CHAIN_ADDRESS='okp41r0pf2d78w8w29sm9a6qm8x6yqshezm0k6vwcrg'
GRAPHQL_URI='https://api.nemeton.staging.okp4.network/graphql'
OKP4_KEPLR_WALLET_EXTENSION_URL='https://chrome.google.com/webstore/detail/keplr/dmkamcknogkgcdfhhbddcghachkejeap'
OKP4_EXPLORER_WALLET_URL='https://explore.okp4.network/wallet/import'
OKP4_EXPLORER_DASHBOARD_URL='https://explore.okp4.network/OKP4%20testnet'
OKP4_FAUCET_URL='https://faucet.okp4.network/'
OKP4_SWI_PROLOG_URL='https://www.swi-prolog.org/'
OKP4_SWI_PROLOG_FUNCTIONS_URL='https://www.swi-prolog.org/pldoc/man?section=functions'
Expand Down
2 changes: 1 addition & 1 deletion environment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ declare namespace NodeJS {
OKP4_GITHUB_ONTOLOGY_RHIZOME_URL: string
GRAPHQL_URI: string
OKP4_KEPLR_WALLET_EXTENSION_URL: string
OKP4_EXPLORER_WALLET_URL: string
OKP4_EXPLORER_DASHBOARD_URL: string
OKP4_FAUCET_URL: string
OKP4_SWI_PROLOG_URL: string
OKP4_SWI_PROLOG_FUNCTIONS_URL: string
Expand Down
6 changes: 3 additions & 3 deletions src/data/phase/samhain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const samhain = ({
endDate,
urls: {
keplrWalletExtensionUrl,
explorerWalletUrl,
explorerDashboardUrl,
faucetUrl,
githubOkp4dReleasesUrl,
okp4dDocsCommandsUrl,
Expand Down Expand Up @@ -314,8 +314,8 @@ export const samhain = ({
</li>
<li>
Explorer:{' '}
<a href={explorerWalletUrl} rel="noreferrer" target="_blank">
{explorerWalletUrl}
<a href={explorerDashboardUrl} rel="noreferrer" target="_blank">
{explorerDashboardUrl}
</a>
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const config: Config = {
endDate: process.env.OKP4_PHASE_SAMHAIN_END_DATE,
urls: {
keplrWalletExtensionUrl: process.env.OKP4_KEPLR_WALLET_EXTENSION_URL,
explorerWalletUrl: process.env.OKP4_EXPLORER_WALLET_URL,
explorerDashboardUrl: process.env.OKP4_EXPLORER_DASHBOARD_URL,
faucetUrl: process.env.OKP4_FAUCET_URL,
githubOkp4dReleasesUrl: process.env.OKP4_GITHUB_OKP4D_RELEASES_URL,
githubObjectariumUrl: process.env.OKP4_GITHUB_OBJECTARIUM_URL,
Expand Down
2 changes: 1 addition & 1 deletion src/types/config.type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export type PhasesConfig = {
endDate: string
urls: {
keplrWalletExtensionUrl: string
explorerWalletUrl: string
explorerDashboardUrl: string
faucetUrl: string
githubOkp4dReleasesUrl: string
githubObjectariumUrl: string
Expand Down

0 comments on commit 7af03dc

Please sign in to comment.