@initia/interwovenkit-react 2.0.0-rc.3 → 2.0.0-rc.4
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.cjs +2 -2
- package/dist/index.d.ts +0 -20
- package/dist/index.js +2816 -2823
- package/dist/styles.css +1 -1
- package/dist/styles.js +1 -1
- package/package.json +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -52,20 +52,6 @@ export declare const DEFAULT_GAS_ADJUSTMENT = 1.4;
|
|
|
52
52
|
|
|
53
53
|
export declare const DEFAULT_GAS_PRICE_MULTIPLIER = 1.03;
|
|
54
54
|
|
|
55
|
-
export declare function formatAmount(value?: BigNumber.Value, options?: FormatAmountOptions): string;
|
|
56
|
-
|
|
57
|
-
export declare interface FormatAmountOptions extends FormatNumberOptions {
|
|
58
|
-
decimals?: number;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export declare function formatNumber(value: BigNumber.Value, options?: FormatNumberOptions): string;
|
|
62
|
-
|
|
63
|
-
export declare interface FormatNumberOptions {
|
|
64
|
-
dp?: number;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export declare function formatPercent(value?: BigNumber.Value, fixed?: number): string;
|
|
68
|
-
|
|
69
55
|
declare type FormValues = z.infer<typeof FormValuesSchema>;
|
|
70
56
|
|
|
71
57
|
declare const FormValuesSchema: z.ZodObject<{
|
|
@@ -143,12 +129,6 @@ declare interface Params {
|
|
|
143
129
|
|
|
144
130
|
export declare const TESTNET: Config;
|
|
145
131
|
|
|
146
|
-
export declare function toAmount(value?: BigNumber.Value, decimals?: number): string;
|
|
147
|
-
|
|
148
|
-
export declare function toQuantity(value?: BigNumber.Value, decimals?: number): string;
|
|
149
|
-
|
|
150
|
-
export declare function truncate(text?: string, [h, t]?: [number, number]): string;
|
|
151
|
-
|
|
152
132
|
declare interface TxRequest {
|
|
153
133
|
messages: EncodeObject[];
|
|
154
134
|
memo?: string;
|