@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/CHANGELOG.md +3 -0
- package/dist/clients/rpc-url-config.d.ts.map +1 -1
- package/dist/common/chains.d.ts +4 -4
- package/dist/common/chains.d.ts.map +1 -1
- package/dist/index2.cjs +37 -37
- package/dist/index2.js +2300 -2299
- package/package.json +1 -1
- package/src/clients/rpc-url-config.ts +1 -2
- package/src/common/chains.ts +2 -6
- package/src/common/feature-config.ts +1 -1
package/package.json
CHANGED
|
@@ -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]:
|
package/src/common/chains.ts
CHANGED
|
@@ -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
|
-
|
|
160
|
-
url: 'https://monadvision.com/',
|
|
156
|
+
url: 'https://monadvision.com',
|
|
161
157
|
},
|
|
162
158
|
},
|
|
163
159
|
contracts: {
|