Skip to content

Commit

Permalink
ALL-5089 Add IOTA rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
Hathoriel committed Apr 11, 2024
1 parent 9190d43 commit 3ffa44d
Show file tree
Hide file tree
Showing 13 changed files with 2,231 additions and 20 deletions.
3 changes: 3 additions & 0 deletions src/dto/Network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export enum Network {
GNOSIS = 'gno-mainnet',
HAQQ = 'haqq-mainnet',
HARMONY_ONE_SHARD_0 = 'one-mainnet-s0',
IOTA = 'iota-mainnet',
KADENA = 'kadena-mainnet',
KLAYTN = 'klaytn-mainnet',
KUCOIN = 'kcs-mainnet',
Expand Down Expand Up @@ -361,6 +362,8 @@ export const isStellarLoadBalancerNetwork = (network: Network) =>
export const isStellarNetwork = (network: Network) =>
[Network.STELLAR, Network.STELLAR_TESTNET].includes(network)

export const isIotaNetwork = (network: Network) => [Network.IOTA].includes(network)

export const isSameGetBlockNetwork = (network: Network) =>
isUtxoBasedNetwork(network) ||
isEvmBasedNetwork(network) ||
Expand Down
Loading

0 comments on commit 3ffa44d

Please sign in to comment.