From 84e9a76d3716351fcac37de36b41df15824c85e6 Mon Sep 17 00:00:00 2001 From: minibits-cash Date: Thu, 18 Jul 2024 17:43:47 +0200 Subject: [PATCH] Extend MintKeyset type with fees --- src/model/types/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/model/types/index.ts b/src/model/types/index.ts index 1193535c0..3ccbfd782 100644 --- a/src/model/types/index.ts +++ b/src/model/types/index.ts @@ -79,6 +79,10 @@ export type MintKeyset = { * Whether the keyset is active or not. */ active: boolean; + /** + * Mint fees + */ + input_fee_ppk?: number; }; /**