@everstake/wallet-sdk-hysp-solana 1.0.0 → 1.0.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/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/constants/index.ts +2 -1
package/dist/index.js
CHANGED
|
@@ -131,7 +131,8 @@ var ERROR_MESSAGES = {
|
|
|
131
131
|
// src/constants/index.ts
|
|
132
132
|
var import_kit = require("@solana/kit");
|
|
133
133
|
var VAULTS = {
|
|
134
|
-
USDC
|
|
134
|
+
// Gauntlet USDC Prime
|
|
135
|
+
USDC: (0, import_kit.address)("9E69U4GzWhryRaPe8DYpco6Z9vTZY6gg8w6W2QsBACEj")
|
|
135
136
|
};
|
|
136
137
|
|
|
137
138
|
// src/hysp.ts
|
package/dist/index.mjs
CHANGED
|
@@ -114,7 +114,8 @@ var ERROR_MESSAGES = {
|
|
|
114
114
|
// src/constants/index.ts
|
|
115
115
|
import { address } from "@solana/kit";
|
|
116
116
|
var VAULTS = {
|
|
117
|
-
USDC
|
|
117
|
+
// Gauntlet USDC Prime
|
|
118
|
+
USDC: address("9E69U4GzWhryRaPe8DYpco6Z9vTZY6gg8w6W2QsBACEj")
|
|
118
119
|
};
|
|
119
120
|
|
|
120
121
|
// src/hysp.ts
|
package/package.json
CHANGED
package/src/constants/index.ts
CHANGED
|
@@ -12,7 +12,8 @@ export type VaultsMap = {
|
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
export const VAULTS: VaultsMap = {
|
|
15
|
-
USDC
|
|
15
|
+
// Gauntlet USDC Prime
|
|
16
|
+
USDC: address('9E69U4GzWhryRaPe8DYpco6Z9vTZY6gg8w6W2QsBACEj'),
|
|
16
17
|
};
|
|
17
18
|
|
|
18
19
|
export * from './errors';
|