@defisaver/tokens 1.7.35 → 1.7.36

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 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',
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.35",
3
+ "version": "1.7.36",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
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',