@lifi/types 9.3.1 → 9.3.2
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.
- package/dist/api.d.ts +4 -0
- package/dist/cjs/api.d.ts +4 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -251,6 +251,9 @@ export interface StatusData extends BaseStatusData {
|
|
|
251
251
|
receiving: PendingReceivingInfo;
|
|
252
252
|
}
|
|
253
253
|
export type StatusResponse = FullStatusData | StatusData;
|
|
254
|
+
interface TransferMetadata {
|
|
255
|
+
integrator: string;
|
|
256
|
+
}
|
|
254
257
|
export interface FullStatusData extends StatusData {
|
|
255
258
|
transactionId: string;
|
|
256
259
|
sending: ExtendedTransactionInfo;
|
|
@@ -258,6 +261,7 @@ export interface FullStatusData extends StatusData {
|
|
|
258
261
|
lifiExplorerLink: string;
|
|
259
262
|
fromAddress: string;
|
|
260
263
|
toAddress: string;
|
|
264
|
+
metadata: TransferMetadata;
|
|
261
265
|
bridgeExplorerLink?: string;
|
|
262
266
|
}
|
|
263
267
|
export interface ExtendedChain extends Chain {
|
package/dist/cjs/api.d.ts
CHANGED
|
@@ -251,6 +251,9 @@ export interface StatusData extends BaseStatusData {
|
|
|
251
251
|
receiving: PendingReceivingInfo;
|
|
252
252
|
}
|
|
253
253
|
export type StatusResponse = FullStatusData | StatusData;
|
|
254
|
+
interface TransferMetadata {
|
|
255
|
+
integrator: string;
|
|
256
|
+
}
|
|
254
257
|
export interface FullStatusData extends StatusData {
|
|
255
258
|
transactionId: string;
|
|
256
259
|
sending: ExtendedTransactionInfo;
|
|
@@ -258,6 +261,7 @@ export interface FullStatusData extends StatusData {
|
|
|
258
261
|
lifiExplorerLink: string;
|
|
259
262
|
fromAddress: string;
|
|
260
263
|
toAddress: string;
|
|
264
|
+
metadata: TransferMetadata;
|
|
261
265
|
bridgeExplorerLink?: string;
|
|
262
266
|
}
|
|
263
267
|
export interface ExtendedChain extends Chain {
|