@typemove/sui 2.0.5 → 2.0.6-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/esm/builtin/0x2.d.ts +14 -0
- package/dist/esm/builtin/0x2.d.ts.map +1 -1
- package/dist/esm/builtin/0x2.js +30 -1
- package/dist/esm/builtin/0x2.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +0 -5
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js +1 -27
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/move-coder.d.ts.map +1 -1
- package/dist/esm/move-coder.js +12 -0
- package/dist/esm/move-coder.js.map +1 -1
- package/package.json +2 -2
- package/src/abis/0x2.json +84 -1
- package/src/abis/0x3.json +0 -202
- package/src/builtin/0x2.ts +52 -1
- package/src/builtin/0x3.ts +1 -45
- package/src/move-coder.ts +12 -0
|
@@ -3669,9 +3669,23 @@ export declare namespace rangeproofs {
|
|
|
3669
3669
|
TransactionArgument,
|
|
3670
3670
|
TransactionArgument
|
|
3671
3671
|
];
|
|
3672
|
+
function verifyBulletproofsWithDstRistretto255(tx: Transaction, args: [
|
|
3673
|
+
string | TransactionObjectArgument,
|
|
3674
|
+
number | TransactionArgument,
|
|
3675
|
+
string | TransactionObjectArgument,
|
|
3676
|
+
string | TransactionObjectArgument,
|
|
3677
|
+
number | TransactionArgument
|
|
3678
|
+
]): TransactionArgument & [
|
|
3679
|
+
TransactionArgument,
|
|
3680
|
+
TransactionArgument,
|
|
3681
|
+
TransactionArgument,
|
|
3682
|
+
TransactionArgument,
|
|
3683
|
+
TransactionArgument
|
|
3684
|
+
];
|
|
3672
3685
|
}
|
|
3673
3686
|
namespace view {
|
|
3674
3687
|
function verifyBulletproofsRistretto255(client: SuiGrpcClient, args: [string, number, string, number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
3688
|
+
function verifyBulletproofsWithDstRistretto255(client: SuiGrpcClient, args: [string, number, string, string, number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
3675
3689
|
}
|
|
3676
3690
|
}
|
|
3677
3691
|
export declare namespace ristretto255 {
|