@sodax/sdk 1.0.4-beta → 1.1.0-beta-rc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,21 +7,21 @@ The Sodax SDK provides a comprehensive interface for interacting with the Sodax
7
7
  ### Features
8
8
 
9
9
  - [Swaps (Solver / Intents)](./docs/SWAPS.md) - Cross-chain intent-based swaps
10
- - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink) ✅
10
+ - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink, Kaia) ✅
11
11
  - Sui ✅
12
12
  - Stellar ✅
13
13
  - ICON ✅
14
14
  - Solana ✅
15
15
  - Injective ✅
16
16
  - [Money Market](./docs/MONEY_MARKET.md) - Cross-chain lending and borrowing
17
- - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink) ✅
17
+ - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink, Kaia) ✅
18
18
  - Sui ✅
19
19
  - Stellar ✅
20
20
  - ICON ✅
21
21
  - Solana ✅
22
22
  - Injective ✅
23
23
  - [Bridge](./docs/BRIDGE.md) - Cross-chain token bridging
24
- - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink) ✅
24
+ - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink, Kaia) ✅
25
25
  - Sui ✅
26
26
  - Stellar ✅
27
27
  - ICON ✅
@@ -29,7 +29,7 @@ The Sodax SDK provides a comprehensive interface for interacting with the Sodax
29
29
  - Injective ✅
30
30
  - [Migration](./docs/MIGRATION.md) - Token migration (ICX, bnUSD, BALN)
31
31
  - [Staking](./docs/STAKING.md) - SODA token staking
32
- - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink) ✅
32
+ - EVM (Arbitrum, Avalanche, Base, BSC, Optimism, Polygon, Sonic, HyperEVM, Lightlink, Kaia) ✅
33
33
  - Sui ✅
34
34
  - Stellar ✅
35
35
  - ICON ✅
package/dist/index.cjs CHANGED
@@ -6826,6 +6826,8 @@ function getEvmViemChain(id) {
6826
6826
  return chains.lightlinkPhoenix;
6827
6827
  case types.ETHEREUM_MAINNET_CHAIN_ID:
6828
6828
  return chains.mainnet;
6829
+ case types.KAIA_MAINNET_CHAIN_ID:
6830
+ return chains.kaia;
6829
6831
  default:
6830
6832
  throw new Error(`Unsupported EVM chain ID: ${id}`);
6831
6833
  }