@compass-labs/widgets 0.1.14 → 0.1.16
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +570 -430
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +570 -430
- package/dist/index.mjs.map +1 -1
- package/dist/server/index.js +109 -2
- package/dist/server/index.js.map +1 -1
- package/dist/server/index.mjs +109 -2
- package/dist/server/index.mjs.map +1 -1
- package/dist/styles.css +5 -0
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -572,8 +572,12 @@ interface MarketOption {
|
|
|
572
572
|
apy: number;
|
|
573
573
|
tvl: number;
|
|
574
574
|
type: MarketType;
|
|
575
|
+
/** The native token of this market (e.g. 'USDC', 'WETH'). Drives swap logic. */
|
|
576
|
+
underlyingToken: string;
|
|
575
577
|
expiry?: string;
|
|
578
|
+
marketAddress?: string;
|
|
576
579
|
curator?: string;
|
|
580
|
+
vaultAddress?: string;
|
|
577
581
|
}
|
|
578
582
|
/**
|
|
579
583
|
* Props for EarnAccount - A banking-style USDC savings account widget.
|
package/dist/index.d.ts
CHANGED
|
@@ -572,8 +572,12 @@ interface MarketOption {
|
|
|
572
572
|
apy: number;
|
|
573
573
|
tvl: number;
|
|
574
574
|
type: MarketType;
|
|
575
|
+
/** The native token of this market (e.g. 'USDC', 'WETH'). Drives swap logic. */
|
|
576
|
+
underlyingToken: string;
|
|
575
577
|
expiry?: string;
|
|
578
|
+
marketAddress?: string;
|
|
576
579
|
curator?: string;
|
|
580
|
+
vaultAddress?: string;
|
|
577
581
|
}
|
|
578
582
|
/**
|
|
579
583
|
* Props for EarnAccount - A banking-style USDC savings account widget.
|