Skip to content

Commit 6c54781

Browse files
authored
Update chaindata urls (#3313)
* update urls * update one more
1 parent 27abb0b commit 6c54781

File tree

1 file changed

+15
-8
lines changed
  • tee-worker/omni-executor/client-sdk/packages/chaindata/src/lib

1 file changed

+15
-8
lines changed

tee-worker/omni-executor/client-sdk/packages/chaindata/src/lib/chaindata.ts

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export type ChainId =
22
| 'heima-local'
33
| 'heima-dev'
4+
| 'heima-staging'
45
| 'heima-prod';
56

67
export type ChainSpec = {
@@ -32,24 +33,30 @@ export const heimaDev: ChainSpec = {
3233
isTestnet: true,
3334
isDefault: false,
3435
// TODO update url below
35-
rpcs: [{ url: 'wss://tee-dev.litentry.io' }],
36-
enclaveRpcs: [{ url: 'wss://enclave-dev.litentry.io' }],
36+
rpcs: [{ url: 'wss://tee-dev.heima.network' }],
37+
enclaveRpcs: [{ url: 'wss://enclave-dev.heima.network' }],
38+
};
39+
40+
export const heimaStaging: ChainSpec = {
41+
id: 'heima-staging',
42+
name: 'Heima Staging Network',
43+
isTestnet: true,
44+
isDefault: false,
45+
rpcs: [{ url: 'wss://tee-staging.heima.network' }],
46+
enclaveRpcs: [{ url: 'wss://enclave-staging.heima.network' }],
3747
};
3848

3949
export const heimaProd: ChainSpec = {
4050
id: 'heima-prod',
4151
name: 'Heima Production Network',
4252
isTestnet: false,
4353
isDefault: true,
44-
rpcs: [
45-
{ url: 'wss://litentry-rpc.dwellir.com' },
46-
{ url: 'wss://rpc.litentry-parachain.litentry.io' },
47-
],
54+
rpcs: [{ url: 'wss://litentry-rpc.dwellir.com' }, { url: 'wss://rpc.heima-parachain.heima.network' }],
4855
// TODO update url below
49-
enclaveRpcs: [{ url: 'wss://enclave-prod.litentry.io' }],
56+
enclaveRpcs: [{ url: 'wss://enclave-prod.heima.network' }],
5057
};
5158

52-
export const all = [heimaProd, heimaDev, heimaLocal];
59+
export const all = [heimaProd, heimaDev, heimaLocal, heimaStaging];
5360

5461
export const byId = all.reduce((acc, spec) => {
5562
acc[spec.id] = spec;

0 commit comments

Comments
 (0)