@volr/sdk-core 0.1.11 → 0.1.13

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.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: number;
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: number;
1060
1064
  } | {
1061
1065
  txId: string;
1062
1066
  status: 'FAILED';