@koralabs/kora-labs-common 2.4.1 → 2.5.0

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.
@@ -114,7 +114,6 @@ export interface IHandle {
114
114
  numeric_modifiers: string;
115
115
  default_in_wallet: string;
116
116
  resolved_addresses: {
117
- ada: string;
118
117
  [key: string]: string;
119
118
  };
120
119
  created_slot_number: number;
@@ -135,6 +134,15 @@ export interface ICip68Handle extends IHandle {
135
134
  export interface IPersonalizedHandle extends ICip68Handle {
136
135
  personalization?: IPersonalization;
137
136
  }
137
+ export interface ApiHandle extends IPersonalizedHandle {
138
+ amount: number;
139
+ type: HandleType;
140
+ default?: boolean;
141
+ resolved_addresses: {
142
+ ada: string;
143
+ [key: string]: string;
144
+ };
145
+ }
138
146
  export interface IHandleStats {
139
147
  percentage_complete: string;
140
148
  current_memory_used: number;
@@ -190,7 +198,6 @@ export interface IPzDatum {
190
198
  agreed_terms: string;
191
199
  migrate_sig_required: BoolInt;
192
200
  resolved_addresses?: {
193
- ada: HexStringOrEmpty;
194
201
  [key: string]: string;
195
202
  };
196
203
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koralabs/kora-labs-common",
3
- "version": "2.4.1",
3
+ "version": "2.5.0",
4
4
  "description": "Kora Labs Common Utilities",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",