@myx-trade/sdk 0.1.29 → 0.1.30
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.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -423,6 +423,7 @@ interface SearchResultContractItem {
|
|
|
423
423
|
priceChange: string;
|
|
424
424
|
tvl: string;
|
|
425
425
|
marketCap: string;
|
|
426
|
+
globalId: number;
|
|
426
427
|
}
|
|
427
428
|
interface SearchResultCookItem {
|
|
428
429
|
chainId: ChainId;
|
|
@@ -437,6 +438,7 @@ interface SearchResultCookItem {
|
|
|
437
438
|
marketCap: string;
|
|
438
439
|
lpPrice: string;
|
|
439
440
|
lpPriceChange: string;
|
|
441
|
+
globalId: number;
|
|
440
442
|
}
|
|
441
443
|
interface SearchResultEarnItem {
|
|
442
444
|
chainId: ChainId;
|
|
@@ -451,6 +453,7 @@ interface SearchResultEarnItem {
|
|
|
451
453
|
tvl: string;
|
|
452
454
|
marketCap: string;
|
|
453
455
|
apr: string;
|
|
456
|
+
globalId: number;
|
|
454
457
|
}
|
|
455
458
|
interface SearchResultResponse {
|
|
456
459
|
earnInfo: {
|
package/dist/index.d.ts
CHANGED
|
@@ -423,6 +423,7 @@ interface SearchResultContractItem {
|
|
|
423
423
|
priceChange: string;
|
|
424
424
|
tvl: string;
|
|
425
425
|
marketCap: string;
|
|
426
|
+
globalId: number;
|
|
426
427
|
}
|
|
427
428
|
interface SearchResultCookItem {
|
|
428
429
|
chainId: ChainId;
|
|
@@ -437,6 +438,7 @@ interface SearchResultCookItem {
|
|
|
437
438
|
marketCap: string;
|
|
438
439
|
lpPrice: string;
|
|
439
440
|
lpPriceChange: string;
|
|
441
|
+
globalId: number;
|
|
440
442
|
}
|
|
441
443
|
interface SearchResultEarnItem {
|
|
442
444
|
chainId: ChainId;
|
|
@@ -451,6 +453,7 @@ interface SearchResultEarnItem {
|
|
|
451
453
|
tvl: string;
|
|
452
454
|
marketCap: string;
|
|
453
455
|
apr: string;
|
|
456
|
+
globalId: number;
|
|
454
457
|
}
|
|
455
458
|
interface SearchResultResponse {
|
|
456
459
|
earnInfo: {
|
package/dist/index.js
CHANGED
|
@@ -1827,7 +1827,7 @@ var RotationProvider = class extends import_providers.BaseProvider {
|
|
|
1827
1827
|
// package.json
|
|
1828
1828
|
var package_default = {
|
|
1829
1829
|
name: "@myx-trade/sdk",
|
|
1830
|
-
version: "0.1.
|
|
1830
|
+
version: "0.1.30",
|
|
1831
1831
|
private: false,
|
|
1832
1832
|
publishConfig: {
|
|
1833
1833
|
access: "public"
|
package/dist/index.mjs
CHANGED