@defisaver/tokens 1.7.34 → 1.7.35-sgho-dev
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/cjs/assets.js +5 -1
- package/esm/assets.js +5 -1
- package/package.json +1 -1
- package/src/assets.ts +14 -1
package/cjs/assets.js
CHANGED
|
@@ -229,6 +229,7 @@ const fxnAddressArb = '0x179F38f78346F5942E95C5C59CB1da7F55Cf7CAd';
|
|
|
229
229
|
const USDSAddress = "0xdC035D45d973E3EC169d2276DDab16f1e407384F";
|
|
230
230
|
const SKYAddress = "0x56072C95FAA701256059aa122697B133aDEd9279";
|
|
231
231
|
const sUSDSAddress = "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD";
|
|
232
|
+
const sGHOAddress = "0xE1753F2e00940cC31213dd92013cF019DFE4ca1d";
|
|
232
233
|
const rswETHAddress = "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0";
|
|
233
234
|
const wsuperOETHbAddress = "0x7FcD174E80f264448ebeE8c88a7C4476AAF58Ea6";
|
|
234
235
|
const boldLegacyAddress = "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98";
|
|
@@ -1161,6 +1162,9 @@ exports.assets = [
|
|
|
1161
1162
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'stkGHO', name: 'Staked GHO', decimals: 18, nativeChainId: 1, addresses: {
|
|
1162
1163
|
1: stkGHOAddress,
|
|
1163
1164
|
} }),
|
|
1165
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sGHO', name: 'Savings GHO', decimals: 18, nativeChainId: 1, addresses: {
|
|
1166
|
+
1: sGHOAddress,
|
|
1167
|
+
}, isStable: true, is4626: true }),
|
|
1164
1168
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wUSDM', name: 'Wrapped Mountain Protocol USD', decimals: 18, nativeChainId: 1, addresses: {
|
|
1165
1169
|
1: '0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812',
|
|
1166
1170
|
42161: '0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812',
|
|
@@ -1319,7 +1323,7 @@ exports.assets = [
|
|
|
1319
1323
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT srUSDe Jun', name: 'PT Strata srUSDe Jun 2026', underlyingAsset: 'srUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1782345600, addresses: {
|
|
1320
1324
|
1: '0x619d75e3b790ebc21c289f2805bb7177a7d732e2',
|
|
1321
1325
|
} }),
|
|
1322
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDG May', name: 'PT Global Dollar May 2026', underlyingAsset: 'USDG', feedAvailability: { 1: true }, decimals:
|
|
1326
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDG May', name: 'PT Global Dollar May 2026', underlyingAsset: 'USDG', feedAvailability: { 1: true }, decimals: 6, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1779926400, addresses: {
|
|
1323
1327
|
1: '0x9db38D74a0D29380899aD354121DfB521aDb0548',
|
|
1324
1328
|
} }),
|
|
1325
1329
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'srUSDe', name: 'Strata Senior USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, exchange: true, is4626: true, addresses: {
|
package/esm/assets.js
CHANGED
|
@@ -226,6 +226,7 @@ const fxnAddressArb = '0x179F38f78346F5942E95C5C59CB1da7F55Cf7CAd';
|
|
|
226
226
|
const USDSAddress = "0xdC035D45d973E3EC169d2276DDab16f1e407384F";
|
|
227
227
|
const SKYAddress = "0x56072C95FAA701256059aa122697B133aDEd9279";
|
|
228
228
|
const sUSDSAddress = "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD";
|
|
229
|
+
const sGHOAddress = "0xE1753F2e00940cC31213dd92013cF019DFE4ca1d";
|
|
229
230
|
const rswETHAddress = "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0";
|
|
230
231
|
const wsuperOETHbAddress = "0x7FcD174E80f264448ebeE8c88a7C4476AAF58Ea6";
|
|
231
232
|
const boldLegacyAddress = "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98";
|
|
@@ -1158,6 +1159,9 @@ export const assets = [
|
|
|
1158
1159
|
Object.assign(Object.assign({}, assetProto), { symbol: 'stkGHO', name: 'Staked GHO', decimals: 18, nativeChainId: 1, addresses: {
|
|
1159
1160
|
1: stkGHOAddress,
|
|
1160
1161
|
} }),
|
|
1162
|
+
Object.assign(Object.assign({}, assetProto), { symbol: 'sGHO', name: 'Savings GHO', decimals: 18, nativeChainId: 1, addresses: {
|
|
1163
|
+
1: sGHOAddress,
|
|
1164
|
+
}, isStable: true, is4626: true }),
|
|
1161
1165
|
Object.assign(Object.assign({}, assetProto), { symbol: 'wUSDM', name: 'Wrapped Mountain Protocol USD', decimals: 18, nativeChainId: 1, addresses: {
|
|
1162
1166
|
1: '0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812',
|
|
1163
1167
|
42161: '0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812',
|
|
@@ -1316,7 +1320,7 @@ export const assets = [
|
|
|
1316
1320
|
Object.assign(Object.assign({}, assetProto), { symbol: 'PT srUSDe Jun', name: 'PT Strata srUSDe Jun 2026', underlyingAsset: 'srUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1782345600, addresses: {
|
|
1317
1321
|
1: '0x619d75e3b790ebc21c289f2805bb7177a7d732e2',
|
|
1318
1322
|
} }),
|
|
1319
|
-
Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDG May', name: 'PT Global Dollar May 2026', underlyingAsset: 'USDG', feedAvailability: { 1: true }, decimals:
|
|
1323
|
+
Object.assign(Object.assign({}, assetProto), { symbol: 'PT USDG May', name: 'PT Global Dollar May 2026', underlyingAsset: 'USDG', feedAvailability: { 1: true }, decimals: 6, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1779926400, addresses: {
|
|
1320
1324
|
1: '0x9db38D74a0D29380899aD354121DfB521aDb0548',
|
|
1321
1325
|
} }),
|
|
1322
1326
|
Object.assign(Object.assign({}, assetProto), { symbol: 'srUSDe', name: 'Strata Senior USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, exchange: true, is4626: true, addresses: {
|
package/package.json
CHANGED
package/src/assets.ts
CHANGED
|
@@ -228,6 +228,7 @@ const fxnAddressArb = '0x179F38f78346F5942E95C5C59CB1da7F55Cf7CAd';
|
|
|
228
228
|
const USDSAddress = "0xdC035D45d973E3EC169d2276DDab16f1e407384F";
|
|
229
229
|
const SKYAddress = "0x56072C95FAA701256059aa122697B133aDEd9279";
|
|
230
230
|
const sUSDSAddress = "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD";
|
|
231
|
+
const sGHOAddress = "0xE1753F2e00940cC31213dd92013cF019DFE4ca1d";
|
|
231
232
|
const rswETHAddress = "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0";
|
|
232
233
|
const wsuperOETHbAddress = "0x7FcD174E80f264448ebeE8c88a7C4476AAF58Ea6";
|
|
233
234
|
const boldLegacyAddress = "0xb01dd87b29d187f3e3a4bf6cdaebfb97f3d9ab98";
|
|
@@ -3200,6 +3201,18 @@ export const assets: AssetDataBase[] = [
|
|
|
3200
3201
|
1: stkGHOAddress,
|
|
3201
3202
|
},
|
|
3202
3203
|
},
|
|
3204
|
+
{
|
|
3205
|
+
...assetProto,
|
|
3206
|
+
symbol: 'sGHO',
|
|
3207
|
+
name: 'Savings GHO',
|
|
3208
|
+
decimals: 18,
|
|
3209
|
+
nativeChainId: 1,
|
|
3210
|
+
addresses: {
|
|
3211
|
+
1: sGHOAddress,
|
|
3212
|
+
},
|
|
3213
|
+
isStable: true,
|
|
3214
|
+
is4626: true,
|
|
3215
|
+
},
|
|
3203
3216
|
{
|
|
3204
3217
|
...assetProto,
|
|
3205
3218
|
symbol: 'wUSDM',
|
|
@@ -3898,7 +3911,7 @@ export const assets: AssetDataBase[] = [
|
|
|
3898
3911
|
name: 'PT Global Dollar May 2026',
|
|
3899
3912
|
underlyingAsset: 'USDG',
|
|
3900
3913
|
feedAvailability: { 1: true },
|
|
3901
|
-
decimals:
|
|
3914
|
+
decimals: 6,
|
|
3902
3915
|
nativeChainId: 1,
|
|
3903
3916
|
isStable: true,
|
|
3904
3917
|
isPendle: true,
|