@liquid-af/sdk 0.11.9 → 0.11.10
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/dist/config.js +2 -2
- package/package.json +1 -1
- package/src/config.ts +2 -2
package/dist/config.js
CHANGED
|
@@ -7,7 +7,7 @@ export const MAINNET_CONFIG = {
|
|
|
7
7
|
liquidStateProgramId: new PublicKey("State3HtEfi7cXdsTpAtRoBvrij8zSFCiGTAVWmYH2d"),
|
|
8
8
|
liquidEventsProgramId: new PublicKey("EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG"),
|
|
9
9
|
usdcMint: new PublicKey("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"),
|
|
10
|
-
lut: new PublicKey("
|
|
10
|
+
lut: new PublicKey("DqU7oNs4LDzpGC13a5zUitsWngfYQoiwjghTNbdpGAkr"),
|
|
11
11
|
};
|
|
12
12
|
/** Devnet program IDs (liquid differs, others same as mainnet) */
|
|
13
13
|
export const DEVNET_CONFIG = {
|
|
@@ -17,7 +17,7 @@ export const DEVNET_CONFIG = {
|
|
|
17
17
|
liquidStateProgramId: new PublicKey("9ZcKPa3HAEVEKxwFX8fYD56ZJCKPEQgqjgr9rfUvtwKJ"),
|
|
18
18
|
liquidEventsProgramId: new PublicKey("Bast7hBDiqSsxiwEmqazwvPvXC3N4z8UQR5ZmkqXnCiY"),
|
|
19
19
|
usdcMint: new PublicKey("usdcbnypGfPKmn191M5DRNbRzPwvnbBgCEdKRsKG8XW"),
|
|
20
|
-
lut: new PublicKey("
|
|
20
|
+
lut: new PublicKey("4yepHox8xSM2WWQstXwt5SXe2cjM1FRx1R3PB19GJu73"),
|
|
21
21
|
};
|
|
22
22
|
/** Localnet program IDs (same as mainnet per Anchor.toml) */
|
|
23
23
|
export const LOCALNET_CONFIG = { ...MAINNET_CONFIG };
|
package/package.json
CHANGED
package/src/config.ts
CHANGED
|
@@ -38,7 +38,7 @@ export const MAINNET_CONFIG: LiquidConfig = {
|
|
|
38
38
|
"EventsQeXA43nLKR69DhHwNsJ6aM512AweMCgG3wG8zG",
|
|
39
39
|
),
|
|
40
40
|
usdcMint: new PublicKey("EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"),
|
|
41
|
-
lut: new PublicKey("
|
|
41
|
+
lut: new PublicKey("DqU7oNs4LDzpGC13a5zUitsWngfYQoiwjghTNbdpGAkr"),
|
|
42
42
|
} as const;
|
|
43
43
|
|
|
44
44
|
/** Devnet program IDs (liquid differs, others same as mainnet) */
|
|
@@ -59,7 +59,7 @@ export const DEVNET_CONFIG: LiquidConfig = {
|
|
|
59
59
|
"Bast7hBDiqSsxiwEmqazwvPvXC3N4z8UQR5ZmkqXnCiY",
|
|
60
60
|
),
|
|
61
61
|
usdcMint: new PublicKey("usdcbnypGfPKmn191M5DRNbRzPwvnbBgCEdKRsKG8XW"),
|
|
62
|
-
lut: new PublicKey("
|
|
62
|
+
lut: new PublicKey("4yepHox8xSM2WWQstXwt5SXe2cjM1FRx1R3PB19GJu73"),
|
|
63
63
|
} as const;
|
|
64
64
|
|
|
65
65
|
/** Localnet program IDs (same as mainnet per Anchor.toml) */
|