@typemove/aptos 1.9.1-rc.1 → 1.9.1-rc.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.
@@ -3562,6 +3562,19 @@ export declare namespace fungible_asset {
3562
3562
  const TYPE_QNAME = "0x1::fungible_asset::FungibleStore";
3563
3563
  function type(): TypeDescriptor<FungibleStore>;
3564
3564
  }
3565
+ interface FungibleStoreDeletion {
3566
+ store: MoveAddressType;
3567
+ owner: MoveAddressType;
3568
+ metadata: MoveAddressType;
3569
+ }
3570
+ namespace FungibleStoreDeletion {
3571
+ const TYPE_QNAME = "0x1::fungible_asset::FungibleStoreDeletion";
3572
+ function type(): TypeDescriptor<FungibleStoreDeletion>;
3573
+ }
3574
+ type FungibleStoreDeletionInstance = TypedEventInstance<FungibleStoreDeletion> & {
3575
+ data_decoded: FungibleStoreDeletion;
3576
+ type_arguments: [];
3577
+ };
3565
3578
  interface Metadata {
3566
3579
  name: string;
3567
3580
  symbol: string;
@@ -5789,6 +5802,18 @@ export declare namespace aggregator_factory {
5789
5802
  namespace view { }
5790
5803
  }
5791
5804
  export declare namespace account_abstraction {
5805
+ interface DerivableDispatchableAuthenticator {
5806
+ }
5807
+ namespace DerivableDispatchableAuthenticator {
5808
+ const TYPE_QNAME = "0x1::account_abstraction::DerivableDispatchableAuthenticator";
5809
+ function type(): TypeDescriptor<DerivableDispatchableAuthenticator>;
5810
+ }
5811
+ interface DerivableRegisterValue {
5812
+ }
5813
+ namespace DerivableRegisterValue {
5814
+ const TYPE_QNAME = "0x1::account_abstraction::DerivableRegisterValue";
5815
+ function type(): TypeDescriptor<DerivableRegisterValue>;
5816
+ }
5792
5817
  interface DispatchableAuthenticator {
5793
5818
  }
5794
5819
  namespace DispatchableAuthenticator {
@@ -5820,6 +5845,10 @@ export declare namespace account_abstraction {
5820
5845
  type_arguments: [];
5821
5846
  };
5822
5847
  namespace entry {
5848
+ function initialize(client: Aptos, account: AptosAccount, request: {
5849
+ typeArguments: [];
5850
+ functionArguments: [];
5851
+ }, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
5823
5852
  function addAuthenticationFunction(client: Aptos, account: AptosAccount, request: {
5824
5853
  typeArguments: [];
5825
5854
  functionArguments: [MoveAddressType, string, string];
@@ -5828,6 +5857,10 @@ export declare namespace account_abstraction {
5828
5857
  typeArguments: [];
5829
5858
  functionArguments: [MoveAddressType, string, string];
5830
5859
  }, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
5860
+ function registerDerivableAuthenticationFunction(client: Aptos, account: AptosAccount, request: {
5861
+ typeArguments: [];
5862
+ functionArguments: [MoveAddressType, string, string];
5863
+ }, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
5831
5864
  function removeAuthenticationFunction(client: Aptos, account: AptosAccount, request: {
5832
5865
  typeArguments: [];
5833
5866
  functionArguments: [MoveAddressType, string, string];
@@ -5846,6 +5879,9 @@ export declare namespace account_abstraction {
5846
5879
  }, options?: InputGenerateTransactionOptions): Promise<PendingTransactionResponse>;
5847
5880
  }
5848
5881
  namespace view {
5882
+ function deriveAccountAddressView(client: Aptos, request: {
5883
+ functionArguments: [MoveAddressType, string, string, string];
5884
+ }, version?: bigint): Promise<[MoveAddressType]>;
5849
5885
  function dispatchableAuthenticator(client: Aptos, request: {
5850
5886
  functionArguments: [MoveAddressType];
5851
5887
  }, version?: bigint): Promise<[option.Option<function_info.FunctionInfo[]>]>;