@volr/sdk-core 0.1.11 → 0.1.12
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.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1057,6 +1057,10 @@ type RelayResult = {
|
|
|
1057
1057
|
txId: string;
|
|
1058
1058
|
status: 'CONFIRMED';
|
|
1059
1059
|
txHash: `0x${string}`;
|
|
1060
|
+
/** Gas used by the transaction */
|
|
1061
|
+
gasUsed: bigint;
|
|
1062
|
+
/** Block number where the transaction was included */
|
|
1063
|
+
blockNumber: bigint;
|
|
1060
1064
|
} | {
|
|
1061
1065
|
txId: string;
|
|
1062
1066
|
status: 'FAILED';
|
package/dist/index.d.ts
CHANGED
|
@@ -1057,6 +1057,10 @@ type RelayResult = {
|
|
|
1057
1057
|
txId: string;
|
|
1058
1058
|
status: 'CONFIRMED';
|
|
1059
1059
|
txHash: `0x${string}`;
|
|
1060
|
+
/** Gas used by the transaction */
|
|
1061
|
+
gasUsed: bigint;
|
|
1062
|
+
/** Block number where the transaction was included */
|
|
1063
|
+
blockNumber: bigint;
|
|
1060
1064
|
} | {
|
|
1061
1065
|
txId: string;
|
|
1062
1066
|
status: 'FAILED';
|