Skip to content
Merged
Changes from all 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
4 changes: 2 additions & 2 deletions src/constants/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const APP_NAME = 'bitpay';
export const APP_NAME_UPPERCASE = 'BitPay';
export const APP_NETWORK = Network.mainnet;
export const APP_VERSION = version;
export const BASE_BITPAY_URLS = {
export const BASE_BITPAY_URLS: {[key: string]: string} = {
[Network.mainnet]: 'https://bitpay.com',
[Network.testnet]: 'https://test.bitpay.com',
[Network.regtest]: REGTEST_BASE_BITPAY_URL || '',
Expand Down Expand Up @@ -133,7 +133,7 @@ export const BLOCKCHAIN_EXPLORERS: {[key in string]: any} = {
},
};

export const METHOD_ENVS = {
export const METHOD_ENVS: {[key: string]: string} = {
[Network.mainnet]: 'production',
[Network.testnet]: 'dev',
[Network.regtest]: 'dev',
Expand Down
Loading