Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Boldizsar Mezei committed Jul 1, 2024
1 parent 8df72ed commit 0e4c4f4
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions packages/functions/src/services/wallet/wallet.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,15 @@ export interface AddressDetails {
}

const NODES = {
[Network.SMR]: process.env.SMR_NODES!.split(','),
[Network.RMS]: process.env.RMS_NODES!.split(','),
[Network.IOTA]: process.env.IOTA_NODES!.split(','),
[Network.ATOI]: process.env.ATOI_NODES!.split(','),
[Network.SMR]: ['https://smr1.svrs.io/', 'https://smr3.svrs.io/'],
[Network.RMS]: ['https://rms1.svrs.io/', 'https://rms1.svrs.io/'],
[Network.IOTA]: [
'https://us3.svrs.io/',
'https://us4.svrs.io/',
'https://hs5.svrs.io/',
'https://hs6.svrs.io/',
],
[Network.ATOI]: ['https://rms1.svrs.io/'],
};

export const tangleClients: { [key: string]: Client } = {};
Expand Down

0 comments on commit 0e4c4f4

Please sign in to comment.