@@ -1070,6 +1070,7 @@ export const LIT_EVM_CHAINS = LIT_CHAINS;
10701070 */
10711071export const LIT_NETWORK = {
10721072 NagaDev : 'naga-dev' ,
1073+ NagaTest : 'naga-test' ,
10731074 Custom : 'custom' ,
10741075} as const ;
10751076
@@ -1091,54 +1092,13 @@ export type LIT_NETWORK_VALUES = ConstantValues<typeof LIT_NETWORK>;
10911092 */
10921093export const RPC_URL_BY_NETWORK : Record < LIT_NETWORK_VALUES , LIT_RPC_VALUES > = {
10931094 [ LIT_NETWORK . NagaDev ] : LIT_RPC . CHRONICLE_YELLOWSTONE ,
1095+ [ LIT_NETWORK . NagaTest ] : LIT_RPC . CHRONICLE_YELLOWSTONE ,
10941096 [ LIT_NETWORK . Custom ] : LIT_RPC . LOCAL_ANVIL ,
10951097} as const ;
10961098
1097- /**
1098- * Mapping of network names to their corresponding relayer URLs.
1099- * @deprecated - use naga doesn't use these urls anymore.
1100- */
1101- export const RELAYER_URL_BY_NETWORK : Record < LIT_NETWORK_VALUES , string > = {
1102- [ LIT_NETWORK . NagaDev ] : 'https://naga-dev-relayer.getlit.dev' ,
1103- [ LIT_NETWORK . Custom ] : 'http://localhost:3000' ,
1104- } as const ;
1105-
1106- /**
1107- * Mapping of network values to corresponding Metamask chain info.
1108- */
1109- export const METAMASK_CHAIN_INFO_BY_NETWORK : Record <
1110- LIT_NETWORK_VALUES ,
1111- typeof METAMASK_CHAIN_INFO . yellowstone
1112- > = {
1113- [ LIT_NETWORK . NagaDev ] : METAMASK_CHAIN_INFO . yellowstone ,
1114- [ LIT_NETWORK . Custom ] : METAMASK_CHAIN_INFO . yellowstone ,
1115- } as const ;
1116-
11171099export const HTTP = 'http://' ;
11181100export const HTTPS = 'https://' ;
11191101
1120- /**
1121- * Mapping of network values to corresponding http protocol.
1122- */
1123- export const HTTP_BY_NETWORK : Record <
1124- LIT_NETWORK_VALUES ,
1125- typeof HTTP | typeof HTTPS
1126- > = {
1127- [ LIT_NETWORK . NagaDev ] : HTTPS ,
1128- [ LIT_NETWORK . Custom ] : HTTP , // default, can be changed by config
1129- } as const ;
1130-
1131- /**
1132- * Mapping of network values to their corresponding centralisation status.
1133- */
1134- export const CENTRALISATION_BY_NETWORK : Record <
1135- LIT_NETWORK_VALUES ,
1136- 'centralised' | 'decentralised' | 'unknown'
1137- > = {
1138- [ LIT_NETWORK . NagaDev ] : 'centralised' ,
1139- [ LIT_NETWORK . Custom ] : 'unknown' ,
1140- } as const ;
1141-
11421102/**
11431103 * Solana Chains supported by the LIT protocol. Use the chain name as a key in this object.
11441104 * @constant
@@ -1270,6 +1230,7 @@ export const LOCAL_STORAGE_KEYS = {
12701230 */
12711231export const LIT_NETWORKS : Record < LIT_NETWORK_VALUES , string [ ] > = {
12721232 [ LIT_NETWORK . NagaDev ] : [ ] ,
1233+ [ LIT_NETWORK . NagaTest ] : [ ] ,
12731234 [ LIT_NETWORK . Custom ] : [ ] ,
12741235} as const ;
12751236
0 commit comments