@typemove/aptos 1.6.5 → 1.6.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/cjs/builtin/0x1.d.ts +12 -0
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +52 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +12 -0
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +52 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/package.json +3 -3
- package/src/abis/0x1.json +73 -9
- package/src/builtin/0x1.ts +74 -1
|
@@ -3070,6 +3070,10 @@ export declare namespace managed_coin {
|
|
|
3070
3070
|
typeArguments: [MoveStructId];
|
|
3071
3071
|
functionArguments: [bigint];
|
|
3072
3072
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3073
|
+
function destroyCaps<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
|
3074
|
+
typeArguments: [MoveStructId];
|
|
3075
|
+
functionArguments: [];
|
|
3076
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3073
3077
|
function initialize<T0 = any>(client: Aptos, account: AptosAccount, request: {
|
|
3074
3078
|
typeArguments: [MoveStructId];
|
|
3075
3079
|
functionArguments: [string, string, number, Boolean];
|
|
@@ -5283,6 +5287,14 @@ export declare namespace multisig_account {
|
|
|
5283
5287
|
string[]
|
|
5284
5288
|
];
|
|
5285
5289
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5290
|
+
function createWithExistingAccountAndRevokeAuthKeyCall(client: Aptos, account: AptosAccount, request: {
|
|
5291
|
+
typeArguments: [];
|
|
5292
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
|
5293
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5294
|
+
function createWithExistingAccountCall(client: Aptos, account: AptosAccount, request: {
|
|
5295
|
+
typeArguments: [];
|
|
5296
|
+
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|
|
5297
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
5286
5298
|
function createWithOwners(client: Aptos, account: AptosAccount, request: {
|
|
5287
5299
|
typeArguments: [];
|
|
5288
5300
|
functionArguments: [MoveAddressType[], bigint, string[], string[]];
|