@agglayer/sdk 1.0.0-beta.26 → 1.0.0-beta.27
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/index.d.mts +13 -3
- package/dist/index.d.ts +13 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -272,6 +272,15 @@ type RoutesResponse = readonly Route[];
|
|
|
272
272
|
* Defines the core request and response types for the transactions endpoint.
|
|
273
273
|
*/
|
|
274
274
|
|
|
275
|
+
declare enum TransactionStatus {
|
|
276
|
+
BRIDGED = "BRIDGED",
|
|
277
|
+
LEAF_INCLUDED = "LEAF_INCLUDED",
|
|
278
|
+
READY_TO_CLAIM = "READY_TO_CLAIM",
|
|
279
|
+
CLAIMED = "CLAIMED",
|
|
280
|
+
REFUND_IN_PROGRESS = "REFUND_IN_PROGRESS",
|
|
281
|
+
REFUNDED = "REFUNDED",
|
|
282
|
+
FAILED = "FAILED"
|
|
283
|
+
}
|
|
275
284
|
interface Token {
|
|
276
285
|
name: string;
|
|
277
286
|
symbol: string;
|
|
@@ -330,8 +339,9 @@ interface Transaction {
|
|
|
330
339
|
}
|
|
331
340
|
interface TransactionsRequestQueryParams {
|
|
332
341
|
readonly address?: string;
|
|
333
|
-
readonly
|
|
334
|
-
readonly
|
|
342
|
+
readonly sourceChainIds?: number[];
|
|
343
|
+
readonly destinationChainIds?: number[];
|
|
344
|
+
readonly statuses?: TransactionStatus[];
|
|
335
345
|
readonly limit?: number;
|
|
336
346
|
readonly startAfter?: number;
|
|
337
347
|
}
|
|
@@ -1043,4 +1053,4 @@ declare class AggLayerSDK {
|
|
|
1043
1053
|
getNative(): NativeClient;
|
|
1044
1054
|
}
|
|
1045
1055
|
|
|
1046
|
-
export { AggLayerSDK, ApiError, type ApiResponse, type BaseContractConfig, type BridgeAssetParams, type BridgeConfig, type BridgeMessageParams, type BridgeOptions, type BuildClaimTransactionRequestParam, type BuildClaimTransactionResponse, type BuildTransactionRequestBody, type BuildTransactionResponse, type ChainConfig, type ChainsQueryParams, type ChainsResponse, type ClaimAssetParams, type ClaimMessageParams, type CoreConfig, type CursorPagination, type CustomChainConfig, type ERC20Config, type ErrorResponse, type FeeCost, type GasCost, type IChain, type IsClaimedParams, type LiFiBridge, type LiFiFeeCost, type LiFiMetadata, type LiFiStatusRequestParams, type LiFiStatusResponse, type LiFiStep, type LiFiToken, type LiFiTransaction, type LiFiTransferStatus, type LiFiTransferSubstatus, type NativeConfig, type OffsetPagination, type OriginTokenInfoParams, type PaginatedTransactionsResponse, type Pagination, type PrecalculatedWrapperParams, type ProviderMetadata, type RiskFactors, type RiskLevel, type Route, type RoutePreferences, type RouteStep, type RoutesRequestParams, type RoutesResponse, type SDKConfig, type SDKMode, SDK_MODES, type Step$1 as Step, type StepAction, type StepEstimate, type StepType, type SuccessResponse, type TokenInfo, type TokenMappingQueryParams, type TokenMappingResponse, type TokenMetadataRequestParam, type TokenMetadataResponse, type TokenReference, type ToolDetails, type Transaction, type TransactionParams, type TransactionsRequestQueryParams, type TransactionsResponse, type UnsignedTransaction, type WrappedTokenParams };
|
|
1056
|
+
export { AggLayerSDK, ApiError, type ApiResponse, type BaseContractConfig, type BridgeAssetParams, type BridgeConfig, type BridgeMessageParams, type BridgeOptions, type BuildClaimTransactionRequestParam, type BuildClaimTransactionResponse, type BuildTransactionRequestBody, type BuildTransactionResponse, type ChainConfig, type ChainsQueryParams, type ChainsResponse, type ClaimAssetParams, type ClaimMessageParams, type CoreConfig, type CursorPagination, type CustomChainConfig, type ERC20Config, type ErrorResponse, type FeeCost, type GasCost, type IChain, type IsClaimedParams, type LiFiBridge, type LiFiFeeCost, type LiFiMetadata, type LiFiStatusRequestParams, type LiFiStatusResponse, type LiFiStep, type LiFiToken, type LiFiTransaction, type LiFiTransferStatus, type LiFiTransferSubstatus, type NativeConfig, type OffsetPagination, type OriginTokenInfoParams, type PaginatedTransactionsResponse, type Pagination, type PrecalculatedWrapperParams, type ProviderMetadata, type RiskFactors, type RiskLevel, type Route, type RoutePreferences, type RouteStep, type RoutesRequestParams, type RoutesResponse, type SDKConfig, type SDKMode, SDK_MODES, type Step$1 as Step, type StepAction, type StepEstimate, type StepType, type SuccessResponse, type TokenInfo, type TokenMappingQueryParams, type TokenMappingResponse, type TokenMetadataRequestParam, type TokenMetadataResponse, type TokenReference, type ToolDetails, type Transaction, type TransactionParams, TransactionStatus, type TransactionsRequestQueryParams, type TransactionsResponse, type UnsignedTransaction, type WrappedTokenParams };
|
package/dist/index.d.ts
CHANGED
|
@@ -272,6 +272,15 @@ type RoutesResponse = readonly Route[];
|
|
|
272
272
|
* Defines the core request and response types for the transactions endpoint.
|
|
273
273
|
*/
|
|
274
274
|
|
|
275
|
+
declare enum TransactionStatus {
|
|
276
|
+
BRIDGED = "BRIDGED",
|
|
277
|
+
LEAF_INCLUDED = "LEAF_INCLUDED",
|
|
278
|
+
READY_TO_CLAIM = "READY_TO_CLAIM",
|
|
279
|
+
CLAIMED = "CLAIMED",
|
|
280
|
+
REFUND_IN_PROGRESS = "REFUND_IN_PROGRESS",
|
|
281
|
+
REFUNDED = "REFUNDED",
|
|
282
|
+
FAILED = "FAILED"
|
|
283
|
+
}
|
|
275
284
|
interface Token {
|
|
276
285
|
name: string;
|
|
277
286
|
symbol: string;
|
|
@@ -330,8 +339,9 @@ interface Transaction {
|
|
|
330
339
|
}
|
|
331
340
|
interface TransactionsRequestQueryParams {
|
|
332
341
|
readonly address?: string;
|
|
333
|
-
readonly
|
|
334
|
-
readonly
|
|
342
|
+
readonly sourceChainIds?: number[];
|
|
343
|
+
readonly destinationChainIds?: number[];
|
|
344
|
+
readonly statuses?: TransactionStatus[];
|
|
335
345
|
readonly limit?: number;
|
|
336
346
|
readonly startAfter?: number;
|
|
337
347
|
}
|
|
@@ -1043,4 +1053,4 @@ declare class AggLayerSDK {
|
|
|
1043
1053
|
getNative(): NativeClient;
|
|
1044
1054
|
}
|
|
1045
1055
|
|
|
1046
|
-
export { AggLayerSDK, ApiError, type ApiResponse, type BaseContractConfig, type BridgeAssetParams, type BridgeConfig, type BridgeMessageParams, type BridgeOptions, type BuildClaimTransactionRequestParam, type BuildClaimTransactionResponse, type BuildTransactionRequestBody, type BuildTransactionResponse, type ChainConfig, type ChainsQueryParams, type ChainsResponse, type ClaimAssetParams, type ClaimMessageParams, type CoreConfig, type CursorPagination, type CustomChainConfig, type ERC20Config, type ErrorResponse, type FeeCost, type GasCost, type IChain, type IsClaimedParams, type LiFiBridge, type LiFiFeeCost, type LiFiMetadata, type LiFiStatusRequestParams, type LiFiStatusResponse, type LiFiStep, type LiFiToken, type LiFiTransaction, type LiFiTransferStatus, type LiFiTransferSubstatus, type NativeConfig, type OffsetPagination, type OriginTokenInfoParams, type PaginatedTransactionsResponse, type Pagination, type PrecalculatedWrapperParams, type ProviderMetadata, type RiskFactors, type RiskLevel, type Route, type RoutePreferences, type RouteStep, type RoutesRequestParams, type RoutesResponse, type SDKConfig, type SDKMode, SDK_MODES, type Step$1 as Step, type StepAction, type StepEstimate, type StepType, type SuccessResponse, type TokenInfo, type TokenMappingQueryParams, type TokenMappingResponse, type TokenMetadataRequestParam, type TokenMetadataResponse, type TokenReference, type ToolDetails, type Transaction, type TransactionParams, type TransactionsRequestQueryParams, type TransactionsResponse, type UnsignedTransaction, type WrappedTokenParams };
|
|
1056
|
+
export { AggLayerSDK, ApiError, type ApiResponse, type BaseContractConfig, type BridgeAssetParams, type BridgeConfig, type BridgeMessageParams, type BridgeOptions, type BuildClaimTransactionRequestParam, type BuildClaimTransactionResponse, type BuildTransactionRequestBody, type BuildTransactionResponse, type ChainConfig, type ChainsQueryParams, type ChainsResponse, type ClaimAssetParams, type ClaimMessageParams, type CoreConfig, type CursorPagination, type CustomChainConfig, type ERC20Config, type ErrorResponse, type FeeCost, type GasCost, type IChain, type IsClaimedParams, type LiFiBridge, type LiFiFeeCost, type LiFiMetadata, type LiFiStatusRequestParams, type LiFiStatusResponse, type LiFiStep, type LiFiToken, type LiFiTransaction, type LiFiTransferStatus, type LiFiTransferSubstatus, type NativeConfig, type OffsetPagination, type OriginTokenInfoParams, type PaginatedTransactionsResponse, type Pagination, type PrecalculatedWrapperParams, type ProviderMetadata, type RiskFactors, type RiskLevel, type Route, type RoutePreferences, type RouteStep, type RoutesRequestParams, type RoutesResponse, type SDKConfig, type SDKMode, SDK_MODES, type Step$1 as Step, type StepAction, type StepEstimate, type StepType, type SuccessResponse, type TokenInfo, type TokenMappingQueryParams, type TokenMappingResponse, type TokenMetadataRequestParam, type TokenMetadataResponse, type TokenReference, type ToolDetails, type Transaction, type TransactionParams, TransactionStatus, type TransactionsRequestQueryParams, type TransactionsResponse, type UnsignedTransaction, type WrappedTokenParams };
|