@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 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: (0, import_kit.address)("HDsayqAsDWy3QvANGqh2yNraqcD8Fnjgh73Mhb3WRS5E")
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: address("HDsayqAsDWy3QvANGqh2yNraqcD8Fnjgh73Mhb3WRS5E")
117
+ // Gauntlet USDC Prime
118
+ USDC: address("9E69U4GzWhryRaPe8DYpco6Z9vTZY6gg8w6W2QsBACEj")
118
119
  };
119
120
 
120
121
  // src/hysp.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everstake/wallet-sdk-hysp-solana",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "HYSP Solana - Everstake Wallet SDK",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,7 +12,8 @@ export type VaultsMap = {
12
12
  };
13
13
 
14
14
  export const VAULTS: VaultsMap = {
15
- USDC: address('HDsayqAsDWy3QvANGqh2yNraqcD8Fnjgh73Mhb3WRS5E'),
15
+ // Gauntlet USDC Prime
16
+ USDC: address('9E69U4GzWhryRaPe8DYpco6Z9vTZY6gg8w6W2QsBACEj'),
16
17
  };
17
18
 
18
19
  export * from './errors';