File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export interface SafeAsset {
23
23
confirmations : number ;
24
24
kernel_asset_id : string ;
25
25
price_updated_at : string ;
26
+ collection_hash ?: string ;
26
27
}
27
28
28
29
export interface SafeDepositEntriesRequest {
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ export interface UtxoOutput {
18
18
spent_at : string ;
19
19
}
20
20
21
+ export interface KernelDeposit {
22
+ chain : string ;
23
+ deposit_hash : string ;
24
+ deposit_index : number ;
25
+ }
26
+
21
27
export interface SafeUtxoOutput extends UtxoOutput {
22
28
asset_id : string ;
23
29
kernel_asset_id : string ;
@@ -28,6 +34,10 @@ export interface SafeUtxoOutput extends UtxoOutput {
28
34
senders_hash : string ;
29
35
senders_threshold : number ;
30
36
sequence : number ;
37
+
38
+ inscription_hash ?: string ;
39
+ deposit ?: KernelDeposit ;
40
+ request_id ?: string ;
31
41
}
32
42
33
43
export interface OutputsRequest {
You can’t perform that action at this time.
0 commit comments