@sats-connect/core 0.0.9-7e4d74e → 0.0.9-c7cae71
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 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -495,9 +495,11 @@ type RbfOrder = MethodParamsAndResult<RbfOrderParams, RbfOrderResult>;
|
|
|
495
495
|
type GetRunesBalanceParams = null;
|
|
496
496
|
interface GetRunesBalanceResult {
|
|
497
497
|
balances: {
|
|
498
|
-
|
|
498
|
+
runeName: string;
|
|
499
499
|
amount: string;
|
|
500
500
|
divisibility: number;
|
|
501
|
+
symbol: string;
|
|
502
|
+
inscriptionId: string | null;
|
|
501
503
|
}[];
|
|
502
504
|
}
|
|
503
505
|
type GetRunesBalance = MethodParamsAndResult<GetRunesBalanceParams, GetRunesBalanceResult>;
|