@typemove/sui 1.10.0 → 1.10.1-rc.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.
@@ -3723,6 +3723,8 @@ export declare namespace tx_context {
3723
3723
  function epoch(tx: Transaction, args: []): TransactionArgument & [];
3724
3724
  function epochTimestampMs(tx: Transaction, args: []): TransactionArgument & [];
3725
3725
  function freshObjectAddress(tx: Transaction, args: []): TransactionArgument & [];
3726
+ function gasPrice(tx: Transaction, args: []): TransactionArgument & [];
3727
+ function referenceGasPrice(tx: Transaction, args: []): TransactionArgument & [];
3726
3728
  function sender(tx: Transaction, args: []): TransactionArgument & [];
3727
3729
  function sponsor(tx: Transaction, args: []): TransactionArgument & [];
3728
3730
  }
@@ -3731,6 +3733,8 @@ export declare namespace tx_context {
3731
3733
  function epoch(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
3732
3734
  function epochTimestampMs(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
3733
3735
  function freshObjectAddress(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
3736
+ function gasPrice(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
3737
+ function referenceGasPrice(client: SuiClient, args: []): Promise<TypedDevInspectResults<[bigint]>>;
3734
3738
  function sender(client: SuiClient, args: []): Promise<TypedDevInspectResults<[string]>>;
3735
3739
  function sponsor(client: SuiClient, args: []): Promise<TypedDevInspectResults<[_0x1.option.Option<string>]>>;
3736
3740
  }