-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use registry | add ibc assets to formatDenom
- Loading branch information
Showing
13 changed files
with
106 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,30 @@ | ||
# Wallet | ||
NEXT_PUBLIC_WALLETCONNECT_KEY=test_walletconnect_key | ||
NEXT_PUBLIC_WEB3AUTH_NETWORK=testnet | ||
NEXT_PUBLIC_WEB3AUTH_CLIENT_ID=test_client_id | ||
NEXT_PUBLIC_CHAIN=manifest | ||
NEXT_PUBLIC_CHAIN_ID=test_chain_id | ||
|
||
# Chains | ||
NEXT_PUBLIC_CHAIN=manifesttestnet | ||
NEXT_PUBLIC_OSMOSIS_CHAIN=osmosistestnet | ||
NEXT_PUBLIC_CHAIN_ID='manifest-ledger-testnet' | ||
NEXT_PUBLIC_OSMOSIS_CHAIN_ID='osmo-test-5' | ||
NEXT_PUBLIC_AXELAR_CHAIN=axelartestnet | ||
NEXT_PUBLIC_AXELAR_CHAIN_ID='axelar-testnet-1' | ||
|
||
# Ops | ||
NEXT_PUBLIC_CHAIN_TIER=testnet | ||
NEXT_PUBLIC_RPC_URL=https://test.rpc.url | ||
NEXT_PUBLIC_API_URL=https://test.api.url | ||
NEXT_PUBLIC_EXPLORER_URL=https://test.explorer.url | ||
NEXT_PUBLIC_INDEXER_URL=https://test.indexer.url | ||
# Explorer URLs | ||
NEXT_PUBLIC_EXPLORER_URL=https://testnet.manifest.explorers.guru | ||
NEXT_PUBLIC_OSMOSIS_EXPLORER_URL=https://manifest.io/testnet-osmosis | ||
NEXT_PUBLIC_AXELAR_EXPLORER_URL=https://manifest.io/testnet-axelar | ||
# Indexer URL | ||
NEXT_PUBLIC_INDEXER_URL= | ||
# RPC URLs | ||
NEXT_PUBLIC_RPC_URL= | ||
NEXT_PUBLIC_API_URL= | ||
# Osmosis RPC URLs | ||
NEXT_PUBLIC_OSMOSIS_API_URL= | ||
NEXT_PUBLIC_OSMOSIS_RPC_URL= | ||
# Axelar RPC URLs | ||
NEXT_PUBLIC_AXELAR_API_URL= | ||
NEXT_PUBLIC_AXELAR_RPC_URL= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,36 @@ | ||
const env = { | ||
chainId: process.env.NEXT_PUBLIC_CHAIN_ID ?? '', | ||
rpcUrl: process.env.NEXT_PUBLIC_RPC_URL ?? '', | ||
explorerUrl: process.env.NEXT_PUBLIC_EXPLORER_URL ?? '', | ||
osmosisExplorerUrl: process.env.NEXT_PUBLIC_OSMOSIS_EXPLORER_URL ?? '', | ||
osmosisChainId: process.env.NEXT_PUBLIC_OSMOSIS_CHAIN_ID ?? '', | ||
web3AuthClientId: process.env.NEXT_PUBLIC_WEB3AUTH_CLIENT_ID ?? '', | ||
// Wallet | ||
walletConnectKey: process.env.NEXT_PUBLIC_WALLETCONNECT_KEY ?? '', | ||
web3AuthNetwork: process.env.NEXT_PUBLIC_WEB3AUTH_NETWORK ?? '', | ||
web3AuthClientId: process.env.NEXT_PUBLIC_WEB3AUTH_CLIENT_ID ?? '', | ||
|
||
// Chains | ||
chain: process.env.NEXT_PUBLIC_CHAIN ?? '', | ||
osmosisChain: process.env.NEXT_PUBLIC_OSMOSIS_CHAIN ?? '', | ||
axelarChain: process.env.NEXT_PUBLIC_AXELAR_CHAIN ?? '', | ||
chainId: process.env.NEXT_PUBLIC_CHAIN_ID ?? '', | ||
osmosisChainId: process.env.NEXT_PUBLIC_OSMOSIS_CHAIN_ID ?? '', | ||
axelarChainId: process.env.NEXT_PUBLIC_AXELAR_CHAIN_ID ?? '', | ||
|
||
// Ops | ||
chainTier: process.env.NEXT_PUBLIC_CHAIN_TIER ?? '', | ||
|
||
// Explorer URLs | ||
explorerUrl: process.env.NEXT_PUBLIC_EXPLORER_URL ?? '', | ||
osmosisExplorerUrl: process.env.NEXT_PUBLIC_OSMOSIS_EXPLORER_URL ?? '', | ||
axelarExplorerUrl: process.env.NEXT_PUBLIC_AXELAR_EXPLORER_URL ?? '', | ||
// RPC and API URLs | ||
rpcUrl: process.env.NEXT_PUBLIC_RPC_URL ?? '', | ||
apiUrl: process.env.NEXT_PUBLIC_API_URL ?? '', | ||
indexerUrl: process.env.NEXT_PUBLIC_INDEXER_URL ?? '', | ||
|
||
// Osmosis RPC URLs | ||
osmosisApiUrl: process.env.NEXT_PUBLIC_OSMOSIS_API_URL ?? '', | ||
osmosisRpcUrl: process.env.NEXT_PUBLIC_OSMOSIS_RPC_URL ?? '', | ||
|
||
// Axelar RPC URLs | ||
axelarApiUrl: process.env.NEXT_PUBLIC_AXELAR_API_URL ?? '', | ||
axelarRpcUrl: process.env.NEXT_PUBLIC_AXELAR_RPC_URL ?? '', | ||
}; | ||
|
||
export default env; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.