@covalenthq/client-sdk 1.0.0 → 1.0.1
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 +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/services/BaseService.d.ts +16 -0
- package/dist/cjs/services/CovalentClient.d.ts +1 -1
- package/dist/cjs/util/types/BaseServiceTypes.d.ts +16 -0
- package/dist/es/index.js +9 -1
- package/dist/es/index.js.map +1 -1
- package/dist/es/services/BaseService.d.ts +16 -0
- package/dist/es/services/CovalentClient.d.ts +1 -1
- package/dist/es/util/types/BaseServiceTypes.d.ts +16 -0
- package/dist/esm/index.js +9 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/services/BaseService.d.ts +16 -0
- package/dist/esm/services/CovalentClient.d.ts +1 -1
- package/dist/esm/util/types/BaseServiceTypes.d.ts +16 -0
- package/dist/services/BaseService.d.ts +16 -0
- package/dist/services/BaseService.js +8 -0
- package/dist/services/BaseService.js.map +1 -1
- package/dist/services/CovalentClient.d.ts +1 -1
- package/dist/services/CovalentClient.js +1 -1
- package/dist/util/types/BaseServiceTypes.d.ts +16 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -1524,8 +1524,16 @@ class BlockHeightsResponse {
|
|
|
1524
1524
|
}
|
|
1525
1525
|
class BlockHeights {
|
|
1526
1526
|
constructor(data) {
|
|
1527
|
+
this.block_hash = data.block_hash;
|
|
1527
1528
|
this.signed_at = data.signed_at && data.signed_at !== null ? dateFns.parseISO(data.signed_at.toString()) : null;
|
|
1528
1529
|
this.height = data.height;
|
|
1530
|
+
this.block_parent_hash = data.block_parent_hash;
|
|
1531
|
+
this.extra_data = data.extra_data;
|
|
1532
|
+
this.miner_address = data.miner_address;
|
|
1533
|
+
this.mining_cost = data.mining_cost;
|
|
1534
|
+
this.gas_used = data.gas_used;
|
|
1535
|
+
this.gas_limit = data.gas_limit;
|
|
1536
|
+
this.transactions_link = data.transactions_link;
|
|
1529
1537
|
}
|
|
1530
1538
|
}
|
|
1531
1539
|
let Pagination$2 = class Pagination {
|
|
@@ -7800,7 +7808,7 @@ class XykService {
|
|
|
7800
7808
|
}
|
|
7801
7809
|
}
|
|
7802
7810
|
|
|
7803
|
-
const userAgent = "com.covalenthq.sdk.typescript/1.0.
|
|
7811
|
+
const userAgent = "com.covalenthq.sdk.typescript/1.0.1";
|
|
7804
7812
|
class Response {
|
|
7805
7813
|
}
|
|
7806
7814
|
/**
|