Skip to content

Commit c49399b

Browse files
committed
update field
1 parent d06eb69 commit c49399b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/client/types/safe.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export interface SafeAsset {
2323
confirmations: number;
2424
kernel_asset_id: string;
2525
price_updated_at: string;
26+
collection_hash?: string;
2627
}
2728

2829
export interface SafeDepositEntriesRequest {

src/client/types/utxo.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ export interface UtxoOutput {
1818
spent_at: string;
1919
}
2020

21+
export interface KernelDeposit {
22+
chain: string;
23+
deposit_hash: string;
24+
deposit_index: number;
25+
}
26+
2127
export interface SafeUtxoOutput extends UtxoOutput {
2228
asset_id: string;
2329
kernel_asset_id: string;
@@ -28,6 +34,10 @@ export interface SafeUtxoOutput extends UtxoOutput {
2834
senders_hash: string;
2935
senders_threshold: number;
3036
sequence: number;
37+
38+
inscription_hash?: string;
39+
deposit?: KernelDeposit;
40+
request_id?: string;
3141
}
3242

3343
export interface OutputsRequest {

0 commit comments

Comments
 (0)