@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.
- package/dist/cjs/builtin/0x2.d.ts +4 -0
- package/dist/cjs/builtin/0x2.d.ts.map +1 -1
- package/dist/cjs/builtin/0x2.js +39 -1
- package/dist/cjs/builtin/0x2.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +24 -0
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +105 -1
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x2.d.ts +4 -0
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +39 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +24 -0
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +105 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/package.json +2 -2
- package/src/abis/0x2.json +40 -0
- package/src/abis/0x3.json +180 -0
- package/src/builtin/0x2.ts +55 -1
- package/src/builtin/0x3.ts +156 -1
|
@@ -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
|
}
|