@covalenthq/client-sdk 0.5.2 → 0.5.3
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/services/BaseService.d.ts +2 -2
- package/dist/cjs/services/CovalentClient.d.ts +1 -1
- package/dist/cjs/services/NftService.d.ts +1 -1
- package/dist/cjs/services/TransactionService.d.ts +1 -1
- package/dist/cjs/util/types/BaseServiceTypes.d.ts +1 -1
- package/dist/cjs/util/types/GenericTypes.d.ts +1 -1
- package/dist/es/index.js +1 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/services/BaseService.d.ts +2 -2
- package/dist/es/services/CovalentClient.d.ts +1 -1
- package/dist/es/services/NftService.d.ts +1 -1
- package/dist/es/services/TransactionService.d.ts +1 -1
- package/dist/es/util/types/BaseServiceTypes.d.ts +1 -1
- package/dist/es/util/types/GenericTypes.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/services/BaseService.d.ts +2 -2
- package/dist/esm/services/CovalentClient.d.ts +1 -1
- package/dist/esm/services/NftService.d.ts +1 -1
- package/dist/esm/services/TransactionService.d.ts +1 -1
- package/dist/esm/util/types/BaseServiceTypes.d.ts +1 -1
- package/dist/esm/util/types/GenericTypes.d.ts +1 -1
- package/dist/services/BaseService.d.ts +2 -2
- package/dist/services/CovalentClient.d.ts +1 -1
- package/dist/services/CovalentClient.js +1 -1
- package/dist/services/NftService.d.ts +1 -1
- package/dist/services/TransactionService.d.ts +1 -1
- package/dist/util/types/BaseServiceTypes.d.ts +1 -1
- package/dist/util/types/GenericTypes.d.ts +1 -1
- package/package.json +1 -1
|
@@ -59,7 +59,7 @@ declare class GetLogsEvent {
|
|
|
59
59
|
/** * The requested transaction hash. */
|
|
60
60
|
tx_hash: string;
|
|
61
61
|
/** * The log topics in raw data. */
|
|
62
|
-
raw_log_topics: string;
|
|
62
|
+
raw_log_topics: string[];
|
|
63
63
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
64
64
|
sender_contract_decimals: number;
|
|
65
65
|
/** * The name of the sender. */
|
|
@@ -104,7 +104,7 @@ declare class LogEvent {
|
|
|
104
104
|
/** * The requested transaction hash. */
|
|
105
105
|
tx_hash: string;
|
|
106
106
|
/** * The log topics in raw data. */
|
|
107
|
-
raw_log_topics: string;
|
|
107
|
+
raw_log_topics: string[];
|
|
108
108
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
109
109
|
sender_contract_decimals: number;
|
|
110
110
|
/** * The name of the sender. */
|
|
@@ -21,7 +21,7 @@ export type Chains = "btc-mainnet" | "eth-mainnet" | "matic-mainnet" | "bsc-main
|
|
|
21
21
|
* CovalentClient Class
|
|
22
22
|
*/
|
|
23
23
|
export type Quotes = "USD" | "CAD" | "EUR" | "SGD" | "INR" | "JPY" | "VND" | "CNY" | "KRW" | "RUB" | "TRY" | "NGN" | "ARS" | "AUD" | "CHF" | "GBP";
|
|
24
|
-
export declare const userAgent = "com.covalenthq.sdk.typescript/0.5.
|
|
24
|
+
export declare const userAgent = "com.covalenthq.sdk.typescript/0.5.3";
|
|
25
25
|
export declare class Response<T> {
|
|
26
26
|
data: T;
|
|
27
27
|
error: boolean;
|
|
@@ -189,7 +189,7 @@ declare class LogEvent {
|
|
|
189
189
|
/** * The requested transaction hash. */
|
|
190
190
|
tx_hash: string;
|
|
191
191
|
/** * The log topics in raw data. */
|
|
192
|
-
raw_log_topics: string;
|
|
192
|
+
raw_log_topics: string[];
|
|
193
193
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
194
194
|
sender_contract_decimals: number;
|
|
195
195
|
/** * The name of the sender. */
|
|
@@ -283,7 +283,7 @@ declare class LogEvent {
|
|
|
283
283
|
/** * The requested transaction hash. */
|
|
284
284
|
tx_hash: string;
|
|
285
285
|
/** * The log topics in raw data. */
|
|
286
|
-
raw_log_topics: string;
|
|
286
|
+
raw_log_topics: string[];
|
|
287
287
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
288
288
|
sender_contract_decimals: number;
|
|
289
289
|
/** * The name of the sender. */
|
|
@@ -66,7 +66,7 @@ export interface GetLogsEvent {
|
|
|
66
66
|
/** * The requested transaction hash. */
|
|
67
67
|
tx_hash: string;
|
|
68
68
|
/** * The log topics in raw data. */
|
|
69
|
-
raw_log_topics: string;
|
|
69
|
+
raw_log_topics: string[];
|
|
70
70
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
71
71
|
sender_contract_decimals: number;
|
|
72
72
|
/** * The name of the sender. */
|
|
@@ -63,7 +63,7 @@ export interface LogEvent {
|
|
|
63
63
|
/** * The requested transaction hash. */
|
|
64
64
|
tx_hash: string;
|
|
65
65
|
/** * The log topics in raw data. */
|
|
66
|
-
raw_log_topics: string;
|
|
66
|
+
raw_log_topics: string[];
|
|
67
67
|
/** * Use contract decimals to format the token balance for display purposes - divide the balance by `10^{contract_decimals}`. */
|
|
68
68
|
sender_contract_decimals: number;
|
|
69
69
|
/** * The name of the sender. */
|