@defisaver/tokens 1.7.13-dev-pt-feb-dev → 1.7.15

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/.env ADDED
@@ -0,0 +1,4 @@
1
+ RPC=
2
+ MAINNET_RPC=
3
+ OPTIMISM_RPC=
4
+ ARBITRUM_RPC=
package/cjs/assets.js CHANGED
@@ -237,6 +237,7 @@ const kingAddress = "0x8F08B70456eb22f6109F57b8fafE862ED28E6040";
237
237
  const sBOLD = "0x50Bd66D59911F5e086Ec87aE43C811e0D059DD11";
238
238
  const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
239
239
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
240
+ const mmUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
240
241
  exports.assetProto = {
241
242
  symbol: '?',
242
243
  feedAvailability: {},
@@ -1301,5 +1302,9 @@ exports.assets = [
1301
1302
  Object.assign(Object.assign({}, exports.assetProto), { symbol: 'EIGEN', name: 'EigenCloud', decimals: 18, nativeChainId: 1, exchange: true, isStable: false, addresses: {
1302
1303
  1: '0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83',
1303
1304
  8453: '0x2081ab0d9ec9e4303234ab26d86b20b3367946ee',
1304
- } })
1305
+ } }),
1306
+ Object.assign(Object.assign({}, exports.assetProto), { symbol: 'mmUSD', name: 'MetaMask USD', exchange: true, decimals: 18, addresses: {
1307
+ 1: mmUSDAddress,
1308
+ 59144: mmUSDAddress,
1309
+ }, isStable: true }),
1305
1310
  ];
package/esm/assets.js CHANGED
@@ -234,6 +234,7 @@ const kingAddress = "0x8F08B70456eb22f6109F57b8fafE862ED28E6040";
234
234
  const sBOLD = "0x50Bd66D59911F5e086Ec87aE43C811e0D059DD11";
235
235
  const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
236
236
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
237
+ const mmUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
237
238
  export const assetProto = {
238
239
  symbol: '?',
239
240
  feedAvailability: {},
@@ -1298,5 +1299,9 @@ export const assets = [
1298
1299
  Object.assign(Object.assign({}, assetProto), { symbol: 'EIGEN', name: 'EigenCloud', decimals: 18, nativeChainId: 1, exchange: true, isStable: false, addresses: {
1299
1300
  1: '0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83',
1300
1301
  8453: '0x2081ab0d9ec9e4303234ab26d86b20b3367946ee',
1301
- } })
1302
+ } }),
1303
+ Object.assign(Object.assign({}, assetProto), { symbol: 'mmUSD', name: 'MetaMask USD', exchange: true, decimals: 18, addresses: {
1304
+ 1: mmUSDAddress,
1305
+ 59144: mmUSDAddress,
1306
+ }, isStable: true }),
1302
1307
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defisaver/tokens",
3
- "version": "1.7.13-dev-pt-feb-dev",
3
+ "version": "1.7.15",
4
4
  "type": "module",
5
5
  "description": "Centralized asset data & utility functions",
6
6
  "main": "cjs/index.js",
package/src/assets.ts CHANGED
@@ -236,6 +236,7 @@ const kingAddress = "0x8F08B70456eb22f6109F57b8fafE862ED28E6040";
236
236
  const sBOLD = "0x50Bd66D59911F5e086Ec87aE43C811e0D059DD11";
237
237
  const yBOLD = "0x9F4330700a36B29952869fac9b33f45EEdd8A3d8";
238
238
  const ysyYBOLD = "0x23346B04a7f55b8760E5860AA5A77383D63491cD";
239
+ const mmUSDAddress = "0xacA92E438df0B2401fF60dA7E4337B687a2435DA";
239
240
 
240
241
 
241
242
  export const assetProto: AssetDataBase = {
@@ -3781,5 +3782,17 @@ export const assets: AssetDataBase[] = [
3781
3782
  1: '0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83',
3782
3783
  8453: '0x2081ab0d9ec9e4303234ab26d86b20b3367946ee',
3783
3784
  },
3784
- }
3785
+ },
3786
+ {
3787
+ ...assetProto,
3788
+ symbol: 'mmUSD',
3789
+ name: 'MetaMask USD',
3790
+ exchange: true,
3791
+ decimals: 18,
3792
+ addresses: {
3793
+ 1: mmUSDAddress,
3794
+ 59144: mmUSDAddress,
3795
+ },
3796
+ isStable: true,
3797
+ },
3785
3798
  ];