@chainberry/ui-components 1.0.47 → 1.0.49
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 +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.mjs +20879 -20293
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -225,7 +225,8 @@ export declare function AssetValue({ value, code, icon, className, }: {
|
|
|
225
225
|
into a single activity row (Amount shows the batch total + a tx count). */
|
|
226
226
|
declare type AutomationActivity = ActivityBase & {
|
|
227
227
|
kind: "automation";
|
|
228
|
-
/** rule name
|
|
228
|
+
/** rule name — "Automatic Withdraw" (Automatic withdrawals) or "Payout Top-up"
|
|
229
|
+
(Automatic transfers), the same label the row shows on its own page */
|
|
229
230
|
rule: string;
|
|
230
231
|
/** source side, e.g. "Main" / "User wallets" / "Operational" */
|
|
231
232
|
fromLabel: string;
|
|
@@ -235,6 +236,9 @@ declare type AutomationActivity = ActivityBase & {
|
|
|
235
236
|
amountFiat: string;
|
|
236
237
|
/** number of on-chain transactions the run bundled */
|
|
237
238
|
txCount: number;
|
|
239
|
+
/** the currencies moved, each once — one for an Automatic Withdraw, several
|
|
240
|
+
for a Payout Top-up run (USDT over three networks still counts once) */
|
|
241
|
+
coins?: string[];
|
|
238
242
|
};
|
|
239
243
|
|
|
240
244
|
export declare function Avatar({ src, name, size, className, }: {
|