@vleap/warps-adapter-fastset 0.1.0-beta.39 → 0.1.0-beta.41

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.mjs CHANGED
@@ -1476,7 +1476,7 @@ var getConfiguredFastsetClient = (config, chain2) => {
1476
1476
  var FastsetTokens = [
1477
1477
  {
1478
1478
  chain: "fastset",
1479
- identifier: "08413efc81f99e5b8e03b852b3756674083110c6b65e6b7836b39a26e3908d3c",
1479
+ identifier: "0x37bb8861c49c6f59d869634557245b8640c2de6a2d3dffd6ad4065f6f67989f1",
1480
1480
  name: "Ethereum",
1481
1481
  symbol: "ETH",
1482
1482
  decimals: 18,
@@ -1509,6 +1509,15 @@ var FastsetTokens = [
1509
1509
  decimals: 6,
1510
1510
  logoUrl: "https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png",
1511
1511
  amount: 0n
1512
+ },
1513
+ {
1514
+ chain: "fastset",
1515
+ identifier: "0xfa575e7000000000000000000000000000000000000000000000000000000000",
1516
+ name: "Wrapped SET",
1517
+ symbol: "WSET",
1518
+ decimals: 18,
1519
+ logoUrl: "https://vleap.ai/images/tokens/set.svg",
1520
+ amount: 0n
1512
1521
  }
1513
1522
  ];
1514
1523
 
@@ -1838,7 +1847,7 @@ var WarpFastsetOutput = class {
1838
1847
  txHash: transactionHash,
1839
1848
  tx,
1840
1849
  next: null,
1841
- values: { string: stringValues, native: rawValues },
1850
+ values: { string: stringValues, native: rawValues, mapped: {} },
1842
1851
  output: {},
1843
1852
  messages: {},
1844
1853
  destination: null
@@ -1847,7 +1856,7 @@ var WarpFastsetOutput = class {
1847
1856
  async extractQueryOutput(warp, typedValues, actionIndex, inputs) {
1848
1857
  const stringValues = typedValues.map((t) => this.serializer.typedToString(t));
1849
1858
  const nativeValues = typedValues.map((t) => this.serializer.typedToNative(t)[1]);
1850
- const values = { string: stringValues, native: nativeValues };
1859
+ const values = { string: stringValues, native: nativeValues, mapped: {} };
1851
1860
  let output = {};
1852
1861
  if (!warp.output) return { values, output };
1853
1862
  const getNestedValue = (path) => {