@lombard.finance/sdk 3.7.0 → 3.7.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lombard.finance/sdk",
3
- "version": "3.7.0",
3
+ "version": "3.7.1",
4
4
  "dependencies": {
5
5
  "@lombard.finance/sdk-common": "^3.3.1",
6
6
  "isows": "^1.0.7",
@@ -18,8 +18,7 @@ export const rpcUrlConfig: TRpcUrlConfig = {
18
18
  'https://alpha.megaeth.com/rpc?user=lombard+v1&token=1763427229-%2Bx6HFUDu9OhJwV%2FTCFOL0xTt%2FPJRAXPeirIcuytvnes%3D',
19
19
  [ChainId.sonic]: `${RPC_URL}/sonic_mainnet`,
20
20
  [ChainId.tac]: `${RPC_URL}/tac`,
21
- [ChainId.monad]:
22
- 'https://rpc-mainnet.monadinfra.com/rpc/hvdhVu9RcRR51qvLIYMX6CUKcjHtoRS5', // TODO: Update with the correct RPC URL once the monad network is live
21
+ [ChainId.monad]: `${RPC_URL}/monad_mainnet`,
23
22
  // Testnets:
24
23
  [ChainId.baseSepoliaTestnet]: `${RPC_URL}/base_sepolia`,
25
24
  [ChainId.binanceSmartChainTestnet]:
@@ -147,17 +147,13 @@ export const monad = defineChain({
147
147
  },
148
148
  rpcUrls: {
149
149
  default: {
150
- http: [
151
- // TODO: Update with the correct RPC URL once the monad network is live
152
- 'https://rpc-mainnet.monadinfra.com/rpc/hvdhVu9RcRR51qvLIYMX6CUKcjHtoRS5',
153
- ],
150
+ http: ['https://monad-mainnet.drpc.org'],
154
151
  },
155
152
  },
156
153
  blockExplorers: {
157
154
  default: {
158
155
  name: 'Monad Explorer',
159
- // TODO: Update with the correct explorer URL once the monad network is live
160
- url: 'https://monadvision.com/',
156
+ url: 'https://monadvision.com',
161
157
  },
162
158
  },
163
159
  contracts: {
@@ -13,6 +13,6 @@ export interface FeatureConfig {
13
13
  }
14
14
 
15
15
  export const featureConfig: FeatureConfig = {
16
- isMonadEnabled: false,
16
+ isMonadEnabled: true,
17
17
  isAvalancheEnabled: false,
18
18
  };