@aptos-labs/js-pro 0.1.0-experimental.26 → 0.1.0-experimental.28

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/index.d.ts CHANGED
@@ -4901,7 +4901,7 @@ type Events_Stream_Cursor_Value_Input = {
4901
4901
  type Fungible_Asset_Activities = {
4902
4902
  __typename?: 'fungible_asset_activities';
4903
4903
  amount?: Maybe<Scalars['numeric']['output']>;
4904
- asset_type: Scalars['String']['output'];
4904
+ asset_type?: Maybe<Scalars['String']['output']>;
4905
4905
  block_height: Scalars['bigint']['output'];
4906
4906
  entry_function_id_str?: Maybe<Scalars['String']['output']>;
4907
4907
  event_index: Scalars['bigint']['output'];
@@ -4911,7 +4911,7 @@ type Fungible_Asset_Activities = {
4911
4911
  is_transaction_success: Scalars['Boolean']['output'];
4912
4912
  /** An object relationship */
4913
4913
  metadata?: Maybe<Fungible_Asset_Metadata>;
4914
- owner_address: Scalars['String']['output'];
4914
+ owner_address?: Maybe<Scalars['String']['output']>;
4915
4915
  /** An array relationship */
4916
4916
  owner_aptos_names: Array<Current_Aptos_Names>;
4917
4917
  /** An aggregate relationship */
@@ -10357,12 +10357,30 @@ type GetAccountCurrentTokensQuery = {
10357
10357
  __typename?: 'query_root';
10358
10358
  current_token_ownerships_v2: Array<{
10359
10359
  __typename?: 'current_token_ownerships_v2';
10360
+ amount: number;
10361
+ is_soulbound_v2?: boolean | null;
10362
+ is_fungible_v2?: boolean | null;
10360
10363
  current_token_data?: {
10361
10364
  __typename?: 'current_token_datas_v2';
10362
- last_transaction_timestamp: any;
10363
- token_data_id: string;
10364
- token_name: string;
10365
+ description: string;
10365
10366
  token_uri: string;
10367
+ token_name: string;
10368
+ token_data_id: string;
10369
+ token_properties: any;
10370
+ token_standard: string;
10371
+ current_collection?: {
10372
+ __typename?: 'current_collections_v2';
10373
+ uri: string;
10374
+ max_supply?: number | null;
10375
+ description: string;
10376
+ collection_name: string;
10377
+ collection_id: string;
10378
+ creator_address: string;
10379
+ cdn_asset_uris?: {
10380
+ __typename?: 'nft_metadata_crawler_parsed_asset_uris';
10381
+ cdn_image_uri?: string | null;
10382
+ } | null;
10383
+ } | null;
10366
10384
  cdn_asset_uris?: {
10367
10385
  __typename?: 'nft_metadata_crawler_parsed_asset_uris';
10368
10386
  cdn_image_uri?: string | null;
@@ -10437,18 +10455,6 @@ type GetAccountCollectionsQuery = {
10437
10455
  } | null;
10438
10456
  }>;
10439
10457
  };
10440
- type GetCollectionsFloorPriceQueryVariables = Exact<{
10441
- collectionIds: Array<Scalars['String']['input']> | Scalars['String']['input'];
10442
- }>;
10443
- type GetCollectionsFloorPriceQuery = {
10444
- __typename?: 'query_root';
10445
- nft_marketplace_v2_current_nft_marketplace_listings: Array<{
10446
- __typename?: 'nft_marketplace_v2_current_nft_marketplace_listings';
10447
- collection_id: string;
10448
- coin_type?: string | null;
10449
- price: number;
10450
- }>;
10451
- };
10452
10458
  type GetTokenDataQueryVariables = Exact<{
10453
10459
  address: Scalars['String']['input'];
10454
10460
  }>;
@@ -10747,9 +10753,9 @@ type GetConsolidatedActivitiesQuery = {
10747
10753
  type: string;
10748
10754
  amount?: number | null;
10749
10755
  block_height: any;
10750
- asset_type: string;
10756
+ asset_type?: string | null;
10751
10757
  entry_function_id_str?: string | null;
10752
- owner_address: string;
10758
+ owner_address?: string | null;
10753
10759
  event_index: any;
10754
10760
  is_gas_fee: boolean;
10755
10761
  is_transaction_success: boolean;
@@ -10830,6 +10836,16 @@ type GetFungibleAssetMetadataQuery = {
10830
10836
  symbol: string;
10831
10837
  }>;
10832
10838
  };
10839
+ type GetCurrentAptBalanceQueryVariables = Exact<{
10840
+ address: Scalars['String']['input'];
10841
+ }>;
10842
+ type GetCurrentAptBalanceQuery = {
10843
+ __typename?: 'query_root';
10844
+ current_fungible_asset_balances: Array<{
10845
+ __typename?: 'current_fungible_asset_balances';
10846
+ amount?: number | null;
10847
+ }>;
10848
+ };
10833
10849
  type GetDelegatedStakingRoyaltiesQueryVariables = Exact<{
10834
10850
  address: Scalars['String']['input'];
10835
10851
  pool?: InputMaybe<Scalars['String']['input']>;
@@ -10900,7 +10916,6 @@ declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper)
10900
10916
  getAccountCurrentTokens(variables: GetAccountCurrentTokensQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetAccountCurrentTokensQuery>;
10901
10917
  getCurrentTokenData(variables: GetCurrentTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetCurrentTokenDataQuery>;
10902
10918
  getAccountCollections(variables: GetAccountCollectionsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetAccountCollectionsQuery>;
10903
- getCollectionsFloorPrice(variables: GetCollectionsFloorPriceQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetCollectionsFloorPriceQuery>;
10904
10919
  getTokenData(variables: GetTokenDataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetTokenDataQuery>;
10905
10920
  getTokenPendingClaims(variables: GetTokenPendingClaimsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetTokenPendingClaimsQuery>;
10906
10921
  getPendingClaimsForToken(variables: GetPendingClaimsForTokenQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetPendingClaimsForTokenQuery>;
@@ -10910,6 +10925,7 @@ declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionWrapper)
10910
10925
  getProcessorLastVersion(variables: GetProcessorLastVersionQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetProcessorLastVersionQuery>;
10911
10926
  getConsolidatedActivities(variables: GetConsolidatedActivitiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetConsolidatedActivitiesQuery>;
10912
10927
  getFungibleAssetMetadata(variables: GetFungibleAssetMetadataQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetFungibleAssetMetadataQuery>;
10928
+ getCurrentAptBalance(variables: GetCurrentAptBalanceQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetCurrentAptBalanceQuery>;
10913
10929
  getDelegatedStakingRoyalties(variables: GetDelegatedStakingRoyaltiesQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetDelegatedStakingRoyaltiesQuery>;
10914
10930
  getDelegatedStaking(variables: GetDelegatedStakingQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetDelegatedStakingQuery>;
10915
10931
  getDelegationPools(variables?: GetDelegationPoolsQueryVariables, requestHeaders?: GraphQLClientRequestHeaders): Promise<GetDelegationPoolsQuery>;
@@ -11385,14 +11401,14 @@ interface TokenData {
11385
11401
  cdnImageUri?: string | null;
11386
11402
  collection: string;
11387
11403
  collectionData?: CollectionData;
11388
- collectionDataIdHash?: string;
11404
+ collectionId: string;
11389
11405
  creator: string;
11390
11406
  description: string;
11391
- idHash: string;
11392
11407
  isFungibleV2: boolean;
11393
11408
  isSoulbound: boolean;
11394
11409
  metadataUri: string;
11395
11410
  name: string;
11411
+ tokenId: string;
11396
11412
  tokenStandard: TokenStandard;
11397
11413
  }
11398
11414
  type ExtendedTokenData = TokenData & {
@@ -11426,21 +11442,20 @@ declare enum TokenEvent {
11426
11442
  }
11427
11443
  interface CollectionData {
11428
11444
  cdnImageUri?: string;
11429
- collectionDataIdHash: string;
11445
+ collectionId: string;
11430
11446
  collectionName: string;
11431
11447
  creatorAddress: string;
11432
11448
  description: string;
11433
11449
  distinctTokens?: number;
11434
11450
  fallbackUri?: string;
11435
11451
  floorPrice?: number;
11436
- idHash: string;
11437
11452
  metadataUri: string;
11438
11453
  name: string;
11439
11454
  supply?: number | null;
11440
11455
  }
11441
11456
  interface TokenActivity {
11442
11457
  accountAddress: string;
11443
- collectionDataId?: string;
11458
+ collectionId?: string;
11444
11459
  collectionName?: string;
11445
11460
  creatorAddress?: string;
11446
11461
  fromAddress?: string | null;
@@ -11788,7 +11803,7 @@ declare function fetchNameFromAddress(this: AptosJSProClient, { address, network
11788
11803
  interface FetchBalanceArgs {
11789
11804
  address: string;
11790
11805
  }
11791
- declare function fetchBalance(this: AptosJSProClient, { address }: FetchBalanceArgs): Promise<bigint>;
11806
+ declare function fetchAptBalance(this: AptosJSProClient, { address }: FetchBalanceArgs): Promise<bigint>;
11792
11807
 
11793
11808
  declare const prettifyCoinInfo: (client: AptosJSProClient, coinInfo: CoinInfoData) => CoinInfoData;
11794
11809
  type FetchCoinInfoArgs = {
@@ -11799,20 +11814,6 @@ type FetchCoinInfoArgs = {
11799
11814
  */
11800
11815
  declare function fetchCoinInfo(this: AptosJSProClient, { coinType }: FetchCoinInfoArgs): Promise<CoinInfoData | undefined>;
11801
11816
 
11802
- interface FetchCoinPriceArgs {
11803
- coinType: CoinType;
11804
- currency?: string;
11805
- }
11806
- interface PriceInfo {
11807
- currentPrice: string;
11808
- lastFetched: number;
11809
- percentChange: number;
11810
- }
11811
- /**
11812
- * @description Fetches the price of a coin from CoinGecko
11813
- */
11814
- declare function fetchCoinPrice(this: AptosJSProClient, { coinType, currency }: FetchCoinPriceArgs): Promise<PriceInfo | undefined>;
11815
-
11816
11817
  interface FetchEventsArgs {
11817
11818
  address: string;
11818
11819
  creationNumber: number;
@@ -12366,13 +12367,13 @@ declare function fetchOwnedDigitalAssets(this: AptosJSProClient, args: FetchOwne
12366
12367
  last_transaction_timestamp: any;
12367
12368
  last_transaction_version: any;
12368
12369
  maximum?: any;
12369
- supply: any;
12370
+ supply?: any;
12370
12371
  token_data_id: string;
12371
12372
  token_name: string;
12372
12373
  token_properties: any;
12373
12374
  token_standard: string;
12374
12375
  token_uri: string;
12375
- decimals: any;
12376
+ decimals?: any;
12376
12377
  current_collection?: {
12377
12378
  collection_id: string;
12378
12379
  collection_name: string;
@@ -12572,9 +12573,6 @@ declare class AptosJSProClient {
12572
12573
  offset?: InputMaybe<number> | undefined;
12573
12574
  limit?: InputMaybe<number> | undefined;
12574
12575
  }>, requestHeaders?: graphql_request_build_cjs_types.GraphQLClientRequestHeaders | undefined): Promise<GetAccountCollectionsQuery>;
12575
- getCollectionsFloorPrice(variables: Exact<{
12576
- collectionIds: string | string[];
12577
- }>, requestHeaders?: graphql_request_build_cjs_types.GraphQLClientRequestHeaders | undefined): Promise<GetCollectionsFloorPriceQuery>;
12578
12576
  getTokenData(variables: Exact<{
12579
12577
  address: string;
12580
12578
  }>, requestHeaders?: graphql_request_build_cjs_types.GraphQLClientRequestHeaders | undefined): Promise<GetTokenDataQuery>;
@@ -12614,6 +12612,9 @@ declare class AptosJSProClient {
12614
12612
  getFungibleAssetMetadata(variables: Exact<{
12615
12613
  type: string;
12616
12614
  }>, requestHeaders?: graphql_request_build_cjs_types.GraphQLClientRequestHeaders | undefined): Promise<GetFungibleAssetMetadataQuery>;
12615
+ getCurrentAptBalance(variables: Exact<{
12616
+ address: string;
12617
+ }>, requestHeaders?: graphql_request_build_cjs_types.GraphQLClientRequestHeaders | undefined): Promise<GetCurrentAptBalanceQuery>;
12617
12618
  getDelegatedStakingRoyalties(variables: Exact<{
12618
12619
  address: string;
12619
12620
  pool?: InputMaybe<string> | undefined;
@@ -12669,14 +12670,13 @@ declare class AptosJSProClient {
12669
12670
  fetchGasPrice: typeof fetchGasPrice;
12670
12671
  fetchFaucetStatus: typeof fetchFaucetStatus;
12671
12672
  fetchEvents: typeof fetchEvents;
12672
- fetchCoinPrice: typeof fetchCoinPrice;
12673
12673
  fetchCoinInfo: typeof fetchCoinInfo;
12674
12674
  fetchAddressFromName: typeof fetchAddressFromName;
12675
12675
  fetchNameFromAddress: typeof fetchNameFromAddress;
12676
12676
  fetchIndexedTokensPendingOfferClaims: typeof fetchIndexedTokensPendingOfferClaims;
12677
12677
  fetchAccountTotalTokens: typeof fetchAccountTotalTokens;
12678
12678
  fetchTokenAcquiredDate: typeof fetchTokenAcquiredDate;
12679
- fetchBalance: typeof fetchBalance;
12679
+ fetchAptBalance: typeof fetchAptBalance;
12680
12680
  fetchTokenDataWithAddress: typeof fetchTokenDataWithAddress;
12681
12681
  getExplorerUrl: typeof getExplorerUrl;
12682
12682
  submitTransaction: typeof submitTransaction;
@@ -12914,4 +12914,4 @@ declare const rawInfoTestNet: RawCoinInfo[];
12914
12914
 
12915
12915
  declare const rawInfoDevNet: RawCoinInfo[];
12916
12916
 
12917
- export { APTOS_NAMES_ENDPOINT, APTOS_UNIT, AccountErrorReason, AccountInfo, AccountNotFoundError, Account_Transactions, Account_TransactionsCoin_ActivitiesArgs, Account_TransactionsCoin_Activities_AggregateArgs, Account_TransactionsDelegated_Staking_ActivitiesArgs, Account_TransactionsFungible_Asset_ActivitiesArgs, Account_TransactionsToken_ActivitiesArgs, Account_TransactionsToken_Activities_AggregateArgs, Account_TransactionsToken_Activities_V2Args, Account_TransactionsToken_Activities_V2_AggregateArgs, Account_Transactions_Aggregate, Account_Transactions_Aggregate_Fields, Account_Transactions_Aggregate_FieldsCountArgs, Account_Transactions_Avg_Fields, Account_Transactions_Bool_Exp, Account_Transactions_Max_Fields, Account_Transactions_Min_Fields, Account_Transactions_Order_By, Account_Transactions_Select_Column, Account_Transactions_Stddev_Fields, Account_Transactions_Stddev_Pop_Fields, Account_Transactions_Stddev_Samp_Fields, Account_Transactions_Stream_Cursor_Input, Account_Transactions_Stream_Cursor_Value_Input, Account_Transactions_Sum_Fields, Account_Transactions_Var_Pop_Fields, Account_Transactions_Var_Samp_Fields, Account_Transactions_Variance_Fields, ActivityEvent, ActivityItem, AdapterSignerClient, Address_Events_Summary, Address_Events_Summary_Bool_Exp, Address_Events_Summary_Order_By, Address_Events_Summary_Select_Column, Address_Events_Summary_Stream_Cursor_Input, Address_Events_Summary_Stream_Cursor_Value_Input, Address_Version_From_Events, Address_Version_From_EventsCoin_ActivitiesArgs, Address_Version_From_EventsCoin_Activities_AggregateArgs, Address_Version_From_EventsDelegated_Staking_ActivitiesArgs, Address_Version_From_EventsToken_ActivitiesArgs, Address_Version_From_EventsToken_Activities_AggregateArgs, Address_Version_From_EventsToken_Activities_V2Args, Address_Version_From_EventsToken_Activities_V2_AggregateArgs, Address_Version_From_Events_Aggregate, Address_Version_From_Events_Aggregate_Fields, Address_Version_From_Events_Aggregate_FieldsCountArgs, Address_Version_From_Events_Avg_Fields, Address_Version_From_Events_Bool_Exp, Address_Version_From_Events_Max_Fields, Address_Version_From_Events_Min_Fields, Address_Version_From_Events_Order_By, Address_Version_From_Events_Select_Column, Address_Version_From_Events_Stddev_Fields, Address_Version_From_Events_Stddev_Pop_Fields, Address_Version_From_Events_Stddev_Samp_Fields, Address_Version_From_Events_Stream_Cursor_Input, Address_Version_From_Events_Stream_Cursor_Value_Input, Address_Version_From_Events_Sum_Fields, Address_Version_From_Events_Var_Pop_Fields, Address_Version_From_Events_Var_Samp_Fields, Address_Version_From_Events_Variance_Fields, Address_Version_From_Move_Resources, Address_Version_From_Move_ResourcesCoin_ActivitiesArgs, Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs, Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs, Address_Version_From_Move_ResourcesToken_ActivitiesArgs, Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs, Address_Version_From_Move_ResourcesToken_Activities_V2Args, Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs, Address_Version_From_Move_Resources_Aggregate, Address_Version_From_Move_Resources_Aggregate_Fields, Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs, Address_Version_From_Move_Resources_Avg_Fields, Address_Version_From_Move_Resources_Bool_Exp, Address_Version_From_Move_Resources_Max_Fields, Address_Version_From_Move_Resources_Min_Fields, Address_Version_From_Move_Resources_Order_By, Address_Version_From_Move_Resources_Select_Column, Address_Version_From_Move_Resources_Stddev_Fields, Address_Version_From_Move_Resources_Stddev_Pop_Fields, Address_Version_From_Move_Resources_Stddev_Samp_Fields, Address_Version_From_Move_Resources_Stream_Cursor_Input, Address_Version_From_Move_Resources_Stream_Cursor_Value_Input, Address_Version_From_Move_Resources_Sum_Fields, Address_Version_From_Move_Resources_Var_Pop_Fields, Address_Version_From_Move_Resources_Var_Samp_Fields, Address_Version_From_Move_Resources_Variance_Fields, AnyRawTransactionFactory, AptosIdentity, AptosJSProClient, AptosJSProClientArgs, AptosJSProClientState, AptosName, BaseConfirmedActivityItem, BaseEvent$1 as BaseEvent, BaseTransaction, BaseTransactionProps, Bigint_Comparison_Exp, Block_Metadata_Transactions, Block_Metadata_TransactionsFailed_Proposer_IndicesArgs, Block_Metadata_TransactionsPrevious_Block_Votes_BitvecArgs, Block_Metadata_Transactions_Bool_Exp, Block_Metadata_Transactions_Order_By, Block_Metadata_Transactions_Select_Column, Block_Metadata_Transactions_Stream_Cursor_Input, Block_Metadata_Transactions_Stream_Cursor_Value_Input, Boolean_Comparison_Exp, COIN_GECKO_ENDPOINT, COIN_LISTS, ClientConfigs, CoinBalanceChange, CoinBalanceChangesByAccount, CoinBalanceChangesByCoinType, CoinDepositEvent, CoinErrorReason, CoinEvent, CoinEventActivityItem, CoinInfoData, CoinInfoResource, CoinInfoResourceData, CoinInfoWithMetadata, CoinMetadata, CoinMintTransaction, CoinRaw, CoinStoreResource, CoinStoreResourceData, CoinTransferActivityItem, CoinTransferPayloadArgs, CoinTransferTransaction, CoinType, CoinWithdrawEvent, Coin_Activities, Coin_ActivitiesAptos_NamesArgs, Coin_ActivitiesAptos_Names_AggregateArgs, Coin_Activities_Aggregate, Coin_Activities_Aggregate_Bool_Exp, Coin_Activities_Aggregate_Bool_Exp_Bool_And, Coin_Activities_Aggregate_Bool_Exp_Bool_Or, Coin_Activities_Aggregate_Bool_Exp_Count, Coin_Activities_Aggregate_Fields, Coin_Activities_Aggregate_FieldsCountArgs, Coin_Activities_Aggregate_Order_By, Coin_Activities_Avg_Fields, Coin_Activities_Avg_Order_By, Coin_Activities_Bool_Exp, Coin_Activities_Max_Fields, Coin_Activities_Max_Order_By, Coin_Activities_Min_Fields, Coin_Activities_Min_Order_By, Coin_Activities_Order_By, Coin_Activities_Select_Column, Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Coin_Activities_Stddev_Fields, Coin_Activities_Stddev_Order_By, Coin_Activities_Stddev_Pop_Fields, Coin_Activities_Stddev_Pop_Order_By, Coin_Activities_Stddev_Samp_Fields, Coin_Activities_Stddev_Samp_Order_By, Coin_Activities_Stream_Cursor_Input, Coin_Activities_Stream_Cursor_Value_Input, Coin_Activities_Sum_Fields, Coin_Activities_Sum_Order_By, Coin_Activities_Var_Pop_Fields, Coin_Activities_Var_Pop_Order_By, Coin_Activities_Var_Samp_Fields, Coin_Activities_Var_Samp_Order_By, Coin_Activities_Variance_Fields, Coin_Activities_Variance_Order_By, Coin_Balances, Coin_Balances_Bool_Exp, Coin_Balances_Order_By, Coin_Balances_Select_Column, Coin_Balances_Stream_Cursor_Input, Coin_Balances_Stream_Cursor_Value_Input, Coin_Infos, Coin_Infos_Bool_Exp, Coin_Infos_Order_By, Coin_Infos_Select_Column, Coin_Infos_Stream_Cursor_Input, Coin_Infos_Stream_Cursor_Value_Input, Coin_Supply, Coin_Supply_Bool_Exp, Coin_Supply_Order_By, Coin_Supply_Select_Column, Coin_Supply_Stream_Cursor_Input, Coin_Supply_Stream_Cursor_Value_Input, CollectionData, CollectionDataFieldsFragment, Collection_Datas, Collection_Datas_Bool_Exp, Collection_Datas_Order_By, Collection_Datas_Select_Column, Collection_Datas_Stream_Cursor_Input, Collection_Datas_Stream_Cursor_Value_Input, ConfirmedActivityItem, CreateAccountTransferPayloadArgs, CurrentTokenData, CurrentTokenOwnership, CurrentTokenPendingClaimsFragment, Current_Ans_Lookup, Current_Ans_LookupAll_Token_OwnershipsArgs, Current_Ans_LookupAll_Token_Ownerships_AggregateArgs, Current_Ans_Lookup_Bool_Exp, Current_Ans_Lookup_Order_By, Current_Ans_Lookup_Select_Column, Current_Ans_Lookup_Stream_Cursor_Input, Current_Ans_Lookup_Stream_Cursor_Value_Input, Current_Ans_Lookup_V2, Current_Ans_Lookup_V2_Bool_Exp, Current_Ans_Lookup_V2_Order_By, Current_Ans_Lookup_V2_Select_Column, Current_Ans_Lookup_V2_Stream_Cursor_Input, Current_Ans_Lookup_V2_Stream_Cursor_Value_Input, Current_Aptos_Names, Current_Aptos_Names_Aggregate, Current_Aptos_Names_Aggregate_Bool_Exp, Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And, Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or, Current_Aptos_Names_Aggregate_Bool_Exp_Count, Current_Aptos_Names_Aggregate_Fields, Current_Aptos_Names_Aggregate_FieldsCountArgs, Current_Aptos_Names_Aggregate_Order_By, Current_Aptos_Names_Avg_Fields, Current_Aptos_Names_Avg_Order_By, Current_Aptos_Names_Bool_Exp, Current_Aptos_Names_Max_Fields, Current_Aptos_Names_Max_Order_By, Current_Aptos_Names_Min_Fields, Current_Aptos_Names_Min_Order_By, Current_Aptos_Names_Order_By, Current_Aptos_Names_Select_Column, Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Current_Aptos_Names_Stddev_Fields, Current_Aptos_Names_Stddev_Order_By, Current_Aptos_Names_Stddev_Pop_Fields, Current_Aptos_Names_Stddev_Pop_Order_By, Current_Aptos_Names_Stddev_Samp_Fields, Current_Aptos_Names_Stddev_Samp_Order_By, Current_Aptos_Names_Stream_Cursor_Input, Current_Aptos_Names_Stream_Cursor_Value_Input, Current_Aptos_Names_Sum_Fields, Current_Aptos_Names_Sum_Order_By, Current_Aptos_Names_Var_Pop_Fields, Current_Aptos_Names_Var_Pop_Order_By, Current_Aptos_Names_Var_Samp_Fields, Current_Aptos_Names_Var_Samp_Order_By, Current_Aptos_Names_Variance_Fields, Current_Aptos_Names_Variance_Order_By, Current_Coin_Balances, Current_Coin_Balances_Bool_Exp, Current_Coin_Balances_Order_By, Current_Coin_Balances_Select_Column, Current_Coin_Balances_Stream_Cursor_Input, Current_Coin_Balances_Stream_Cursor_Value_Input, Current_Collection_Datas, Current_Collection_Datas_Bool_Exp, Current_Collection_Datas_Order_By, Current_Collection_Datas_Select_Column, Current_Collection_Datas_Stream_Cursor_Input, Current_Collection_Datas_Stream_Cursor_Value_Input, Current_Collection_Ownership_V2_View, Current_Collection_Ownership_V2_View_Aggregate, Current_Collection_Ownership_V2_View_Aggregate_Fields, Current_Collection_Ownership_V2_View_Aggregate_FieldsCountArgs, Current_Collection_Ownership_V2_View_Avg_Fields, Current_Collection_Ownership_V2_View_Bool_Exp, Current_Collection_Ownership_V2_View_Max_Fields, Current_Collection_Ownership_V2_View_Min_Fields, Current_Collection_Ownership_V2_View_Order_By, Current_Collection_Ownership_V2_View_Select_Column, Current_Collection_Ownership_V2_View_Stddev_Fields, Current_Collection_Ownership_V2_View_Stddev_Pop_Fields, Current_Collection_Ownership_V2_View_Stddev_Samp_Fields, Current_Collection_Ownership_V2_View_Stream_Cursor_Input, Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input, Current_Collection_Ownership_V2_View_Sum_Fields, Current_Collection_Ownership_V2_View_Var_Pop_Fields, Current_Collection_Ownership_V2_View_Var_Samp_Fields, Current_Collection_Ownership_V2_View_Variance_Fields, Current_Collections_V2, Current_Collections_V2Collection_PropertiesArgs, Current_Collections_V2_Bool_Exp, Current_Collections_V2_Order_By, Current_Collections_V2_Select_Column, Current_Collections_V2_Stream_Cursor_Input, Current_Collections_V2_Stream_Cursor_Value_Input, Current_Delegated_Staking_Pool_Balances, Current_Delegated_Staking_Pool_Balances_Bool_Exp, Current_Delegated_Staking_Pool_Balances_Order_By, Current_Delegated_Staking_Pool_Balances_Select_Column, Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input, Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input, Current_Delegated_Voter, Current_Delegated_Voter_Bool_Exp, Current_Delegated_Voter_Order_By, Current_Delegated_Voter_Select_Column, Current_Delegated_Voter_Stream_Cursor_Input, Current_Delegated_Voter_Stream_Cursor_Value_Input, Current_Delegator_Balances, Current_Delegator_Balances_Bool_Exp, Current_Delegator_Balances_Order_By, Current_Delegator_Balances_Select_Column, Current_Delegator_Balances_Stream_Cursor_Input, Current_Delegator_Balances_Stream_Cursor_Value_Input, Current_Fungible_Asset_Balances, Current_Fungible_Asset_Balances_Aggregate, Current_Fungible_Asset_Balances_Aggregate_Fields, Current_Fungible_Asset_Balances_Aggregate_FieldsCountArgs, Current_Fungible_Asset_Balances_Avg_Fields, Current_Fungible_Asset_Balances_Bool_Exp, Current_Fungible_Asset_Balances_Max_Fields, Current_Fungible_Asset_Balances_Min_Fields, Current_Fungible_Asset_Balances_Order_By, Current_Fungible_Asset_Balances_Select_Column, Current_Fungible_Asset_Balances_Stddev_Fields, Current_Fungible_Asset_Balances_Stddev_Pop_Fields, Current_Fungible_Asset_Balances_Stddev_Samp_Fields, Current_Fungible_Asset_Balances_Stream_Cursor_Input, Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input, Current_Fungible_Asset_Balances_Sum_Fields, Current_Fungible_Asset_Balances_Var_Pop_Fields, Current_Fungible_Asset_Balances_Var_Samp_Fields, Current_Fungible_Asset_Balances_Variance_Fields, Current_Objects, Current_Objects_Bool_Exp, Current_Objects_Order_By, Current_Objects_Select_Column, Current_Objects_Stream_Cursor_Input, Current_Objects_Stream_Cursor_Value_Input, Current_Staking_Pool_Voter, Current_Staking_Pool_VoterOperator_Aptos_NameArgs, Current_Staking_Pool_VoterOperator_Aptos_Name_AggregateArgs, Current_Staking_Pool_Voter_Bool_Exp, Current_Staking_Pool_Voter_Order_By, Current_Staking_Pool_Voter_Select_Column, Current_Staking_Pool_Voter_Stream_Cursor_Input, Current_Staking_Pool_Voter_Stream_Cursor_Value_Input, Current_Table_Items, Current_Table_ItemsDecoded_KeyArgs, Current_Table_ItemsDecoded_ValueArgs, Current_Table_Items_Bool_Exp, Current_Table_Items_Order_By, Current_Table_Items_Select_Column, Current_Table_Items_Stream_Cursor_Input, Current_Table_Items_Stream_Cursor_Value_Input, Current_Token_Datas, Current_Token_DatasDefault_PropertiesArgs, Current_Token_Datas_Bool_Exp, Current_Token_Datas_Order_By, Current_Token_Datas_Select_Column, Current_Token_Datas_Stream_Cursor_Input, Current_Token_Datas_Stream_Cursor_Value_Input, Current_Token_Datas_V2, Current_Token_Datas_V2Current_Token_OwnershipsArgs, Current_Token_Datas_V2Current_Token_Ownerships_AggregateArgs, Current_Token_Datas_V2Token_PropertiesArgs, Current_Token_Datas_V2_Bool_Exp, Current_Token_Datas_V2_Order_By, Current_Token_Datas_V2_Select_Column, Current_Token_Datas_V2_Stream_Cursor_Input, Current_Token_Datas_V2_Stream_Cursor_Value_Input, Current_Token_Ownerships, Current_Token_OwnershipsToken_PropertiesArgs, Current_Token_Ownerships_Aggregate, Current_Token_Ownerships_Aggregate_Bool_Exp, Current_Token_Ownerships_Aggregate_Bool_Exp_Count, Current_Token_Ownerships_Aggregate_Fields, Current_Token_Ownerships_Aggregate_FieldsCountArgs, Current_Token_Ownerships_Aggregate_Order_By, Current_Token_Ownerships_Avg_Fields, Current_Token_Ownerships_Avg_Order_By, Current_Token_Ownerships_Bool_Exp, Current_Token_Ownerships_Max_Fields, Current_Token_Ownerships_Max_Order_By, Current_Token_Ownerships_Min_Fields, Current_Token_Ownerships_Min_Order_By, Current_Token_Ownerships_Order_By, Current_Token_Ownerships_Select_Column, Current_Token_Ownerships_Stddev_Fields, Current_Token_Ownerships_Stddev_Order_By, Current_Token_Ownerships_Stddev_Pop_Fields, Current_Token_Ownerships_Stddev_Pop_Order_By, Current_Token_Ownerships_Stddev_Samp_Fields, Current_Token_Ownerships_Stddev_Samp_Order_By, Current_Token_Ownerships_Stream_Cursor_Input, Current_Token_Ownerships_Stream_Cursor_Value_Input, Current_Token_Ownerships_Sum_Fields, Current_Token_Ownerships_Sum_Order_By, Current_Token_Ownerships_V2, Current_Token_Ownerships_V2Composed_NftsArgs, Current_Token_Ownerships_V2Composed_Nfts_AggregateArgs, Current_Token_Ownerships_V2Token_Properties_Mutated_V1Args, Current_Token_Ownerships_V2_Aggregate, Current_Token_Ownerships_V2_Aggregate_Bool_Exp, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count, Current_Token_Ownerships_V2_Aggregate_Fields, Current_Token_Ownerships_V2_Aggregate_FieldsCountArgs, Current_Token_Ownerships_V2_Aggregate_Order_By, Current_Token_Ownerships_V2_Avg_Fields, Current_Token_Ownerships_V2_Avg_Order_By, Current_Token_Ownerships_V2_Bool_Exp, Current_Token_Ownerships_V2_Max_Fields, Current_Token_Ownerships_V2_Max_Order_By, Current_Token_Ownerships_V2_Min_Fields, Current_Token_Ownerships_V2_Min_Order_By, Current_Token_Ownerships_V2_Order_By, Current_Token_Ownerships_V2_Select_Column, Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Current_Token_Ownerships_V2_Stddev_Fields, Current_Token_Ownerships_V2_Stddev_Order_By, Current_Token_Ownerships_V2_Stddev_Pop_Fields, Current_Token_Ownerships_V2_Stddev_Pop_Order_By, Current_Token_Ownerships_V2_Stddev_Samp_Fields, Current_Token_Ownerships_V2_Stddev_Samp_Order_By, Current_Token_Ownerships_V2_Stream_Cursor_Input, Current_Token_Ownerships_V2_Stream_Cursor_Value_Input, Current_Token_Ownerships_V2_Sum_Fields, Current_Token_Ownerships_V2_Sum_Order_By, Current_Token_Ownerships_V2_Var_Pop_Fields, Current_Token_Ownerships_V2_Var_Pop_Order_By, Current_Token_Ownerships_V2_Var_Samp_Fields, Current_Token_Ownerships_V2_Var_Samp_Order_By, Current_Token_Ownerships_V2_Variance_Fields, Current_Token_Ownerships_V2_Variance_Order_By, Current_Token_Ownerships_Var_Pop_Fields, Current_Token_Ownerships_Var_Pop_Order_By, Current_Token_Ownerships_Var_Samp_Fields, Current_Token_Ownerships_Var_Samp_Order_By, Current_Token_Ownerships_Variance_Fields, Current_Token_Ownerships_Variance_Order_By, Current_Token_Pending_Claims, Current_Token_Pending_Claims_Bool_Exp, Current_Token_Pending_Claims_Order_By, Current_Token_Pending_Claims_Select_Column, Current_Token_Pending_Claims_Stream_Cursor_Input, Current_Token_Pending_Claims_Stream_Cursor_Value_Input, Cursor_Ordering, CustomSignerClient, DefaultNetworks, Delegated_Staking_Activities, Delegated_Staking_Activities_Aggregate_Order_By, Delegated_Staking_Activities_Avg_Order_By, Delegated_Staking_Activities_Bool_Exp, Delegated_Staking_Activities_Max_Order_By, Delegated_Staking_Activities_Min_Order_By, Delegated_Staking_Activities_Order_By, Delegated_Staking_Activities_Select_Column, Delegated_Staking_Activities_Stddev_Order_By, Delegated_Staking_Activities_Stddev_Pop_Order_By, Delegated_Staking_Activities_Stddev_Samp_Order_By, Delegated_Staking_Activities_Stream_Cursor_Input, Delegated_Staking_Activities_Stream_Cursor_Value_Input, Delegated_Staking_Activities_Sum_Order_By, Delegated_Staking_Activities_Var_Pop_Order_By, Delegated_Staking_Activities_Var_Samp_Order_By, Delegated_Staking_Activities_Variance_Order_By, Delegated_Staking_Pool_Balances, Delegated_Staking_Pool_Balances_Aggregate, Delegated_Staking_Pool_Balances_Aggregate_Fields, Delegated_Staking_Pool_Balances_Aggregate_FieldsCountArgs, Delegated_Staking_Pool_Balances_Avg_Fields, Delegated_Staking_Pool_Balances_Bool_Exp, Delegated_Staking_Pool_Balances_Max_Fields, Delegated_Staking_Pool_Balances_Min_Fields, Delegated_Staking_Pool_Balances_Order_By, Delegated_Staking_Pool_Balances_Select_Column, Delegated_Staking_Pool_Balances_Stddev_Fields, Delegated_Staking_Pool_Balances_Stddev_Pop_Fields, Delegated_Staking_Pool_Balances_Stddev_Samp_Fields, Delegated_Staking_Pool_Balances_Stream_Cursor_Input, Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input, Delegated_Staking_Pool_Balances_Sum_Fields, Delegated_Staking_Pool_Balances_Var_Pop_Fields, Delegated_Staking_Pool_Balances_Var_Samp_Fields, Delegated_Staking_Pool_Balances_Variance_Fields, Delegated_Staking_Pools, Delegated_Staking_Pools_Bool_Exp, Delegated_Staking_Pools_Order_By, Delegated_Staking_Pools_Select_Column, Delegated_Staking_Pools_Stream_Cursor_Input, Delegated_Staking_Pools_Stream_Cursor_Value_Input, DelegationPoolMetadata, DelegationPoolResource, DelegationPoolResourceData, Delegator_Distinct_Pool, Delegator_Distinct_Pool_Aggregate, Delegator_Distinct_Pool_Aggregate_Fields, Delegator_Distinct_Pool_Aggregate_FieldsCountArgs, Delegator_Distinct_Pool_Bool_Exp, Delegator_Distinct_Pool_Max_Fields, Delegator_Distinct_Pool_Min_Fields, Delegator_Distinct_Pool_Order_By, Delegator_Distinct_Pool_Select_Column, Delegator_Distinct_Pool_Stream_Cursor_Input, Delegator_Distinct_Pool_Stream_Cursor_Value_Input, DepositWithdrawalMismatchError, EXPLORER_BASE_PATH, EntryFunctionPayload, Event, EventHandle, EventWithVersion, Events, EventsDataArgs, Events_Bool_Exp, Events_Order_By, Events_Select_Column, Events_Stream_Cursor_Input, Events_Stream_Cursor_Value_Input, Exact, ExtendedTokenData, FetchAccountTotalTokensArgs, FetchAddressFromNameArgs, FetchBalanceArgs, FetchCoinInfoArgs, FetchCoinPriceArgs, FetchEventsArgs, FetchFaucetStatusArgs, FetchFungibleAssetMetadataArgs, FetchIndexedAccountActivitiesArgs, FetchIndexedAccountActivitiesResult, FetchIndexedAccountCollectionsArgs, FetchIndexedAccountCollectionsResult, FetchIndexedAccountTokensArgs, FetchIndexedAccountTokensResult, FetchIndexedTokenActivitiesArgs, FetchIndexedTokenActivitiesResult, FetchIndexedTokenDataArgs, FetchIndexedTokenDataResult, FetchIndexedTokensPendingOfferClaimsArgs, FetchIndexedTokensPendingOfferClaimsResult, FetchIndexerProcessorAvailabilityArgs, FetchIsValidMetadataArgs, FetchNameFromAddressArgs, FetchNodeStatusArgs, FetchOwnedDigitalAssetsArgs, FetchOwnedDigitalAssetsResult, FetchResourceTypeArgs, FetchResourcesArgs, FetchTokenAcquiredDateArgs, FetchTokenDataWithAddressArgs, FetchTokenMetadataArgs, FetchTransactionArgs, FetchWaitForTransactionArgs, FormatAmountOptions, FormatCoinOptions, FundAccountArgs, FungibleAssetEventsResource, FungibleAssetEventsResourceData, FungibleAssetTransferPayloadArgs, FungibleStoreResource, FungibleStoreResourceData, Fungible_Asset_Activities, Fungible_Asset_ActivitiesOwner_Aptos_NamesArgs, Fungible_Asset_ActivitiesOwner_Aptos_Names_AggregateArgs, Fungible_Asset_Activities_Aggregate_Order_By, Fungible_Asset_Activities_Avg_Order_By, Fungible_Asset_Activities_Bool_Exp, Fungible_Asset_Activities_Max_Order_By, Fungible_Asset_Activities_Min_Order_By, Fungible_Asset_Activities_Order_By, Fungible_Asset_Activities_Select_Column, Fungible_Asset_Activities_Stddev_Order_By, Fungible_Asset_Activities_Stddev_Pop_Order_By, Fungible_Asset_Activities_Stddev_Samp_Order_By, Fungible_Asset_Activities_Stream_Cursor_Input, Fungible_Asset_Activities_Stream_Cursor_Value_Input, Fungible_Asset_Activities_Sum_Order_By, Fungible_Asset_Activities_Var_Pop_Order_By, Fungible_Asset_Activities_Var_Samp_Order_By, Fungible_Asset_Activities_Variance_Order_By, Fungible_Asset_Metadata, Fungible_Asset_Metadata_Bool_Exp, Fungible_Asset_Metadata_Order_By, Fungible_Asset_Metadata_Select_Column, Fungible_Asset_Metadata_Stream_Cursor_Input, Fungible_Asset_Metadata_Stream_Cursor_Value_Input, GasEvent, GasFeeActivityItem, GasNotFoundError, GenericEvent, GenericTransaction, GeoData, GetAccountCollectionsQuery, GetAccountCollectionsQueryVariables, GetAccountCurrentTokensQuery, GetAccountCurrentTokensQueryVariables, GetAccountTokensTotalQuery, GetAccountTokensTotalQueryVariables, GetActivitiesAggregateQuery, GetActivitiesAggregateQueryVariables, GetClientsResult, GetCoinListArgs, GetCoinListResult, GetCollectionsFloorPriceQuery, GetCollectionsFloorPriceQueryVariables, GetConsolidatedActivitiesQuery, GetConsolidatedActivitiesQueryVariables, GetCurrentTokenDataQuery, GetCurrentTokenDataQueryVariables, GetDelegatedStakingQuery, GetDelegatedStakingQueryVariables, GetDelegatedStakingRoyaltiesQuery, GetDelegatedStakingRoyaltiesQueryVariables, GetDelegationPoolsQuery, GetDelegationPoolsQueryVariables, GetExplorerUrlArgs, GetFungibleAssetMetadataQuery, GetFungibleAssetMetadataQueryVariables, GetNumberOfDelegatorsQuery, GetNumberOfDelegatorsQueryVariables, GetPendingClaimsForTokenQuery, GetPendingClaimsForTokenQueryVariables, GetProcessorLastVersionQuery, GetProcessorLastVersionQueryVariables, GetTokenAcquisitionActivityQuery, GetTokenAcquisitionActivityQueryVariables, GetTokenActivitiesQuery, GetTokenActivitiesQueryVariables, GetTokenDataQuery, GetTokenDataQueryVariables, GetTokenPendingClaimsQuery, GetTokenPendingClaimsQueryVariables, Guid, ImageFileType, Incremental, IndexerPetraActivity, Indexer_Status, Indexer_Status_Bool_Exp, Indexer_Status_Order_By, Indexer_Status_Select_Column, Indexer_Status_Stream_Cursor_Input, Indexer_Status_Stream_Cursor_Value_Input, InputMaybe, Int_Comparison_Exp, JsonPayload, Jsonb_Cast_Exp, Jsonb_Comparison_Exp, Ledger_Infos, Ledger_Infos_Bool_Exp, Ledger_Infos_Order_By, Ledger_Infos_Select_Column, Ledger_Infos_Stream_Cursor_Input, Ledger_Infos_Stream_Cursor_Value_Input, MAX_INDEXER_INT, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MetaDataJsonCategory, MetadataJson, MetadataJsonAttribute, MetadataJsonCollection, MetadataJsonCreator, MetadataJsonFile, MetadataJsonProperties, MintTokenEvent, MoveAbortCategory, MoveAbortDetails, MoveAbortLocation, MoveStatusCode, MoveStatusCodeKey, MoveStatusCodeText, MoveVmError, MoveVmStatus, Move_Resources, Move_Resources_Aggregate, Move_Resources_Aggregate_Fields, Move_Resources_Aggregate_FieldsCountArgs, Move_Resources_Avg_Fields, Move_Resources_Bool_Exp, Move_Resources_Max_Fields, Move_Resources_Min_Fields, Move_Resources_Order_By, Move_Resources_Select_Column, Move_Resources_Stddev_Fields, Move_Resources_Stddev_Pop_Fields, Move_Resources_Stddev_Samp_Fields, Move_Resources_Stream_Cursor_Input, Move_Resources_Stream_Cursor_Value_Input, Move_Resources_Sum_Fields, Move_Resources_Var_Pop_Fields, Move_Resources_Var_Samp_Fields, Move_Resources_Variance_Fields, MultisigPayload, NaturalCoinTransferPayloadArgs, NetworkInfo, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate_FieldsCountArgs, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Avg_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Max_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Min_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Pop_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Samp_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Sum_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Var_Pop_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Var_Samp_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Variance_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Nft_Marketplace_Activities, Nft_Marketplace_V2_Nft_Marketplace_Activities_Bool_Exp, Nft_Marketplace_V2_Nft_Marketplace_Activities_Order_By, Nft_Marketplace_V2_Nft_Marketplace_Activities_Select_Column, Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Input, Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Value_Input, Nft_Metadata_Crawler_Parsed_Asset_Uris, Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp, Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By, Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column, Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input, Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input, Num_Active_Delegator_Per_Pool, Num_Active_Delegator_Per_Pool_Bool_Exp, Num_Active_Delegator_Per_Pool_Order_By, Num_Active_Delegator_Per_Pool_Select_Column, Num_Active_Delegator_Per_Pool_Stream_Cursor_Input, Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input, Numeric_Comparison_Exp, OCTA_NEGATIVE_EXPONENT, OCTA_NUMBER, OCTA_POSITIVE_EXPONENT, OCTA_UNIT, ObjectCoreResource, ObjectCoreResourceData, OnChainTransaction, Order_By, PLURAL_OCTA_UNIT, PaginationCursors, ParseExtendedTokenDataArgs, PendingTransaction, PoolResourceData, PriceInfo, Processor_Status, Processor_Status_Bool_Exp, Processor_Status_Order_By, Processor_Status_Select_Column, Processor_Status_Stream_Cursor_Input, Processor_Status_Stream_Cursor_Value_Input, Proposal_Votes, Proposal_Votes_Aggregate, Proposal_Votes_Aggregate_Fields, Proposal_Votes_Aggregate_FieldsCountArgs, Proposal_Votes_Avg_Fields, Proposal_Votes_Bool_Exp, Proposal_Votes_Max_Fields, Proposal_Votes_Min_Fields, Proposal_Votes_Order_By, Proposal_Votes_Select_Column, Proposal_Votes_Stddev_Fields, Proposal_Votes_Stddev_Pop_Fields, Proposal_Votes_Stddev_Samp_Fields, Proposal_Votes_Stream_Cursor_Input, Proposal_Votes_Stream_Cursor_Value_Input, Proposal_Votes_Sum_Fields, Proposal_Votes_Var_Pop_Fields, Proposal_Votes_Var_Samp_Fields, Proposal_Votes_Variance_Fields, PublicKeySchemeNotSupported, QueryRefetchTime, QueryStaleTime, Query_Root, Query_RootAccount_TransactionsArgs, Query_RootAccount_Transactions_AggregateArgs, Query_RootAccount_Transactions_By_PkArgs, Query_RootAddress_Events_SummaryArgs, Query_RootAddress_Version_From_EventsArgs, Query_RootAddress_Version_From_Events_AggregateArgs, Query_RootAddress_Version_From_Move_ResourcesArgs, Query_RootAddress_Version_From_Move_Resources_AggregateArgs, Query_RootBlock_Metadata_TransactionsArgs, Query_RootBlock_Metadata_Transactions_By_PkArgs, Query_RootCoin_ActivitiesArgs, Query_RootCoin_Activities_AggregateArgs, Query_RootCoin_BalancesArgs, Query_RootCoin_InfosArgs, Query_RootCoin_SupplyArgs, Query_RootCoin_Supply_By_PkArgs, Query_RootCollection_DatasArgs, Query_RootCurrent_Ans_LookupArgs, Query_RootCurrent_Ans_Lookup_V2Args, Query_RootCurrent_Ans_Lookup_V2_By_PkArgs, Query_RootCurrent_Aptos_NamesArgs, Query_RootCurrent_Aptos_Names_AggregateArgs, Query_RootCurrent_Coin_BalancesArgs, Query_RootCurrent_Collection_DatasArgs, Query_RootCurrent_Collection_Ownership_V2_ViewArgs, Query_RootCurrent_Collection_Ownership_V2_View_AggregateArgs, Query_RootCurrent_Collections_V2Args, Query_RootCurrent_Collections_V2_By_PkArgs, Query_RootCurrent_Delegated_Staking_Pool_BalancesArgs, Query_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs, Query_RootCurrent_Delegated_VoterArgs, Query_RootCurrent_Delegated_Voter_By_PkArgs, Query_RootCurrent_Delegator_BalancesArgs, Query_RootCurrent_Delegator_Balances_By_PkArgs, Query_RootCurrent_Fungible_Asset_BalancesArgs, Query_RootCurrent_Fungible_Asset_Balances_AggregateArgs, Query_RootCurrent_Fungible_Asset_Balances_By_PkArgs, Query_RootCurrent_ObjectsArgs, Query_RootCurrent_Objects_By_PkArgs, Query_RootCurrent_Staking_Pool_VoterArgs, Query_RootCurrent_Staking_Pool_Voter_By_PkArgs, Query_RootCurrent_Table_ItemsArgs, Query_RootCurrent_Table_Items_By_PkArgs, Query_RootCurrent_Token_DatasArgs, Query_RootCurrent_Token_Datas_V2Args, Query_RootCurrent_Token_Datas_V2_By_PkArgs, Query_RootCurrent_Token_OwnershipsArgs, Query_RootCurrent_Token_Ownerships_AggregateArgs, Query_RootCurrent_Token_Ownerships_V2Args, Query_RootCurrent_Token_Ownerships_V2_AggregateArgs, Query_RootCurrent_Token_Ownerships_V2_By_PkArgs, Query_RootCurrent_Token_Pending_ClaimsArgs, Query_RootCurrent_Token_Pending_Claims_By_PkArgs, Query_RootDelegated_Staking_ActivitiesArgs, Query_RootDelegated_Staking_Activities_By_PkArgs, Query_RootDelegated_Staking_Pool_BalancesArgs, Query_RootDelegated_Staking_Pool_Balances_AggregateArgs, Query_RootDelegated_Staking_Pool_Balances_By_PkArgs, Query_RootDelegated_Staking_PoolsArgs, Query_RootDelegated_Staking_Pools_By_PkArgs, Query_RootDelegator_Distinct_PoolArgs, Query_RootDelegator_Distinct_Pool_AggregateArgs, Query_RootEventsArgs, Query_RootEvents_By_PkArgs, Query_RootFungible_Asset_ActivitiesArgs, Query_RootFungible_Asset_Activities_By_PkArgs, Query_RootFungible_Asset_MetadataArgs, Query_RootFungible_Asset_Metadata_By_PkArgs, Query_RootIndexer_StatusArgs, Query_RootIndexer_Status_By_PkArgs, Query_RootLedger_InfosArgs, Query_RootLedger_Infos_By_PkArgs, Query_RootMove_ResourcesArgs, Query_RootMove_Resources_AggregateArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_AggregateArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs, Query_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs, Query_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs, Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs, Query_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs, Query_RootNum_Active_Delegator_Per_PoolArgs, Query_RootProcessor_StatusArgs, Query_RootProcessor_Status_By_PkArgs, Query_RootProposal_VotesArgs, Query_RootProposal_Votes_AggregateArgs, Query_RootProposal_Votes_By_PkArgs, Query_RootSignaturesArgs, Query_RootSignatures_By_PkArgs, Query_RootTable_ItemsArgs, Query_RootTable_Items_By_PkArgs, Query_RootTable_MetadatasArgs, Query_RootTable_Metadatas_By_PkArgs, Query_RootToken_ActivitiesArgs, Query_RootToken_Activities_AggregateArgs, Query_RootToken_Activities_V2Args, Query_RootToken_Activities_V2_AggregateArgs, Query_RootToken_Activities_V2_By_PkArgs, Query_RootToken_DatasArgs, Query_RootToken_OwnershipsArgs, Query_RootTokensArgs, Query_RootUser_TransactionsArgs, Query_RootUser_Transactions_By_PkArgs, RawTransactionFactory, ReceiveCoinEvent, ReceiveCoinEventBase, ReceiveTokenEvent, ReceiveTokenOfferEvent, Resource, ResourceMap, ResourceType, ResourceTypeValue, Scalars, Sdk, SendCoinEvent, SendCoinEventBase, SendTokenEvent, SendTokenOfferEvent, SenderNotFoundError, SerializedMultiAgentPayload, SerializedPayload, SignAndSubmitRawTransactionArgs, SignAndSubmitRawTransactionResult, SignAndSubmitTransactionArgs, SignAndSubmitTransactionResult, SignBufferArgs, SignMessageArgs, SignTransactionArgs, SignTransactionResult, Signatures, SignaturesPublic_Key_IndicesArgs, Signatures_Bool_Exp, Signatures_Order_By, Signatures_Select_Column, Signatures_Stream_Cursor_Input, Signatures_Stream_Cursor_Value_Input, SignerClient, SignerClientInvalidFunctionError, SignerNotFoundError, SimulateTransactionArgs, SimulationArgumentError, StakeEvent, StakeEventBase, StakeOperation, StakePoolResource, StakePoolResourceData, StakingInfo, String_Comparison_Exp, SubmitTransactionArgs, SubmitTransactionResult, Subscription_Root, Subscription_RootAccount_TransactionsArgs, Subscription_RootAccount_Transactions_AggregateArgs, Subscription_RootAccount_Transactions_By_PkArgs, Subscription_RootAccount_Transactions_StreamArgs, Subscription_RootAddress_Events_SummaryArgs, Subscription_RootAddress_Events_Summary_StreamArgs, Subscription_RootAddress_Version_From_EventsArgs, Subscription_RootAddress_Version_From_Events_AggregateArgs, Subscription_RootAddress_Version_From_Events_StreamArgs, Subscription_RootAddress_Version_From_Move_ResourcesArgs, Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs, Subscription_RootAddress_Version_From_Move_Resources_StreamArgs, Subscription_RootBlock_Metadata_TransactionsArgs, Subscription_RootBlock_Metadata_Transactions_By_PkArgs, Subscription_RootBlock_Metadata_Transactions_StreamArgs, Subscription_RootCoin_ActivitiesArgs, Subscription_RootCoin_Activities_AggregateArgs, Subscription_RootCoin_Activities_StreamArgs, Subscription_RootCoin_BalancesArgs, Subscription_RootCoin_Balances_StreamArgs, Subscription_RootCoin_InfosArgs, Subscription_RootCoin_Infos_StreamArgs, Subscription_RootCoin_SupplyArgs, Subscription_RootCoin_Supply_By_PkArgs, Subscription_RootCoin_Supply_StreamArgs, Subscription_RootCollection_DatasArgs, Subscription_RootCollection_Datas_StreamArgs, Subscription_RootCurrent_Ans_LookupArgs, Subscription_RootCurrent_Ans_Lookup_StreamArgs, Subscription_RootCurrent_Ans_Lookup_V2Args, Subscription_RootCurrent_Ans_Lookup_V2_By_PkArgs, Subscription_RootCurrent_Ans_Lookup_V2_StreamArgs, Subscription_RootCurrent_Aptos_NamesArgs, Subscription_RootCurrent_Aptos_Names_AggregateArgs, Subscription_RootCurrent_Aptos_Names_StreamArgs, Subscription_RootCurrent_Coin_BalancesArgs, Subscription_RootCurrent_Coin_Balances_StreamArgs, Subscription_RootCurrent_Collection_DatasArgs, Subscription_RootCurrent_Collection_Datas_StreamArgs, Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs, Subscription_RootCurrent_Collection_Ownership_V2_View_AggregateArgs, Subscription_RootCurrent_Collection_Ownership_V2_View_StreamArgs, Subscription_RootCurrent_Collections_V2Args, Subscription_RootCurrent_Collections_V2_By_PkArgs, Subscription_RootCurrent_Collections_V2_StreamArgs, Subscription_RootCurrent_Delegated_Staking_Pool_BalancesArgs, Subscription_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs, Subscription_RootCurrent_Delegated_Staking_Pool_Balances_StreamArgs, Subscription_RootCurrent_Delegated_VoterArgs, Subscription_RootCurrent_Delegated_Voter_By_PkArgs, Subscription_RootCurrent_Delegated_Voter_StreamArgs, Subscription_RootCurrent_Delegator_BalancesArgs, Subscription_RootCurrent_Delegator_Balances_By_PkArgs, Subscription_RootCurrent_Delegator_Balances_StreamArgs, Subscription_RootCurrent_Fungible_Asset_BalancesArgs, Subscription_RootCurrent_Fungible_Asset_Balances_AggregateArgs, Subscription_RootCurrent_Fungible_Asset_Balances_By_PkArgs, Subscription_RootCurrent_Fungible_Asset_Balances_StreamArgs, Subscription_RootCurrent_ObjectsArgs, Subscription_RootCurrent_Objects_By_PkArgs, Subscription_RootCurrent_Objects_StreamArgs, Subscription_RootCurrent_Staking_Pool_VoterArgs, Subscription_RootCurrent_Staking_Pool_Voter_By_PkArgs, Subscription_RootCurrent_Staking_Pool_Voter_StreamArgs, Subscription_RootCurrent_Table_ItemsArgs, Subscription_RootCurrent_Table_Items_By_PkArgs, Subscription_RootCurrent_Table_Items_StreamArgs, Subscription_RootCurrent_Token_DatasArgs, Subscription_RootCurrent_Token_Datas_StreamArgs, Subscription_RootCurrent_Token_Datas_V2Args, Subscription_RootCurrent_Token_Datas_V2_By_PkArgs, Subscription_RootCurrent_Token_Datas_V2_StreamArgs, Subscription_RootCurrent_Token_OwnershipsArgs, Subscription_RootCurrent_Token_Ownerships_AggregateArgs, Subscription_RootCurrent_Token_Ownerships_StreamArgs, Subscription_RootCurrent_Token_Ownerships_V2Args, Subscription_RootCurrent_Token_Ownerships_V2_AggregateArgs, Subscription_RootCurrent_Token_Ownerships_V2_By_PkArgs, Subscription_RootCurrent_Token_Ownerships_V2_StreamArgs, Subscription_RootCurrent_Token_Pending_ClaimsArgs, Subscription_RootCurrent_Token_Pending_Claims_By_PkArgs, Subscription_RootCurrent_Token_Pending_Claims_StreamArgs, Subscription_RootDelegated_Staking_ActivitiesArgs, Subscription_RootDelegated_Staking_Activities_By_PkArgs, Subscription_RootDelegated_Staking_Activities_StreamArgs, Subscription_RootDelegated_Staking_Pool_BalancesArgs, Subscription_RootDelegated_Staking_Pool_Balances_AggregateArgs, Subscription_RootDelegated_Staking_Pool_Balances_By_PkArgs, Subscription_RootDelegated_Staking_Pool_Balances_StreamArgs, Subscription_RootDelegated_Staking_PoolsArgs, Subscription_RootDelegated_Staking_Pools_By_PkArgs, Subscription_RootDelegated_Staking_Pools_StreamArgs, Subscription_RootDelegator_Distinct_PoolArgs, Subscription_RootDelegator_Distinct_Pool_AggregateArgs, Subscription_RootDelegator_Distinct_Pool_StreamArgs, Subscription_RootEventsArgs, Subscription_RootEvents_By_PkArgs, Subscription_RootEvents_StreamArgs, Subscription_RootFungible_Asset_ActivitiesArgs, Subscription_RootFungible_Asset_Activities_By_PkArgs, Subscription_RootFungible_Asset_Activities_StreamArgs, Subscription_RootFungible_Asset_MetadataArgs, Subscription_RootFungible_Asset_Metadata_By_PkArgs, Subscription_RootFungible_Asset_Metadata_StreamArgs, Subscription_RootIndexer_StatusArgs, Subscription_RootIndexer_Status_By_PkArgs, Subscription_RootIndexer_Status_StreamArgs, Subscription_RootLedger_InfosArgs, Subscription_RootLedger_Infos_By_PkArgs, Subscription_RootLedger_Infos_StreamArgs, Subscription_RootMove_ResourcesArgs, Subscription_RootMove_Resources_AggregateArgs, Subscription_RootMove_Resources_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_AggregateArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_StreamArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_StreamArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_StreamArgs, Subscription_RootNum_Active_Delegator_Per_PoolArgs, Subscription_RootNum_Active_Delegator_Per_Pool_StreamArgs, Subscription_RootProcessor_StatusArgs, Subscription_RootProcessor_Status_By_PkArgs, Subscription_RootProcessor_Status_StreamArgs, Subscription_RootProposal_VotesArgs, Subscription_RootProposal_Votes_AggregateArgs, Subscription_RootProposal_Votes_By_PkArgs, Subscription_RootProposal_Votes_StreamArgs, Subscription_RootSignaturesArgs, Subscription_RootSignatures_By_PkArgs, Subscription_RootSignatures_StreamArgs, Subscription_RootTable_ItemsArgs, Subscription_RootTable_Items_By_PkArgs, Subscription_RootTable_Items_StreamArgs, Subscription_RootTable_MetadatasArgs, Subscription_RootTable_Metadatas_By_PkArgs, Subscription_RootTable_Metadatas_StreamArgs, Subscription_RootToken_ActivitiesArgs, Subscription_RootToken_Activities_AggregateArgs, Subscription_RootToken_Activities_StreamArgs, Subscription_RootToken_Activities_V2Args, Subscription_RootToken_Activities_V2_AggregateArgs, Subscription_RootToken_Activities_V2_By_PkArgs, Subscription_RootToken_Activities_V2_StreamArgs, Subscription_RootToken_DatasArgs, Subscription_RootToken_Datas_StreamArgs, Subscription_RootToken_OwnershipsArgs, Subscription_RootToken_Ownerships_StreamArgs, Subscription_RootTokensArgs, Subscription_RootTokens_StreamArgs, Subscription_RootUser_TransactionsArgs, Subscription_RootUser_Transactions_By_PkArgs, Subscription_RootUser_Transactions_StreamArgs, SwapCoinEvent, SwapCoinEventBase, Table_Items, Table_ItemsDecoded_KeyArgs, Table_ItemsDecoded_ValueArgs, Table_Items_Bool_Exp, Table_Items_Order_By, Table_Items_Select_Column, Table_Items_Stream_Cursor_Input, Table_Items_Stream_Cursor_Value_Input, Table_Metadatas, Table_Metadatas_Bool_Exp, Table_Metadatas_Order_By, Table_Metadatas_Select_Column, Table_Metadatas_Stream_Cursor_Input, Table_Metadatas_Stream_Cursor_Value_Input, Timestamp_Comparison_Exp, Timestamptz_Comparison_Exp, TokenActivity, TokenActivityFragment, TokenAttributes, TokenBalanceChange, TokenClaim, TokenData, TokenDataFieldsFragment, TokenDepositEvent, TokenEvent, TokenStandard, TokenStoreResource, TokenStoreResourceData, TokenWithdrawEvent, Token_Activities, Token_ActivitiesAptos_Names_OwnerArgs, Token_ActivitiesAptos_Names_Owner_AggregateArgs, Token_ActivitiesAptos_Names_ToArgs, Token_ActivitiesAptos_Names_To_AggregateArgs, Token_Activities_Aggregate, Token_Activities_Aggregate_Bool_Exp, Token_Activities_Aggregate_Bool_Exp_Count, Token_Activities_Aggregate_Fields, Token_Activities_Aggregate_FieldsCountArgs, Token_Activities_Aggregate_Order_By, Token_Activities_Avg_Fields, Token_Activities_Avg_Order_By, Token_Activities_Bool_Exp, Token_Activities_Max_Fields, Token_Activities_Max_Order_By, Token_Activities_Min_Fields, Token_Activities_Min_Order_By, Token_Activities_Order_By, Token_Activities_Select_Column, Token_Activities_Stddev_Fields, Token_Activities_Stddev_Order_By, Token_Activities_Stddev_Pop_Fields, Token_Activities_Stddev_Pop_Order_By, Token_Activities_Stddev_Samp_Fields, Token_Activities_Stddev_Samp_Order_By, Token_Activities_Stream_Cursor_Input, Token_Activities_Stream_Cursor_Value_Input, Token_Activities_Sum_Fields, Token_Activities_Sum_Order_By, Token_Activities_V2, Token_Activities_V2Aptos_Names_FromArgs, Token_Activities_V2Aptos_Names_From_AggregateArgs, Token_Activities_V2Aptos_Names_ToArgs, Token_Activities_V2Aptos_Names_To_AggregateArgs, Token_Activities_V2_Aggregate, Token_Activities_V2_Aggregate_Bool_Exp, Token_Activities_V2_Aggregate_Bool_Exp_Bool_And, Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or, Token_Activities_V2_Aggregate_Bool_Exp_Count, Token_Activities_V2_Aggregate_Fields, Token_Activities_V2_Aggregate_FieldsCountArgs, Token_Activities_V2_Aggregate_Order_By, Token_Activities_V2_Avg_Fields, Token_Activities_V2_Avg_Order_By, Token_Activities_V2_Bool_Exp, Token_Activities_V2_Max_Fields, Token_Activities_V2_Max_Order_By, Token_Activities_V2_Min_Fields, Token_Activities_V2_Min_Order_By, Token_Activities_V2_Order_By, Token_Activities_V2_Select_Column, Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Token_Activities_V2_Stddev_Fields, Token_Activities_V2_Stddev_Order_By, Token_Activities_V2_Stddev_Pop_Fields, Token_Activities_V2_Stddev_Pop_Order_By, Token_Activities_V2_Stddev_Samp_Fields, Token_Activities_V2_Stddev_Samp_Order_By, Token_Activities_V2_Stream_Cursor_Input, Token_Activities_V2_Stream_Cursor_Value_Input, Token_Activities_V2_Sum_Fields, Token_Activities_V2_Sum_Order_By, Token_Activities_V2_Var_Pop_Fields, Token_Activities_V2_Var_Pop_Order_By, Token_Activities_V2_Var_Samp_Fields, Token_Activities_V2_Var_Samp_Order_By, Token_Activities_V2_Variance_Fields, Token_Activities_V2_Variance_Order_By, Token_Activities_Var_Pop_Fields, Token_Activities_Var_Pop_Order_By, Token_Activities_Var_Samp_Fields, Token_Activities_Var_Samp_Order_By, Token_Activities_Variance_Fields, Token_Activities_Variance_Order_By, Token_Datas, Token_DatasDefault_PropertiesArgs, Token_Datas_Bool_Exp, Token_Datas_Order_By, Token_Datas_Select_Column, Token_Datas_Stream_Cursor_Input, Token_Datas_Stream_Cursor_Value_Input, Token_Ownerships, Token_Ownerships_Bool_Exp, Token_Ownerships_Order_By, Token_Ownerships_Select_Column, Token_Ownerships_Stream_Cursor_Input, Token_Ownerships_Stream_Cursor_Value_Input, Tokens, TokensToken_PropertiesArgs, Tokens_Bool_Exp, Tokens_Order_By, Tokens_Select_Column, Tokens_Stream_Cursor_Input, Tokens_Stream_Cursor_Value_Input, Transaction, TransactionError, TransactionOptions, TransactionPayload, TransactionValidationErrorReason, UnconfirmedActivityItem, UnexpectedNetworkError, UnsupportedNameFormatError, UseActivityConfig, User_Transactions, User_Transactions_Bool_Exp, User_Transactions_Order_By, User_Transactions_Select_Column, User_Transactions_Stream_Cursor_Input, User_Transactions_Stream_Cursor_Value_Input, ValidatorFromJSONFile, ValidatorInfo, ValidatorSetResource, ValidatorSetResourceData, ValidatorStatus, WalletAdapterClientInvalidFunctionError, WalletSignerClientInvalidFunctionError, aptosAccountCoinTransferFunction, aptosAccountCoinTransferFunctionName, aptosAccountCreateAccountViaTransferFunctionName, aptosAccountNamespace, aptosCoinInfoStructTag, aptosCoinStoreStructTag, aptosCoinStructTag, aptosDelegationPoolStructTag, aptosFAType, aptosStakePoolStructTag, aptosTypes, aptosValidatorSetStructTag, buildCoinTransferPayload, buildCreateAccountTransferPayload, buildFungibleAssetTransferPayload, buildNaturalCoinTransferPayload, buildRawTransactionFromBCSPayload, coinInfoResource, coinInfoStructTag, coinNamespace, coinStoreResource, coinStoreStructTag, convertAptosAccountToAccountInfo, convertAptosAccountToSigner, createPaginatedQuery, defaultExpirationSecondsFromNow, defaultNetworks, deserializeEntryFunctionPayload, deserializePayloadArg, rawInfoDevNet as devnetList, emptySigningFunction, encodeEntryFunctionPayload, encodePayload, ensureMultiAgentPayloadDeserialized, ensureMultiAgentPayloadSerialized, ensurePayloadDeserialized, ensurePayloadSerialized, explorerNetworkNamesMap, extractIpfsCid, fetchAccountTotalTokens, fetchAddressFromName, fetchBalance, fetchCoinInfo, fetchCoinPrice, fetchCoinProcessorAvailability, fetchEvents, fetchFaucetStatus, fetchFungibleAssetMetadata, fetchGasPrice, fetchIndexedAccountActivities, fetchIndexedAccountCollections, fetchIndexedAccountTokens, fetchIndexedTokenActivities, fetchIndexedTokenData, fetchIndexedTokensPendingOfferClaims, fetchIndexerProcessorAvailability, fetchIsValidMetadata, fetchNameFromAddress, fetchNodeStatus, fetchOwnedDigitalAssets, fetchResourceType, fetchResources, fetchTokenAcquiredDate, fetchTokenDataWithAddress, fetchTokenMetadata, fetchTokenProcessorAvailability, fetchTransaction, fetchWaitForTransaction, fixBadAptosUri, formatAmount, formatApt, formatCoin, formatUnits, fundAccount, fungibleAssetEventsTag, fungibleAssetMetadataStructTag, fungibleAssetStoreTag, getClients, getCoinList, getCoinStoresByCoinType, getExplorerUrl, getSequenceNumber, getTokenDataId, getTokenDataIdHash, handleApiError, imageExtensions, isApt, isAptosNftImage, isCoinEvent, isConfirmedActivityItem, isEntryFunctionPayload, isImageUri, isSequenceNumberTooOldError, rawInfoMainnet as mainnetList, makeCoinInfoStructTag, maxGasFeeFromEstimated, networks, normalizeAddress, normalizePayload, normalizeTimestamp, objectTag, parseApt, parseCollectionData, parseExtendedTokenData, parseMoveAbortDetails, parseMoveMiscError, parseMoveVmError, parseMoveVmStatus, parseRawEvent, parseTokenActivity, parseTokenClaim, parseTokenData, parseUnits, prettifyCoinInfo, primaryFungibleStoreNamespace, primaryFungibleStoreTransferFunctionName, replaceIpfsGateway, serializeEntryFunctionPayload, shareRequests, signAndSubmitRawTransaction, signAndSubmitTransaction, signBuffer, signMessage, signTransaction, simulateTransaction, stakeNamespace, submitTransaction, rawInfoTestNet as testnetList, throwForVmError, timestampToDate, tokenDepositStructTag, tokenNamespace, tokenStoreStructTag, tokenWithdrawStructTag, transformPetraActivity };
12917
+ export { APTOS_NAMES_ENDPOINT, APTOS_UNIT, AccountErrorReason, AccountInfo, AccountNotFoundError, Account_Transactions, Account_TransactionsCoin_ActivitiesArgs, Account_TransactionsCoin_Activities_AggregateArgs, Account_TransactionsDelegated_Staking_ActivitiesArgs, Account_TransactionsFungible_Asset_ActivitiesArgs, Account_TransactionsToken_ActivitiesArgs, Account_TransactionsToken_Activities_AggregateArgs, Account_TransactionsToken_Activities_V2Args, Account_TransactionsToken_Activities_V2_AggregateArgs, Account_Transactions_Aggregate, Account_Transactions_Aggregate_Fields, Account_Transactions_Aggregate_FieldsCountArgs, Account_Transactions_Avg_Fields, Account_Transactions_Bool_Exp, Account_Transactions_Max_Fields, Account_Transactions_Min_Fields, Account_Transactions_Order_By, Account_Transactions_Select_Column, Account_Transactions_Stddev_Fields, Account_Transactions_Stddev_Pop_Fields, Account_Transactions_Stddev_Samp_Fields, Account_Transactions_Stream_Cursor_Input, Account_Transactions_Stream_Cursor_Value_Input, Account_Transactions_Sum_Fields, Account_Transactions_Var_Pop_Fields, Account_Transactions_Var_Samp_Fields, Account_Transactions_Variance_Fields, ActivityEvent, ActivityItem, AdapterSignerClient, Address_Events_Summary, Address_Events_Summary_Bool_Exp, Address_Events_Summary_Order_By, Address_Events_Summary_Select_Column, Address_Events_Summary_Stream_Cursor_Input, Address_Events_Summary_Stream_Cursor_Value_Input, Address_Version_From_Events, Address_Version_From_EventsCoin_ActivitiesArgs, Address_Version_From_EventsCoin_Activities_AggregateArgs, Address_Version_From_EventsDelegated_Staking_ActivitiesArgs, Address_Version_From_EventsToken_ActivitiesArgs, Address_Version_From_EventsToken_Activities_AggregateArgs, Address_Version_From_EventsToken_Activities_V2Args, Address_Version_From_EventsToken_Activities_V2_AggregateArgs, Address_Version_From_Events_Aggregate, Address_Version_From_Events_Aggregate_Fields, Address_Version_From_Events_Aggregate_FieldsCountArgs, Address_Version_From_Events_Avg_Fields, Address_Version_From_Events_Bool_Exp, Address_Version_From_Events_Max_Fields, Address_Version_From_Events_Min_Fields, Address_Version_From_Events_Order_By, Address_Version_From_Events_Select_Column, Address_Version_From_Events_Stddev_Fields, Address_Version_From_Events_Stddev_Pop_Fields, Address_Version_From_Events_Stddev_Samp_Fields, Address_Version_From_Events_Stream_Cursor_Input, Address_Version_From_Events_Stream_Cursor_Value_Input, Address_Version_From_Events_Sum_Fields, Address_Version_From_Events_Var_Pop_Fields, Address_Version_From_Events_Var_Samp_Fields, Address_Version_From_Events_Variance_Fields, Address_Version_From_Move_Resources, Address_Version_From_Move_ResourcesCoin_ActivitiesArgs, Address_Version_From_Move_ResourcesCoin_Activities_AggregateArgs, Address_Version_From_Move_ResourcesDelegated_Staking_ActivitiesArgs, Address_Version_From_Move_ResourcesToken_ActivitiesArgs, Address_Version_From_Move_ResourcesToken_Activities_AggregateArgs, Address_Version_From_Move_ResourcesToken_Activities_V2Args, Address_Version_From_Move_ResourcesToken_Activities_V2_AggregateArgs, Address_Version_From_Move_Resources_Aggregate, Address_Version_From_Move_Resources_Aggregate_Fields, Address_Version_From_Move_Resources_Aggregate_FieldsCountArgs, Address_Version_From_Move_Resources_Avg_Fields, Address_Version_From_Move_Resources_Bool_Exp, Address_Version_From_Move_Resources_Max_Fields, Address_Version_From_Move_Resources_Min_Fields, Address_Version_From_Move_Resources_Order_By, Address_Version_From_Move_Resources_Select_Column, Address_Version_From_Move_Resources_Stddev_Fields, Address_Version_From_Move_Resources_Stddev_Pop_Fields, Address_Version_From_Move_Resources_Stddev_Samp_Fields, Address_Version_From_Move_Resources_Stream_Cursor_Input, Address_Version_From_Move_Resources_Stream_Cursor_Value_Input, Address_Version_From_Move_Resources_Sum_Fields, Address_Version_From_Move_Resources_Var_Pop_Fields, Address_Version_From_Move_Resources_Var_Samp_Fields, Address_Version_From_Move_Resources_Variance_Fields, AnyRawTransactionFactory, AptosIdentity, AptosJSProClient, AptosJSProClientArgs, AptosJSProClientState, AptosName, BaseConfirmedActivityItem, BaseEvent$1 as BaseEvent, BaseTransaction, BaseTransactionProps, Bigint_Comparison_Exp, Block_Metadata_Transactions, Block_Metadata_TransactionsFailed_Proposer_IndicesArgs, Block_Metadata_TransactionsPrevious_Block_Votes_BitvecArgs, Block_Metadata_Transactions_Bool_Exp, Block_Metadata_Transactions_Order_By, Block_Metadata_Transactions_Select_Column, Block_Metadata_Transactions_Stream_Cursor_Input, Block_Metadata_Transactions_Stream_Cursor_Value_Input, Boolean_Comparison_Exp, COIN_GECKO_ENDPOINT, COIN_LISTS, ClientConfigs, CoinBalanceChange, CoinBalanceChangesByAccount, CoinBalanceChangesByCoinType, CoinDepositEvent, CoinErrorReason, CoinEvent, CoinEventActivityItem, CoinInfoData, CoinInfoResource, CoinInfoResourceData, CoinInfoWithMetadata, CoinMetadata, CoinMintTransaction, CoinRaw, CoinStoreResource, CoinStoreResourceData, CoinTransferActivityItem, CoinTransferPayloadArgs, CoinTransferTransaction, CoinType, CoinWithdrawEvent, Coin_Activities, Coin_ActivitiesAptos_NamesArgs, Coin_ActivitiesAptos_Names_AggregateArgs, Coin_Activities_Aggregate, Coin_Activities_Aggregate_Bool_Exp, Coin_Activities_Aggregate_Bool_Exp_Bool_And, Coin_Activities_Aggregate_Bool_Exp_Bool_Or, Coin_Activities_Aggregate_Bool_Exp_Count, Coin_Activities_Aggregate_Fields, Coin_Activities_Aggregate_FieldsCountArgs, Coin_Activities_Aggregate_Order_By, Coin_Activities_Avg_Fields, Coin_Activities_Avg_Order_By, Coin_Activities_Bool_Exp, Coin_Activities_Max_Fields, Coin_Activities_Max_Order_By, Coin_Activities_Min_Fields, Coin_Activities_Min_Order_By, Coin_Activities_Order_By, Coin_Activities_Select_Column, Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Coin_Activities_Select_Column_Coin_Activities_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Coin_Activities_Stddev_Fields, Coin_Activities_Stddev_Order_By, Coin_Activities_Stddev_Pop_Fields, Coin_Activities_Stddev_Pop_Order_By, Coin_Activities_Stddev_Samp_Fields, Coin_Activities_Stddev_Samp_Order_By, Coin_Activities_Stream_Cursor_Input, Coin_Activities_Stream_Cursor_Value_Input, Coin_Activities_Sum_Fields, Coin_Activities_Sum_Order_By, Coin_Activities_Var_Pop_Fields, Coin_Activities_Var_Pop_Order_By, Coin_Activities_Var_Samp_Fields, Coin_Activities_Var_Samp_Order_By, Coin_Activities_Variance_Fields, Coin_Activities_Variance_Order_By, Coin_Balances, Coin_Balances_Bool_Exp, Coin_Balances_Order_By, Coin_Balances_Select_Column, Coin_Balances_Stream_Cursor_Input, Coin_Balances_Stream_Cursor_Value_Input, Coin_Infos, Coin_Infos_Bool_Exp, Coin_Infos_Order_By, Coin_Infos_Select_Column, Coin_Infos_Stream_Cursor_Input, Coin_Infos_Stream_Cursor_Value_Input, Coin_Supply, Coin_Supply_Bool_Exp, Coin_Supply_Order_By, Coin_Supply_Select_Column, Coin_Supply_Stream_Cursor_Input, Coin_Supply_Stream_Cursor_Value_Input, CollectionData, CollectionDataFieldsFragment, Collection_Datas, Collection_Datas_Bool_Exp, Collection_Datas_Order_By, Collection_Datas_Select_Column, Collection_Datas_Stream_Cursor_Input, Collection_Datas_Stream_Cursor_Value_Input, ConfirmedActivityItem, CreateAccountTransferPayloadArgs, CurrentTokenData, CurrentTokenOwnership, CurrentTokenPendingClaimsFragment, Current_Ans_Lookup, Current_Ans_LookupAll_Token_OwnershipsArgs, Current_Ans_LookupAll_Token_Ownerships_AggregateArgs, Current_Ans_Lookup_Bool_Exp, Current_Ans_Lookup_Order_By, Current_Ans_Lookup_Select_Column, Current_Ans_Lookup_Stream_Cursor_Input, Current_Ans_Lookup_Stream_Cursor_Value_Input, Current_Ans_Lookup_V2, Current_Ans_Lookup_V2_Bool_Exp, Current_Ans_Lookup_V2_Order_By, Current_Ans_Lookup_V2_Select_Column, Current_Ans_Lookup_V2_Stream_Cursor_Input, Current_Ans_Lookup_V2_Stream_Cursor_Value_Input, Current_Aptos_Names, Current_Aptos_Names_Aggregate, Current_Aptos_Names_Aggregate_Bool_Exp, Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And, Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or, Current_Aptos_Names_Aggregate_Bool_Exp_Count, Current_Aptos_Names_Aggregate_Fields, Current_Aptos_Names_Aggregate_FieldsCountArgs, Current_Aptos_Names_Aggregate_Order_By, Current_Aptos_Names_Avg_Fields, Current_Aptos_Names_Avg_Order_By, Current_Aptos_Names_Bool_Exp, Current_Aptos_Names_Max_Fields, Current_Aptos_Names_Max_Order_By, Current_Aptos_Names_Min_Fields, Current_Aptos_Names_Min_Order_By, Current_Aptos_Names_Order_By, Current_Aptos_Names_Select_Column, Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Current_Aptos_Names_Select_Column_Current_Aptos_Names_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Current_Aptos_Names_Stddev_Fields, Current_Aptos_Names_Stddev_Order_By, Current_Aptos_Names_Stddev_Pop_Fields, Current_Aptos_Names_Stddev_Pop_Order_By, Current_Aptos_Names_Stddev_Samp_Fields, Current_Aptos_Names_Stddev_Samp_Order_By, Current_Aptos_Names_Stream_Cursor_Input, Current_Aptos_Names_Stream_Cursor_Value_Input, Current_Aptos_Names_Sum_Fields, Current_Aptos_Names_Sum_Order_By, Current_Aptos_Names_Var_Pop_Fields, Current_Aptos_Names_Var_Pop_Order_By, Current_Aptos_Names_Var_Samp_Fields, Current_Aptos_Names_Var_Samp_Order_By, Current_Aptos_Names_Variance_Fields, Current_Aptos_Names_Variance_Order_By, Current_Coin_Balances, Current_Coin_Balances_Bool_Exp, Current_Coin_Balances_Order_By, Current_Coin_Balances_Select_Column, Current_Coin_Balances_Stream_Cursor_Input, Current_Coin_Balances_Stream_Cursor_Value_Input, Current_Collection_Datas, Current_Collection_Datas_Bool_Exp, Current_Collection_Datas_Order_By, Current_Collection_Datas_Select_Column, Current_Collection_Datas_Stream_Cursor_Input, Current_Collection_Datas_Stream_Cursor_Value_Input, Current_Collection_Ownership_V2_View, Current_Collection_Ownership_V2_View_Aggregate, Current_Collection_Ownership_V2_View_Aggregate_Fields, Current_Collection_Ownership_V2_View_Aggregate_FieldsCountArgs, Current_Collection_Ownership_V2_View_Avg_Fields, Current_Collection_Ownership_V2_View_Bool_Exp, Current_Collection_Ownership_V2_View_Max_Fields, Current_Collection_Ownership_V2_View_Min_Fields, Current_Collection_Ownership_V2_View_Order_By, Current_Collection_Ownership_V2_View_Select_Column, Current_Collection_Ownership_V2_View_Stddev_Fields, Current_Collection_Ownership_V2_View_Stddev_Pop_Fields, Current_Collection_Ownership_V2_View_Stddev_Samp_Fields, Current_Collection_Ownership_V2_View_Stream_Cursor_Input, Current_Collection_Ownership_V2_View_Stream_Cursor_Value_Input, Current_Collection_Ownership_V2_View_Sum_Fields, Current_Collection_Ownership_V2_View_Var_Pop_Fields, Current_Collection_Ownership_V2_View_Var_Samp_Fields, Current_Collection_Ownership_V2_View_Variance_Fields, Current_Collections_V2, Current_Collections_V2Collection_PropertiesArgs, Current_Collections_V2_Bool_Exp, Current_Collections_V2_Order_By, Current_Collections_V2_Select_Column, Current_Collections_V2_Stream_Cursor_Input, Current_Collections_V2_Stream_Cursor_Value_Input, Current_Delegated_Staking_Pool_Balances, Current_Delegated_Staking_Pool_Balances_Bool_Exp, Current_Delegated_Staking_Pool_Balances_Order_By, Current_Delegated_Staking_Pool_Balances_Select_Column, Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Input, Current_Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input, Current_Delegated_Voter, Current_Delegated_Voter_Bool_Exp, Current_Delegated_Voter_Order_By, Current_Delegated_Voter_Select_Column, Current_Delegated_Voter_Stream_Cursor_Input, Current_Delegated_Voter_Stream_Cursor_Value_Input, Current_Delegator_Balances, Current_Delegator_Balances_Bool_Exp, Current_Delegator_Balances_Order_By, Current_Delegator_Balances_Select_Column, Current_Delegator_Balances_Stream_Cursor_Input, Current_Delegator_Balances_Stream_Cursor_Value_Input, Current_Fungible_Asset_Balances, Current_Fungible_Asset_Balances_Aggregate, Current_Fungible_Asset_Balances_Aggregate_Fields, Current_Fungible_Asset_Balances_Aggregate_FieldsCountArgs, Current_Fungible_Asset_Balances_Avg_Fields, Current_Fungible_Asset_Balances_Bool_Exp, Current_Fungible_Asset_Balances_Max_Fields, Current_Fungible_Asset_Balances_Min_Fields, Current_Fungible_Asset_Balances_Order_By, Current_Fungible_Asset_Balances_Select_Column, Current_Fungible_Asset_Balances_Stddev_Fields, Current_Fungible_Asset_Balances_Stddev_Pop_Fields, Current_Fungible_Asset_Balances_Stddev_Samp_Fields, Current_Fungible_Asset_Balances_Stream_Cursor_Input, Current_Fungible_Asset_Balances_Stream_Cursor_Value_Input, Current_Fungible_Asset_Balances_Sum_Fields, Current_Fungible_Asset_Balances_Var_Pop_Fields, Current_Fungible_Asset_Balances_Var_Samp_Fields, Current_Fungible_Asset_Balances_Variance_Fields, Current_Objects, Current_Objects_Bool_Exp, Current_Objects_Order_By, Current_Objects_Select_Column, Current_Objects_Stream_Cursor_Input, Current_Objects_Stream_Cursor_Value_Input, Current_Staking_Pool_Voter, Current_Staking_Pool_VoterOperator_Aptos_NameArgs, Current_Staking_Pool_VoterOperator_Aptos_Name_AggregateArgs, Current_Staking_Pool_Voter_Bool_Exp, Current_Staking_Pool_Voter_Order_By, Current_Staking_Pool_Voter_Select_Column, Current_Staking_Pool_Voter_Stream_Cursor_Input, Current_Staking_Pool_Voter_Stream_Cursor_Value_Input, Current_Table_Items, Current_Table_ItemsDecoded_KeyArgs, Current_Table_ItemsDecoded_ValueArgs, Current_Table_Items_Bool_Exp, Current_Table_Items_Order_By, Current_Table_Items_Select_Column, Current_Table_Items_Stream_Cursor_Input, Current_Table_Items_Stream_Cursor_Value_Input, Current_Token_Datas, Current_Token_DatasDefault_PropertiesArgs, Current_Token_Datas_Bool_Exp, Current_Token_Datas_Order_By, Current_Token_Datas_Select_Column, Current_Token_Datas_Stream_Cursor_Input, Current_Token_Datas_Stream_Cursor_Value_Input, Current_Token_Datas_V2, Current_Token_Datas_V2Current_Token_OwnershipsArgs, Current_Token_Datas_V2Current_Token_Ownerships_AggregateArgs, Current_Token_Datas_V2Token_PropertiesArgs, Current_Token_Datas_V2_Bool_Exp, Current_Token_Datas_V2_Order_By, Current_Token_Datas_V2_Select_Column, Current_Token_Datas_V2_Stream_Cursor_Input, Current_Token_Datas_V2_Stream_Cursor_Value_Input, Current_Token_Ownerships, Current_Token_OwnershipsToken_PropertiesArgs, Current_Token_Ownerships_Aggregate, Current_Token_Ownerships_Aggregate_Bool_Exp, Current_Token_Ownerships_Aggregate_Bool_Exp_Count, Current_Token_Ownerships_Aggregate_Fields, Current_Token_Ownerships_Aggregate_FieldsCountArgs, Current_Token_Ownerships_Aggregate_Order_By, Current_Token_Ownerships_Avg_Fields, Current_Token_Ownerships_Avg_Order_By, Current_Token_Ownerships_Bool_Exp, Current_Token_Ownerships_Max_Fields, Current_Token_Ownerships_Max_Order_By, Current_Token_Ownerships_Min_Fields, Current_Token_Ownerships_Min_Order_By, Current_Token_Ownerships_Order_By, Current_Token_Ownerships_Select_Column, Current_Token_Ownerships_Stddev_Fields, Current_Token_Ownerships_Stddev_Order_By, Current_Token_Ownerships_Stddev_Pop_Fields, Current_Token_Ownerships_Stddev_Pop_Order_By, Current_Token_Ownerships_Stddev_Samp_Fields, Current_Token_Ownerships_Stddev_Samp_Order_By, Current_Token_Ownerships_Stream_Cursor_Input, Current_Token_Ownerships_Stream_Cursor_Value_Input, Current_Token_Ownerships_Sum_Fields, Current_Token_Ownerships_Sum_Order_By, Current_Token_Ownerships_V2, Current_Token_Ownerships_V2Composed_NftsArgs, Current_Token_Ownerships_V2Composed_Nfts_AggregateArgs, Current_Token_Ownerships_V2Token_Properties_Mutated_V1Args, Current_Token_Ownerships_V2_Aggregate, Current_Token_Ownerships_V2_Aggregate_Bool_Exp, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or, Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Count, Current_Token_Ownerships_V2_Aggregate_Fields, Current_Token_Ownerships_V2_Aggregate_FieldsCountArgs, Current_Token_Ownerships_V2_Aggregate_Order_By, Current_Token_Ownerships_V2_Avg_Fields, Current_Token_Ownerships_V2_Avg_Order_By, Current_Token_Ownerships_V2_Bool_Exp, Current_Token_Ownerships_V2_Max_Fields, Current_Token_Ownerships_V2_Max_Order_By, Current_Token_Ownerships_V2_Min_Fields, Current_Token_Ownerships_V2_Min_Order_By, Current_Token_Ownerships_V2_Order_By, Current_Token_Ownerships_V2_Select_Column, Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Current_Token_Ownerships_V2_Select_Column_Current_Token_Ownerships_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Current_Token_Ownerships_V2_Stddev_Fields, Current_Token_Ownerships_V2_Stddev_Order_By, Current_Token_Ownerships_V2_Stddev_Pop_Fields, Current_Token_Ownerships_V2_Stddev_Pop_Order_By, Current_Token_Ownerships_V2_Stddev_Samp_Fields, Current_Token_Ownerships_V2_Stddev_Samp_Order_By, Current_Token_Ownerships_V2_Stream_Cursor_Input, Current_Token_Ownerships_V2_Stream_Cursor_Value_Input, Current_Token_Ownerships_V2_Sum_Fields, Current_Token_Ownerships_V2_Sum_Order_By, Current_Token_Ownerships_V2_Var_Pop_Fields, Current_Token_Ownerships_V2_Var_Pop_Order_By, Current_Token_Ownerships_V2_Var_Samp_Fields, Current_Token_Ownerships_V2_Var_Samp_Order_By, Current_Token_Ownerships_V2_Variance_Fields, Current_Token_Ownerships_V2_Variance_Order_By, Current_Token_Ownerships_Var_Pop_Fields, Current_Token_Ownerships_Var_Pop_Order_By, Current_Token_Ownerships_Var_Samp_Fields, Current_Token_Ownerships_Var_Samp_Order_By, Current_Token_Ownerships_Variance_Fields, Current_Token_Ownerships_Variance_Order_By, Current_Token_Pending_Claims, Current_Token_Pending_Claims_Bool_Exp, Current_Token_Pending_Claims_Order_By, Current_Token_Pending_Claims_Select_Column, Current_Token_Pending_Claims_Stream_Cursor_Input, Current_Token_Pending_Claims_Stream_Cursor_Value_Input, Cursor_Ordering, CustomSignerClient, DefaultNetworks, Delegated_Staking_Activities, Delegated_Staking_Activities_Aggregate_Order_By, Delegated_Staking_Activities_Avg_Order_By, Delegated_Staking_Activities_Bool_Exp, Delegated_Staking_Activities_Max_Order_By, Delegated_Staking_Activities_Min_Order_By, Delegated_Staking_Activities_Order_By, Delegated_Staking_Activities_Select_Column, Delegated_Staking_Activities_Stddev_Order_By, Delegated_Staking_Activities_Stddev_Pop_Order_By, Delegated_Staking_Activities_Stddev_Samp_Order_By, Delegated_Staking_Activities_Stream_Cursor_Input, Delegated_Staking_Activities_Stream_Cursor_Value_Input, Delegated_Staking_Activities_Sum_Order_By, Delegated_Staking_Activities_Var_Pop_Order_By, Delegated_Staking_Activities_Var_Samp_Order_By, Delegated_Staking_Activities_Variance_Order_By, Delegated_Staking_Pool_Balances, Delegated_Staking_Pool_Balances_Aggregate, Delegated_Staking_Pool_Balances_Aggregate_Fields, Delegated_Staking_Pool_Balances_Aggregate_FieldsCountArgs, Delegated_Staking_Pool_Balances_Avg_Fields, Delegated_Staking_Pool_Balances_Bool_Exp, Delegated_Staking_Pool_Balances_Max_Fields, Delegated_Staking_Pool_Balances_Min_Fields, Delegated_Staking_Pool_Balances_Order_By, Delegated_Staking_Pool_Balances_Select_Column, Delegated_Staking_Pool_Balances_Stddev_Fields, Delegated_Staking_Pool_Balances_Stddev_Pop_Fields, Delegated_Staking_Pool_Balances_Stddev_Samp_Fields, Delegated_Staking_Pool_Balances_Stream_Cursor_Input, Delegated_Staking_Pool_Balances_Stream_Cursor_Value_Input, Delegated_Staking_Pool_Balances_Sum_Fields, Delegated_Staking_Pool_Balances_Var_Pop_Fields, Delegated_Staking_Pool_Balances_Var_Samp_Fields, Delegated_Staking_Pool_Balances_Variance_Fields, Delegated_Staking_Pools, Delegated_Staking_Pools_Bool_Exp, Delegated_Staking_Pools_Order_By, Delegated_Staking_Pools_Select_Column, Delegated_Staking_Pools_Stream_Cursor_Input, Delegated_Staking_Pools_Stream_Cursor_Value_Input, DelegationPoolMetadata, DelegationPoolResource, DelegationPoolResourceData, Delegator_Distinct_Pool, Delegator_Distinct_Pool_Aggregate, Delegator_Distinct_Pool_Aggregate_Fields, Delegator_Distinct_Pool_Aggregate_FieldsCountArgs, Delegator_Distinct_Pool_Bool_Exp, Delegator_Distinct_Pool_Max_Fields, Delegator_Distinct_Pool_Min_Fields, Delegator_Distinct_Pool_Order_By, Delegator_Distinct_Pool_Select_Column, Delegator_Distinct_Pool_Stream_Cursor_Input, Delegator_Distinct_Pool_Stream_Cursor_Value_Input, DepositWithdrawalMismatchError, EXPLORER_BASE_PATH, EntryFunctionPayload, Event, EventHandle, EventWithVersion, Events, EventsDataArgs, Events_Bool_Exp, Events_Order_By, Events_Select_Column, Events_Stream_Cursor_Input, Events_Stream_Cursor_Value_Input, Exact, ExtendedTokenData, FetchAccountTotalTokensArgs, FetchAddressFromNameArgs, FetchBalanceArgs, FetchCoinInfoArgs, FetchEventsArgs, FetchFaucetStatusArgs, FetchFungibleAssetMetadataArgs, FetchIndexedAccountActivitiesArgs, FetchIndexedAccountActivitiesResult, FetchIndexedAccountCollectionsArgs, FetchIndexedAccountCollectionsResult, FetchIndexedAccountTokensArgs, FetchIndexedAccountTokensResult, FetchIndexedTokenActivitiesArgs, FetchIndexedTokenActivitiesResult, FetchIndexedTokenDataArgs, FetchIndexedTokenDataResult, FetchIndexedTokensPendingOfferClaimsArgs, FetchIndexedTokensPendingOfferClaimsResult, FetchIndexerProcessorAvailabilityArgs, FetchIsValidMetadataArgs, FetchNameFromAddressArgs, FetchNodeStatusArgs, FetchOwnedDigitalAssetsArgs, FetchOwnedDigitalAssetsResult, FetchResourceTypeArgs, FetchResourcesArgs, FetchTokenAcquiredDateArgs, FetchTokenDataWithAddressArgs, FetchTokenMetadataArgs, FetchTransactionArgs, FetchWaitForTransactionArgs, FormatAmountOptions, FormatCoinOptions, FundAccountArgs, FungibleAssetEventsResource, FungibleAssetEventsResourceData, FungibleAssetTransferPayloadArgs, FungibleStoreResource, FungibleStoreResourceData, Fungible_Asset_Activities, Fungible_Asset_ActivitiesOwner_Aptos_NamesArgs, Fungible_Asset_ActivitiesOwner_Aptos_Names_AggregateArgs, Fungible_Asset_Activities_Aggregate_Order_By, Fungible_Asset_Activities_Avg_Order_By, Fungible_Asset_Activities_Bool_Exp, Fungible_Asset_Activities_Max_Order_By, Fungible_Asset_Activities_Min_Order_By, Fungible_Asset_Activities_Order_By, Fungible_Asset_Activities_Select_Column, Fungible_Asset_Activities_Stddev_Order_By, Fungible_Asset_Activities_Stddev_Pop_Order_By, Fungible_Asset_Activities_Stddev_Samp_Order_By, Fungible_Asset_Activities_Stream_Cursor_Input, Fungible_Asset_Activities_Stream_Cursor_Value_Input, Fungible_Asset_Activities_Sum_Order_By, Fungible_Asset_Activities_Var_Pop_Order_By, Fungible_Asset_Activities_Var_Samp_Order_By, Fungible_Asset_Activities_Variance_Order_By, Fungible_Asset_Metadata, Fungible_Asset_Metadata_Bool_Exp, Fungible_Asset_Metadata_Order_By, Fungible_Asset_Metadata_Select_Column, Fungible_Asset_Metadata_Stream_Cursor_Input, Fungible_Asset_Metadata_Stream_Cursor_Value_Input, GasEvent, GasFeeActivityItem, GasNotFoundError, GenericEvent, GenericTransaction, GeoData, GetAccountCollectionsQuery, GetAccountCollectionsQueryVariables, GetAccountCurrentTokensQuery, GetAccountCurrentTokensQueryVariables, GetAccountTokensTotalQuery, GetAccountTokensTotalQueryVariables, GetActivitiesAggregateQuery, GetActivitiesAggregateQueryVariables, GetClientsResult, GetCoinListArgs, GetCoinListResult, GetConsolidatedActivitiesQuery, GetConsolidatedActivitiesQueryVariables, GetCurrentAptBalanceQuery, GetCurrentAptBalanceQueryVariables, GetCurrentTokenDataQuery, GetCurrentTokenDataQueryVariables, GetDelegatedStakingQuery, GetDelegatedStakingQueryVariables, GetDelegatedStakingRoyaltiesQuery, GetDelegatedStakingRoyaltiesQueryVariables, GetDelegationPoolsQuery, GetDelegationPoolsQueryVariables, GetExplorerUrlArgs, GetFungibleAssetMetadataQuery, GetFungibleAssetMetadataQueryVariables, GetNumberOfDelegatorsQuery, GetNumberOfDelegatorsQueryVariables, GetPendingClaimsForTokenQuery, GetPendingClaimsForTokenQueryVariables, GetProcessorLastVersionQuery, GetProcessorLastVersionQueryVariables, GetTokenAcquisitionActivityQuery, GetTokenAcquisitionActivityQueryVariables, GetTokenActivitiesQuery, GetTokenActivitiesQueryVariables, GetTokenDataQuery, GetTokenDataQueryVariables, GetTokenPendingClaimsQuery, GetTokenPendingClaimsQueryVariables, Guid, ImageFileType, Incremental, IndexerPetraActivity, Indexer_Status, Indexer_Status_Bool_Exp, Indexer_Status_Order_By, Indexer_Status_Select_Column, Indexer_Status_Stream_Cursor_Input, Indexer_Status_Stream_Cursor_Value_Input, InputMaybe, Int_Comparison_Exp, JsonPayload, Jsonb_Cast_Exp, Jsonb_Comparison_Exp, Ledger_Infos, Ledger_Infos_Bool_Exp, Ledger_Infos_Order_By, Ledger_Infos_Select_Column, Ledger_Infos_Stream_Cursor_Input, Ledger_Infos_Stream_Cursor_Value_Input, MAX_INDEXER_INT, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MetaDataJsonCategory, MetadataJson, MetadataJsonAttribute, MetadataJsonCollection, MetadataJsonCreator, MetadataJsonFile, MetadataJsonProperties, MintTokenEvent, MoveAbortCategory, MoveAbortDetails, MoveAbortLocation, MoveStatusCode, MoveStatusCodeKey, MoveStatusCodeText, MoveVmError, MoveVmStatus, Move_Resources, Move_Resources_Aggregate, Move_Resources_Aggregate_Fields, Move_Resources_Aggregate_FieldsCountArgs, Move_Resources_Avg_Fields, Move_Resources_Bool_Exp, Move_Resources_Max_Fields, Move_Resources_Min_Fields, Move_Resources_Order_By, Move_Resources_Select_Column, Move_Resources_Stddev_Fields, Move_Resources_Stddev_Pop_Fields, Move_Resources_Stddev_Samp_Fields, Move_Resources_Stream_Cursor_Input, Move_Resources_Stream_Cursor_Value_Input, Move_Resources_Sum_Fields, Move_Resources_Var_Pop_Fields, Move_Resources_Var_Samp_Fields, Move_Resources_Variance_Fields, MultisigPayload, NaturalCoinTransferPayloadArgs, NetworkInfo, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Auctions_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Aggregate_FieldsCountArgs, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Avg_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Max_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Min_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Pop_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stddev_Samp_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Sum_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Var_Pop_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Var_Samp_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Listings_Variance_Fields, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Bool_Exp, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Order_By, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Select_Column, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Input, Nft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_Stream_Cursor_Value_Input, Nft_Marketplace_V2_Nft_Marketplace_Activities, Nft_Marketplace_V2_Nft_Marketplace_Activities_Bool_Exp, Nft_Marketplace_V2_Nft_Marketplace_Activities_Order_By, Nft_Marketplace_V2_Nft_Marketplace_Activities_Select_Column, Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Input, Nft_Marketplace_V2_Nft_Marketplace_Activities_Stream_Cursor_Value_Input, Nft_Metadata_Crawler_Parsed_Asset_Uris, Nft_Metadata_Crawler_Parsed_Asset_Uris_Bool_Exp, Nft_Metadata_Crawler_Parsed_Asset_Uris_Order_By, Nft_Metadata_Crawler_Parsed_Asset_Uris_Select_Column, Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Input, Nft_Metadata_Crawler_Parsed_Asset_Uris_Stream_Cursor_Value_Input, Num_Active_Delegator_Per_Pool, Num_Active_Delegator_Per_Pool_Bool_Exp, Num_Active_Delegator_Per_Pool_Order_By, Num_Active_Delegator_Per_Pool_Select_Column, Num_Active_Delegator_Per_Pool_Stream_Cursor_Input, Num_Active_Delegator_Per_Pool_Stream_Cursor_Value_Input, Numeric_Comparison_Exp, OCTA_NEGATIVE_EXPONENT, OCTA_NUMBER, OCTA_POSITIVE_EXPONENT, OCTA_UNIT, ObjectCoreResource, ObjectCoreResourceData, OnChainTransaction, Order_By, PLURAL_OCTA_UNIT, PaginationCursors, ParseExtendedTokenDataArgs, PendingTransaction, PoolResourceData, Processor_Status, Processor_Status_Bool_Exp, Processor_Status_Order_By, Processor_Status_Select_Column, Processor_Status_Stream_Cursor_Input, Processor_Status_Stream_Cursor_Value_Input, Proposal_Votes, Proposal_Votes_Aggregate, Proposal_Votes_Aggregate_Fields, Proposal_Votes_Aggregate_FieldsCountArgs, Proposal_Votes_Avg_Fields, Proposal_Votes_Bool_Exp, Proposal_Votes_Max_Fields, Proposal_Votes_Min_Fields, Proposal_Votes_Order_By, Proposal_Votes_Select_Column, Proposal_Votes_Stddev_Fields, Proposal_Votes_Stddev_Pop_Fields, Proposal_Votes_Stddev_Samp_Fields, Proposal_Votes_Stream_Cursor_Input, Proposal_Votes_Stream_Cursor_Value_Input, Proposal_Votes_Sum_Fields, Proposal_Votes_Var_Pop_Fields, Proposal_Votes_Var_Samp_Fields, Proposal_Votes_Variance_Fields, PublicKeySchemeNotSupported, QueryRefetchTime, QueryStaleTime, Query_Root, Query_RootAccount_TransactionsArgs, Query_RootAccount_Transactions_AggregateArgs, Query_RootAccount_Transactions_By_PkArgs, Query_RootAddress_Events_SummaryArgs, Query_RootAddress_Version_From_EventsArgs, Query_RootAddress_Version_From_Events_AggregateArgs, Query_RootAddress_Version_From_Move_ResourcesArgs, Query_RootAddress_Version_From_Move_Resources_AggregateArgs, Query_RootBlock_Metadata_TransactionsArgs, Query_RootBlock_Metadata_Transactions_By_PkArgs, Query_RootCoin_ActivitiesArgs, Query_RootCoin_Activities_AggregateArgs, Query_RootCoin_BalancesArgs, Query_RootCoin_InfosArgs, Query_RootCoin_SupplyArgs, Query_RootCoin_Supply_By_PkArgs, Query_RootCollection_DatasArgs, Query_RootCurrent_Ans_LookupArgs, Query_RootCurrent_Ans_Lookup_V2Args, Query_RootCurrent_Ans_Lookup_V2_By_PkArgs, Query_RootCurrent_Aptos_NamesArgs, Query_RootCurrent_Aptos_Names_AggregateArgs, Query_RootCurrent_Coin_BalancesArgs, Query_RootCurrent_Collection_DatasArgs, Query_RootCurrent_Collection_Ownership_V2_ViewArgs, Query_RootCurrent_Collection_Ownership_V2_View_AggregateArgs, Query_RootCurrent_Collections_V2Args, Query_RootCurrent_Collections_V2_By_PkArgs, Query_RootCurrent_Delegated_Staking_Pool_BalancesArgs, Query_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs, Query_RootCurrent_Delegated_VoterArgs, Query_RootCurrent_Delegated_Voter_By_PkArgs, Query_RootCurrent_Delegator_BalancesArgs, Query_RootCurrent_Delegator_Balances_By_PkArgs, Query_RootCurrent_Fungible_Asset_BalancesArgs, Query_RootCurrent_Fungible_Asset_Balances_AggregateArgs, Query_RootCurrent_Fungible_Asset_Balances_By_PkArgs, Query_RootCurrent_ObjectsArgs, Query_RootCurrent_Objects_By_PkArgs, Query_RootCurrent_Staking_Pool_VoterArgs, Query_RootCurrent_Staking_Pool_Voter_By_PkArgs, Query_RootCurrent_Table_ItemsArgs, Query_RootCurrent_Table_Items_By_PkArgs, Query_RootCurrent_Token_DatasArgs, Query_RootCurrent_Token_Datas_V2Args, Query_RootCurrent_Token_Datas_V2_By_PkArgs, Query_RootCurrent_Token_OwnershipsArgs, Query_RootCurrent_Token_Ownerships_AggregateArgs, Query_RootCurrent_Token_Ownerships_V2Args, Query_RootCurrent_Token_Ownerships_V2_AggregateArgs, Query_RootCurrent_Token_Ownerships_V2_By_PkArgs, Query_RootCurrent_Token_Pending_ClaimsArgs, Query_RootCurrent_Token_Pending_Claims_By_PkArgs, Query_RootDelegated_Staking_ActivitiesArgs, Query_RootDelegated_Staking_Activities_By_PkArgs, Query_RootDelegated_Staking_Pool_BalancesArgs, Query_RootDelegated_Staking_Pool_Balances_AggregateArgs, Query_RootDelegated_Staking_Pool_Balances_By_PkArgs, Query_RootDelegated_Staking_PoolsArgs, Query_RootDelegated_Staking_Pools_By_PkArgs, Query_RootDelegator_Distinct_PoolArgs, Query_RootDelegator_Distinct_Pool_AggregateArgs, Query_RootEventsArgs, Query_RootEvents_By_PkArgs, Query_RootFungible_Asset_ActivitiesArgs, Query_RootFungible_Asset_Activities_By_PkArgs, Query_RootFungible_Asset_MetadataArgs, Query_RootFungible_Asset_Metadata_By_PkArgs, Query_RootIndexer_StatusArgs, Query_RootIndexer_Status_By_PkArgs, Query_RootLedger_InfosArgs, Query_RootLedger_Infos_By_PkArgs, Query_RootMove_ResourcesArgs, Query_RootMove_Resources_AggregateArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_AggregateArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs, Query_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs, Query_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs, Query_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs, Query_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs, Query_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs, Query_RootNum_Active_Delegator_Per_PoolArgs, Query_RootProcessor_StatusArgs, Query_RootProcessor_Status_By_PkArgs, Query_RootProposal_VotesArgs, Query_RootProposal_Votes_AggregateArgs, Query_RootProposal_Votes_By_PkArgs, Query_RootSignaturesArgs, Query_RootSignatures_By_PkArgs, Query_RootTable_ItemsArgs, Query_RootTable_Items_By_PkArgs, Query_RootTable_MetadatasArgs, Query_RootTable_Metadatas_By_PkArgs, Query_RootToken_ActivitiesArgs, Query_RootToken_Activities_AggregateArgs, Query_RootToken_Activities_V2Args, Query_RootToken_Activities_V2_AggregateArgs, Query_RootToken_Activities_V2_By_PkArgs, Query_RootToken_DatasArgs, Query_RootToken_OwnershipsArgs, Query_RootTokensArgs, Query_RootUser_TransactionsArgs, Query_RootUser_Transactions_By_PkArgs, RawTransactionFactory, ReceiveCoinEvent, ReceiveCoinEventBase, ReceiveTokenEvent, ReceiveTokenOfferEvent, Resource, ResourceMap, ResourceType, ResourceTypeValue, Scalars, Sdk, SendCoinEvent, SendCoinEventBase, SendTokenEvent, SendTokenOfferEvent, SenderNotFoundError, SerializedMultiAgentPayload, SerializedPayload, SignAndSubmitRawTransactionArgs, SignAndSubmitRawTransactionResult, SignAndSubmitTransactionArgs, SignAndSubmitTransactionResult, SignBufferArgs, SignMessageArgs, SignTransactionArgs, SignTransactionResult, Signatures, SignaturesPublic_Key_IndicesArgs, Signatures_Bool_Exp, Signatures_Order_By, Signatures_Select_Column, Signatures_Stream_Cursor_Input, Signatures_Stream_Cursor_Value_Input, SignerClient, SignerClientInvalidFunctionError, SignerNotFoundError, SimulateTransactionArgs, SimulationArgumentError, StakeEvent, StakeEventBase, StakeOperation, StakePoolResource, StakePoolResourceData, StakingInfo, String_Comparison_Exp, SubmitTransactionArgs, SubmitTransactionResult, Subscription_Root, Subscription_RootAccount_TransactionsArgs, Subscription_RootAccount_Transactions_AggregateArgs, Subscription_RootAccount_Transactions_By_PkArgs, Subscription_RootAccount_Transactions_StreamArgs, Subscription_RootAddress_Events_SummaryArgs, Subscription_RootAddress_Events_Summary_StreamArgs, Subscription_RootAddress_Version_From_EventsArgs, Subscription_RootAddress_Version_From_Events_AggregateArgs, Subscription_RootAddress_Version_From_Events_StreamArgs, Subscription_RootAddress_Version_From_Move_ResourcesArgs, Subscription_RootAddress_Version_From_Move_Resources_AggregateArgs, Subscription_RootAddress_Version_From_Move_Resources_StreamArgs, Subscription_RootBlock_Metadata_TransactionsArgs, Subscription_RootBlock_Metadata_Transactions_By_PkArgs, Subscription_RootBlock_Metadata_Transactions_StreamArgs, Subscription_RootCoin_ActivitiesArgs, Subscription_RootCoin_Activities_AggregateArgs, Subscription_RootCoin_Activities_StreamArgs, Subscription_RootCoin_BalancesArgs, Subscription_RootCoin_Balances_StreamArgs, Subscription_RootCoin_InfosArgs, Subscription_RootCoin_Infos_StreamArgs, Subscription_RootCoin_SupplyArgs, Subscription_RootCoin_Supply_By_PkArgs, Subscription_RootCoin_Supply_StreamArgs, Subscription_RootCollection_DatasArgs, Subscription_RootCollection_Datas_StreamArgs, Subscription_RootCurrent_Ans_LookupArgs, Subscription_RootCurrent_Ans_Lookup_StreamArgs, Subscription_RootCurrent_Ans_Lookup_V2Args, Subscription_RootCurrent_Ans_Lookup_V2_By_PkArgs, Subscription_RootCurrent_Ans_Lookup_V2_StreamArgs, Subscription_RootCurrent_Aptos_NamesArgs, Subscription_RootCurrent_Aptos_Names_AggregateArgs, Subscription_RootCurrent_Aptos_Names_StreamArgs, Subscription_RootCurrent_Coin_BalancesArgs, Subscription_RootCurrent_Coin_Balances_StreamArgs, Subscription_RootCurrent_Collection_DatasArgs, Subscription_RootCurrent_Collection_Datas_StreamArgs, Subscription_RootCurrent_Collection_Ownership_V2_ViewArgs, Subscription_RootCurrent_Collection_Ownership_V2_View_AggregateArgs, Subscription_RootCurrent_Collection_Ownership_V2_View_StreamArgs, Subscription_RootCurrent_Collections_V2Args, Subscription_RootCurrent_Collections_V2_By_PkArgs, Subscription_RootCurrent_Collections_V2_StreamArgs, Subscription_RootCurrent_Delegated_Staking_Pool_BalancesArgs, Subscription_RootCurrent_Delegated_Staking_Pool_Balances_By_PkArgs, Subscription_RootCurrent_Delegated_Staking_Pool_Balances_StreamArgs, Subscription_RootCurrent_Delegated_VoterArgs, Subscription_RootCurrent_Delegated_Voter_By_PkArgs, Subscription_RootCurrent_Delegated_Voter_StreamArgs, Subscription_RootCurrent_Delegator_BalancesArgs, Subscription_RootCurrent_Delegator_Balances_By_PkArgs, Subscription_RootCurrent_Delegator_Balances_StreamArgs, Subscription_RootCurrent_Fungible_Asset_BalancesArgs, Subscription_RootCurrent_Fungible_Asset_Balances_AggregateArgs, Subscription_RootCurrent_Fungible_Asset_Balances_By_PkArgs, Subscription_RootCurrent_Fungible_Asset_Balances_StreamArgs, Subscription_RootCurrent_ObjectsArgs, Subscription_RootCurrent_Objects_By_PkArgs, Subscription_RootCurrent_Objects_StreamArgs, Subscription_RootCurrent_Staking_Pool_VoterArgs, Subscription_RootCurrent_Staking_Pool_Voter_By_PkArgs, Subscription_RootCurrent_Staking_Pool_Voter_StreamArgs, Subscription_RootCurrent_Table_ItemsArgs, Subscription_RootCurrent_Table_Items_By_PkArgs, Subscription_RootCurrent_Table_Items_StreamArgs, Subscription_RootCurrent_Token_DatasArgs, Subscription_RootCurrent_Token_Datas_StreamArgs, Subscription_RootCurrent_Token_Datas_V2Args, Subscription_RootCurrent_Token_Datas_V2_By_PkArgs, Subscription_RootCurrent_Token_Datas_V2_StreamArgs, Subscription_RootCurrent_Token_OwnershipsArgs, Subscription_RootCurrent_Token_Ownerships_AggregateArgs, Subscription_RootCurrent_Token_Ownerships_StreamArgs, Subscription_RootCurrent_Token_Ownerships_V2Args, Subscription_RootCurrent_Token_Ownerships_V2_AggregateArgs, Subscription_RootCurrent_Token_Ownerships_V2_By_PkArgs, Subscription_RootCurrent_Token_Ownerships_V2_StreamArgs, Subscription_RootCurrent_Token_Pending_ClaimsArgs, Subscription_RootCurrent_Token_Pending_Claims_By_PkArgs, Subscription_RootCurrent_Token_Pending_Claims_StreamArgs, Subscription_RootDelegated_Staking_ActivitiesArgs, Subscription_RootDelegated_Staking_Activities_By_PkArgs, Subscription_RootDelegated_Staking_Activities_StreamArgs, Subscription_RootDelegated_Staking_Pool_BalancesArgs, Subscription_RootDelegated_Staking_Pool_Balances_AggregateArgs, Subscription_RootDelegated_Staking_Pool_Balances_By_PkArgs, Subscription_RootDelegated_Staking_Pool_Balances_StreamArgs, Subscription_RootDelegated_Staking_PoolsArgs, Subscription_RootDelegated_Staking_Pools_By_PkArgs, Subscription_RootDelegated_Staking_Pools_StreamArgs, Subscription_RootDelegator_Distinct_PoolArgs, Subscription_RootDelegator_Distinct_Pool_AggregateArgs, Subscription_RootDelegator_Distinct_Pool_StreamArgs, Subscription_RootEventsArgs, Subscription_RootEvents_By_PkArgs, Subscription_RootEvents_StreamArgs, Subscription_RootFungible_Asset_ActivitiesArgs, Subscription_RootFungible_Asset_Activities_By_PkArgs, Subscription_RootFungible_Asset_Activities_StreamArgs, Subscription_RootFungible_Asset_MetadataArgs, Subscription_RootFungible_Asset_Metadata_By_PkArgs, Subscription_RootFungible_Asset_Metadata_StreamArgs, Subscription_RootIndexer_StatusArgs, Subscription_RootIndexer_Status_By_PkArgs, Subscription_RootIndexer_Status_StreamArgs, Subscription_RootLedger_InfosArgs, Subscription_RootLedger_Infos_By_PkArgs, Subscription_RootLedger_Infos_StreamArgs, Subscription_RootMove_ResourcesArgs, Subscription_RootMove_Resources_AggregateArgs, Subscription_RootMove_Resources_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_AuctionsArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Auctions_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_OffersArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Collection_Offers_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_ListingsArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_AggregateArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Listings_StreamArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_OffersArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_By_PkArgs, Subscription_RootNft_Marketplace_V2_Current_Nft_Marketplace_Token_Offers_StreamArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_ActivitiesArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_By_PkArgs, Subscription_RootNft_Marketplace_V2_Nft_Marketplace_Activities_StreamArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_UrisArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_By_PkArgs, Subscription_RootNft_Metadata_Crawler_Parsed_Asset_Uris_StreamArgs, Subscription_RootNum_Active_Delegator_Per_PoolArgs, Subscription_RootNum_Active_Delegator_Per_Pool_StreamArgs, Subscription_RootProcessor_StatusArgs, Subscription_RootProcessor_Status_By_PkArgs, Subscription_RootProcessor_Status_StreamArgs, Subscription_RootProposal_VotesArgs, Subscription_RootProposal_Votes_AggregateArgs, Subscription_RootProposal_Votes_By_PkArgs, Subscription_RootProposal_Votes_StreamArgs, Subscription_RootSignaturesArgs, Subscription_RootSignatures_By_PkArgs, Subscription_RootSignatures_StreamArgs, Subscription_RootTable_ItemsArgs, Subscription_RootTable_Items_By_PkArgs, Subscription_RootTable_Items_StreamArgs, Subscription_RootTable_MetadatasArgs, Subscription_RootTable_Metadatas_By_PkArgs, Subscription_RootTable_Metadatas_StreamArgs, Subscription_RootToken_ActivitiesArgs, Subscription_RootToken_Activities_AggregateArgs, Subscription_RootToken_Activities_StreamArgs, Subscription_RootToken_Activities_V2Args, Subscription_RootToken_Activities_V2_AggregateArgs, Subscription_RootToken_Activities_V2_By_PkArgs, Subscription_RootToken_Activities_V2_StreamArgs, Subscription_RootToken_DatasArgs, Subscription_RootToken_Datas_StreamArgs, Subscription_RootToken_OwnershipsArgs, Subscription_RootToken_Ownerships_StreamArgs, Subscription_RootTokensArgs, Subscription_RootTokens_StreamArgs, Subscription_RootUser_TransactionsArgs, Subscription_RootUser_Transactions_By_PkArgs, Subscription_RootUser_Transactions_StreamArgs, SwapCoinEvent, SwapCoinEventBase, Table_Items, Table_ItemsDecoded_KeyArgs, Table_ItemsDecoded_ValueArgs, Table_Items_Bool_Exp, Table_Items_Order_By, Table_Items_Select_Column, Table_Items_Stream_Cursor_Input, Table_Items_Stream_Cursor_Value_Input, Table_Metadatas, Table_Metadatas_Bool_Exp, Table_Metadatas_Order_By, Table_Metadatas_Select_Column, Table_Metadatas_Stream_Cursor_Input, Table_Metadatas_Stream_Cursor_Value_Input, Timestamp_Comparison_Exp, Timestamptz_Comparison_Exp, TokenActivity, TokenActivityFragment, TokenAttributes, TokenBalanceChange, TokenClaim, TokenData, TokenDataFieldsFragment, TokenDepositEvent, TokenEvent, TokenStandard, TokenStoreResource, TokenStoreResourceData, TokenWithdrawEvent, Token_Activities, Token_ActivitiesAptos_Names_OwnerArgs, Token_ActivitiesAptos_Names_Owner_AggregateArgs, Token_ActivitiesAptos_Names_ToArgs, Token_ActivitiesAptos_Names_To_AggregateArgs, Token_Activities_Aggregate, Token_Activities_Aggregate_Bool_Exp, Token_Activities_Aggregate_Bool_Exp_Count, Token_Activities_Aggregate_Fields, Token_Activities_Aggregate_FieldsCountArgs, Token_Activities_Aggregate_Order_By, Token_Activities_Avg_Fields, Token_Activities_Avg_Order_By, Token_Activities_Bool_Exp, Token_Activities_Max_Fields, Token_Activities_Max_Order_By, Token_Activities_Min_Fields, Token_Activities_Min_Order_By, Token_Activities_Order_By, Token_Activities_Select_Column, Token_Activities_Stddev_Fields, Token_Activities_Stddev_Order_By, Token_Activities_Stddev_Pop_Fields, Token_Activities_Stddev_Pop_Order_By, Token_Activities_Stddev_Samp_Fields, Token_Activities_Stddev_Samp_Order_By, Token_Activities_Stream_Cursor_Input, Token_Activities_Stream_Cursor_Value_Input, Token_Activities_Sum_Fields, Token_Activities_Sum_Order_By, Token_Activities_V2, Token_Activities_V2Aptos_Names_FromArgs, Token_Activities_V2Aptos_Names_From_AggregateArgs, Token_Activities_V2Aptos_Names_ToArgs, Token_Activities_V2Aptos_Names_To_AggregateArgs, Token_Activities_V2_Aggregate, Token_Activities_V2_Aggregate_Bool_Exp, Token_Activities_V2_Aggregate_Bool_Exp_Bool_And, Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or, Token_Activities_V2_Aggregate_Bool_Exp_Count, Token_Activities_V2_Aggregate_Fields, Token_Activities_V2_Aggregate_FieldsCountArgs, Token_Activities_V2_Aggregate_Order_By, Token_Activities_V2_Avg_Fields, Token_Activities_V2_Avg_Order_By, Token_Activities_V2_Bool_Exp, Token_Activities_V2_Max_Fields, Token_Activities_V2_Max_Order_By, Token_Activities_V2_Min_Fields, Token_Activities_V2_Min_Order_By, Token_Activities_V2_Order_By, Token_Activities_V2_Select_Column, Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_And_Arguments_Columns, Token_Activities_V2_Select_Column_Token_Activities_V2_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns, Token_Activities_V2_Stddev_Fields, Token_Activities_V2_Stddev_Order_By, Token_Activities_V2_Stddev_Pop_Fields, Token_Activities_V2_Stddev_Pop_Order_By, Token_Activities_V2_Stddev_Samp_Fields, Token_Activities_V2_Stddev_Samp_Order_By, Token_Activities_V2_Stream_Cursor_Input, Token_Activities_V2_Stream_Cursor_Value_Input, Token_Activities_V2_Sum_Fields, Token_Activities_V2_Sum_Order_By, Token_Activities_V2_Var_Pop_Fields, Token_Activities_V2_Var_Pop_Order_By, Token_Activities_V2_Var_Samp_Fields, Token_Activities_V2_Var_Samp_Order_By, Token_Activities_V2_Variance_Fields, Token_Activities_V2_Variance_Order_By, Token_Activities_Var_Pop_Fields, Token_Activities_Var_Pop_Order_By, Token_Activities_Var_Samp_Fields, Token_Activities_Var_Samp_Order_By, Token_Activities_Variance_Fields, Token_Activities_Variance_Order_By, Token_Datas, Token_DatasDefault_PropertiesArgs, Token_Datas_Bool_Exp, Token_Datas_Order_By, Token_Datas_Select_Column, Token_Datas_Stream_Cursor_Input, Token_Datas_Stream_Cursor_Value_Input, Token_Ownerships, Token_Ownerships_Bool_Exp, Token_Ownerships_Order_By, Token_Ownerships_Select_Column, Token_Ownerships_Stream_Cursor_Input, Token_Ownerships_Stream_Cursor_Value_Input, Tokens, TokensToken_PropertiesArgs, Tokens_Bool_Exp, Tokens_Order_By, Tokens_Select_Column, Tokens_Stream_Cursor_Input, Tokens_Stream_Cursor_Value_Input, Transaction, TransactionError, TransactionOptions, TransactionPayload, TransactionValidationErrorReason, UnconfirmedActivityItem, UnexpectedNetworkError, UnsupportedNameFormatError, UseActivityConfig, User_Transactions, User_Transactions_Bool_Exp, User_Transactions_Order_By, User_Transactions_Select_Column, User_Transactions_Stream_Cursor_Input, User_Transactions_Stream_Cursor_Value_Input, ValidatorFromJSONFile, ValidatorInfo, ValidatorSetResource, ValidatorSetResourceData, ValidatorStatus, WalletAdapterClientInvalidFunctionError, WalletSignerClientInvalidFunctionError, aptosAccountCoinTransferFunction, aptosAccountCoinTransferFunctionName, aptosAccountCreateAccountViaTransferFunctionName, aptosAccountNamespace, aptosCoinInfoStructTag, aptosCoinStoreStructTag, aptosCoinStructTag, aptosDelegationPoolStructTag, aptosFAType, aptosStakePoolStructTag, aptosTypes, aptosValidatorSetStructTag, buildCoinTransferPayload, buildCreateAccountTransferPayload, buildFungibleAssetTransferPayload, buildNaturalCoinTransferPayload, buildRawTransactionFromBCSPayload, coinInfoResource, coinInfoStructTag, coinNamespace, coinStoreResource, coinStoreStructTag, convertAptosAccountToAccountInfo, convertAptosAccountToSigner, createPaginatedQuery, defaultExpirationSecondsFromNow, defaultNetworks, deserializeEntryFunctionPayload, deserializePayloadArg, rawInfoDevNet as devnetList, emptySigningFunction, encodeEntryFunctionPayload, encodePayload, ensureMultiAgentPayloadDeserialized, ensureMultiAgentPayloadSerialized, ensurePayloadDeserialized, ensurePayloadSerialized, explorerNetworkNamesMap, extractIpfsCid, fetchAccountTotalTokens, fetchAddressFromName, fetchAptBalance, fetchCoinInfo, fetchCoinProcessorAvailability, fetchEvents, fetchFaucetStatus, fetchFungibleAssetMetadata, fetchGasPrice, fetchIndexedAccountActivities, fetchIndexedAccountCollections, fetchIndexedAccountTokens, fetchIndexedTokenActivities, fetchIndexedTokenData, fetchIndexedTokensPendingOfferClaims, fetchIndexerProcessorAvailability, fetchIsValidMetadata, fetchNameFromAddress, fetchNodeStatus, fetchOwnedDigitalAssets, fetchResourceType, fetchResources, fetchTokenAcquiredDate, fetchTokenDataWithAddress, fetchTokenMetadata, fetchTokenProcessorAvailability, fetchTransaction, fetchWaitForTransaction, fixBadAptosUri, formatAmount, formatApt, formatCoin, formatUnits, fundAccount, fungibleAssetEventsTag, fungibleAssetMetadataStructTag, fungibleAssetStoreTag, getClients, getCoinList, getCoinStoresByCoinType, getExplorerUrl, getSequenceNumber, getTokenDataId, getTokenDataIdHash, handleApiError, imageExtensions, isApt, isAptosNftImage, isCoinEvent, isConfirmedActivityItem, isEntryFunctionPayload, isImageUri, isSequenceNumberTooOldError, rawInfoMainnet as mainnetList, makeCoinInfoStructTag, maxGasFeeFromEstimated, networks, normalizeAddress, normalizePayload, normalizeTimestamp, objectTag, parseApt, parseCollectionData, parseExtendedTokenData, parseMoveAbortDetails, parseMoveMiscError, parseMoveVmError, parseMoveVmStatus, parseRawEvent, parseTokenActivity, parseTokenClaim, parseTokenData, parseUnits, prettifyCoinInfo, primaryFungibleStoreNamespace, primaryFungibleStoreTransferFunctionName, replaceIpfsGateway, serializeEntryFunctionPayload, shareRequests, signAndSubmitRawTransaction, signAndSubmitTransaction, signBuffer, signMessage, signTransaction, simulateTransaction, stakeNamespace, submitTransaction, rawInfoTestNet as testnetList, throwForVmError, timestampToDate, tokenDepositStructTag, tokenNamespace, tokenStoreStructTag, tokenWithdrawStructTag, transformPetraActivity };