@sentio/sdk 4.3.2 → 4.3.3
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/aptos/builtin/0x1.d.ts +147 -1
- package/dist/aptos/builtin/0x1.d.ts.map +1 -1
- package/dist/aptos/builtin/0x1.js +243 -2
- package/dist/aptos/builtin/0x1.js.map +1 -1
- package/dist/sui/builtin/0x2.d.ts +14 -0
- package/dist/sui/builtin/0x2.d.ts.map +1 -1
- package/dist/sui/builtin/0x2.js +30 -1
- package/dist/sui/builtin/0x2.js.map +1 -1
- package/dist/sui/builtin/0x3.d.ts +0 -5
- package/dist/sui/builtin/0x3.d.ts.map +1 -1
- package/dist/sui/builtin/0x3.js +1 -27
- package/dist/sui/builtin/0x3.js.map +1 -1
- package/package.json +9 -9
- package/src/aptos/abis/0x1.json +273 -3
- package/src/aptos/builtin/0x1.ts +528 -2
- package/src/sui/abis/0x2.json +84 -1
- package/src/sui/abis/0x3.json +0 -202
- package/src/sui/builtin/0x2.ts +52 -1
- package/src/sui/builtin/0x3.ts +1 -45
|
@@ -3966,9 +3966,23 @@ export declare namespace rangeproofs {
|
|
|
3966
3966
|
TransactionArgument,
|
|
3967
3967
|
TransactionArgument
|
|
3968
3968
|
];
|
|
3969
|
+
function verifyBulletproofsWithDstRistretto255(tx: Transaction, args: [
|
|
3970
|
+
string | TransactionObjectArgument,
|
|
3971
|
+
number | TransactionArgument,
|
|
3972
|
+
string | TransactionObjectArgument,
|
|
3973
|
+
string | TransactionObjectArgument,
|
|
3974
|
+
number | TransactionArgument
|
|
3975
|
+
]): TransactionArgument & [
|
|
3976
|
+
TransactionArgument,
|
|
3977
|
+
TransactionArgument,
|
|
3978
|
+
TransactionArgument,
|
|
3979
|
+
TransactionArgument,
|
|
3980
|
+
TransactionArgument
|
|
3981
|
+
];
|
|
3969
3982
|
}
|
|
3970
3983
|
namespace view {
|
|
3971
3984
|
function verifyBulletproofsRistretto255(client: SuiGrpcClient, args: [string, number, string, number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
3985
|
+
function verifyBulletproofsWithDstRistretto255(client: SuiGrpcClient, args: [string, number, string, string, number]): Promise<TypedSimulateResults<[boolean]>>;
|
|
3972
3986
|
}
|
|
3973
3987
|
}
|
|
3974
3988
|
export declare namespace ristretto255 {
|