@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.js +12 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1507,7 +1507,7 @@ var getConfiguredFastsetClient = (config, chain2) => {
|
|
|
1507
1507
|
var FastsetTokens = [
|
|
1508
1508
|
{
|
|
1509
1509
|
chain: "fastset",
|
|
1510
|
-
identifier: "
|
|
1510
|
+
identifier: "0x37bb8861c49c6f59d869634557245b8640c2de6a2d3dffd6ad4065f6f67989f1",
|
|
1511
1511
|
name: "Ethereum",
|
|
1512
1512
|
symbol: "ETH",
|
|
1513
1513
|
decimals: 18,
|
|
@@ -1540,6 +1540,15 @@ var FastsetTokens = [
|
|
|
1540
1540
|
decimals: 6,
|
|
1541
1541
|
logoUrl: "https://assets.coingecko.com/coins/images/6319/small/USD_Coin_icon.png",
|
|
1542
1542
|
amount: 0n
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
chain: "fastset",
|
|
1546
|
+
identifier: "0xfa575e7000000000000000000000000000000000000000000000000000000000",
|
|
1547
|
+
name: "Wrapped SET",
|
|
1548
|
+
symbol: "WSET",
|
|
1549
|
+
decimals: 18,
|
|
1550
|
+
logoUrl: "https://vleap.ai/images/tokens/set.svg",
|
|
1551
|
+
amount: 0n
|
|
1543
1552
|
}
|
|
1544
1553
|
];
|
|
1545
1554
|
|
|
@@ -1859,7 +1868,7 @@ var WarpFastsetOutput = class {
|
|
|
1859
1868
|
txHash: transactionHash,
|
|
1860
1869
|
tx,
|
|
1861
1870
|
next: null,
|
|
1862
|
-
values: { string: stringValues, native: rawValues },
|
|
1871
|
+
values: { string: stringValues, native: rawValues, mapped: {} },
|
|
1863
1872
|
output: {},
|
|
1864
1873
|
messages: {},
|
|
1865
1874
|
destination: null
|
|
@@ -1868,7 +1877,7 @@ var WarpFastsetOutput = class {
|
|
|
1868
1877
|
async extractQueryOutput(warp, typedValues, actionIndex, inputs) {
|
|
1869
1878
|
const stringValues = typedValues.map((t) => this.serializer.typedToString(t));
|
|
1870
1879
|
const nativeValues = typedValues.map((t) => this.serializer.typedToNative(t)[1]);
|
|
1871
|
-
const values = { string: stringValues, native: nativeValues };
|
|
1880
|
+
const values = { string: stringValues, native: nativeValues, mapped: {} };
|
|
1872
1881
|
let output = {};
|
|
1873
1882
|
if (!warp.output) return { values, output };
|
|
1874
1883
|
const getNestedValue = (path) => {
|