@indigo-labs/indigo-sdk 0.2.31 → 0.2.33
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +369 -365
- package/dist/index.mjs +208 -204
- package/package.json +1 -1
- package/src/contracts/cdp/types.ts +1 -1
- package/src/contracts/cdp-creator/types.ts +1 -1
- package/src/contracts/lrp/types.ts +25 -3
- package/src/contracts/stability-pool/types-new.ts +2 -6
- package/src/contracts/staking/types-new.ts +1 -3
- package/src/contracts/staking/types.ts +1 -1
- package/src/types/on-chain-decimal.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -322,6 +322,7 @@ declare const OnChainDecimalSchema: _lucid_evolution_lucid.TObject<{
|
|
|
322
322
|
getOnChainInt: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
323
323
|
}>;
|
|
324
324
|
type OnChainDecimal = Data.Static<typeof OnChainDecimalSchema>;
|
|
325
|
+
declare const OnChainDecimal: OnChainDecimal;
|
|
325
326
|
|
|
326
327
|
declare const CdpParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
327
328
|
cdp_auth_token: _lucid_evolution_lucid.TObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -322,6 +322,7 @@ declare const OnChainDecimalSchema: _lucid_evolution_lucid.TObject<{
|
|
|
322
322
|
getOnChainInt: _lucid_evolution_lucid.TUnsafe<bigint>;
|
|
323
323
|
}>;
|
|
324
324
|
type OnChainDecimal = Data.Static<typeof OnChainDecimalSchema>;
|
|
325
|
+
declare const OnChainDecimal: OnChainDecimal;
|
|
325
326
|
|
|
326
327
|
declare const CdpParamsSchema: _lucid_evolution_lucid.TObject<{
|
|
327
328
|
cdp_auth_token: _lucid_evolution_lucid.TObject<{
|