@typemove/aptos 1.6.3 → 1.6.4-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 +17 -1
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +47 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.js +1 -1
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/builtin/0x4.js +1 -1
- package/dist/cjs/builtin/0x4.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +17 -1
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js +47 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.js +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x4.js +1 -1
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/package.json +2 -2
- package/src/abis/0x1.json +571 -17
- package/src/abis/0x3.json +60 -0
- package/src/abis/0x4.json +139 -2
- package/src/builtin/0x1.ts +66 -2
- package/src/builtin/0x3.ts +1 -1
- package/src/builtin/0x4.ts +1 -1
|
@@ -518,6 +518,13 @@ export declare namespace jwks {
|
|
|
518
518
|
data_decoded: AllProvidersJWKs;
|
|
519
519
|
type_arguments: [];
|
|
520
520
|
}
|
|
521
|
+
interface FederatedJWKs {
|
|
522
|
+
jwks: jwks.AllProvidersJWKs;
|
|
523
|
+
}
|
|
524
|
+
namespace FederatedJWKs {
|
|
525
|
+
const TYPE_QNAME = "0x1::jwks::FederatedJWKs";
|
|
526
|
+
function type(): TypeDescriptor<FederatedJWKs>;
|
|
527
|
+
}
|
|
521
528
|
interface JWK {
|
|
522
529
|
variant: copyable_any.Any;
|
|
523
530
|
}
|
|
@@ -686,7 +693,12 @@ export declare namespace jwks {
|
|
|
686
693
|
data_decoded: UnsupportedJWK;
|
|
687
694
|
type_arguments: [];
|
|
688
695
|
}
|
|
689
|
-
namespace entry {
|
|
696
|
+
namespace entry {
|
|
697
|
+
function updateFederatedJwkSet(client: Aptos, account: AptosAccount, request: {
|
|
698
|
+
typeArguments: [];
|
|
699
|
+
functionArguments: [string, string[], string[], string[], string[]];
|
|
700
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
701
|
+
}
|
|
690
702
|
namespace view { }
|
|
691
703
|
}
|
|
692
704
|
export declare namespace util {
|
|
@@ -3247,6 +3259,10 @@ export declare namespace aptos_account {
|
|
|
3247
3259
|
typeArguments: [];
|
|
3248
3260
|
functionArguments: [MoveAddressType];
|
|
3249
3261
|
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3262
|
+
function fungibleTransferOnly(client: Aptos, account: AptosAccount, request: {
|
|
3263
|
+
typeArguments: [];
|
|
3264
|
+
functionArguments: [MoveAddressType, bigint];
|
|
3265
|
+
}, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
|
|
3250
3266
|
function setAllowDirectCoinTransfers(client: Aptos, account: AptosAccount, request: {
|
|
3251
3267
|
typeArguments: [];
|
|
3252
3268
|
functionArguments: [Boolean];
|