@koralabs/kora-labs-common 6.4.21 → 6.4.22
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.
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { BoolInt, FeaturedItemType, HexString, HexStringOrEmpty } from '../../types';
|
|
2
|
-
import {
|
|
2
|
+
import type { ScriptDetails } from './ScriptDetails';
|
|
3
|
+
import { UTxOWithTxInfo } from '../UTxO';
|
|
3
4
|
export declare enum Rarity {
|
|
4
5
|
basic = "basic",
|
|
5
6
|
common = "common",
|
|
@@ -11,6 +12,20 @@ export interface SocialItem {
|
|
|
11
12
|
display: string;
|
|
12
13
|
url: string;
|
|
13
14
|
}
|
|
15
|
+
export interface IUTxO {
|
|
16
|
+
id?: string;
|
|
17
|
+
tx_id: string;
|
|
18
|
+
index: number;
|
|
19
|
+
lovelace: number;
|
|
20
|
+
datum?: string;
|
|
21
|
+
address: string;
|
|
22
|
+
blockHash?: string;
|
|
23
|
+
blockNum?: number;
|
|
24
|
+
slot?: number;
|
|
25
|
+
script?: ScriptDetails;
|
|
26
|
+
}
|
|
27
|
+
export interface IReferenceToken extends IUTxO {
|
|
28
|
+
}
|
|
14
29
|
interface ISharedPzDesigner {
|
|
15
30
|
pfp_border_color?: HexStringOrEmpty;
|
|
16
31
|
qr_inner_eye?: string;
|
|
@@ -123,7 +138,7 @@ export interface IHandle {
|
|
|
123
138
|
pz_enabled?: boolean;
|
|
124
139
|
}
|
|
125
140
|
export interface ICip68Handle extends IHandle {
|
|
126
|
-
reference_token?:
|
|
141
|
+
reference_token?: IReferenceToken;
|
|
127
142
|
reference_utxo?: string;
|
|
128
143
|
}
|
|
129
144
|
export interface IPersonalizedHandle extends ICip68Handle {
|