17 lines
641 B
TypeScript
17 lines
641 B
TypeScript
import { NgxLoggerLevel } from 'ngx-logger';
|
|
|
|
export const environment = {
|
|
production: false,
|
|
bloxbergChainId: 8996,
|
|
logLevel: NgxLoggerLevel.ERROR,
|
|
serverLogLevel: NgxLoggerLevel.OFF,
|
|
loggingUrl: 'http://localhost:8000',
|
|
cicMetaUrl: 'https://meta.dev.grassrootseconomics.net',
|
|
publicKeysUrl: 'http://localhost:8000/keys.asc',
|
|
cicCacheUrl: 'https://cache.dev.grassrootseconomics.net',
|
|
web3Provider: 'ws://localhost:63546',
|
|
cicUssdUrl: 'https://ussd.dev.grassrootseconomics.net',
|
|
registryAddress: '0x6Ca3cB14aA6F761712E1C18646AfBA4d5Ae249E8',
|
|
trustedDeclaratorAddress: '0xEb3907eCad74a0013c259D5874AE7f22DcBcC95C',
|
|
};
|