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 {
2323 confirmations : number ;
2424 kernel_asset_id : string ;
2525 price_updated_at : string ;
26+ collection_hash ?: string ;
2627}
2728
2829export interface SafeDepositEntriesRequest {
Original file line number Diff line number Diff 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+
2127export 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
3343export interface OutputsRequest {
You can’t perform that action at this time.
0 commit comments