├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── actionlint.yaml ├── actions │ ├── run-build │ │ └── action.yaml │ ├── run-check-version │ │ └── action.yaml │ ├── run-confidential-assets-tests │ │ └── action.yaml │ ├── run-examples │ │ └── action.yaml │ ├── run-fmt │ │ └── action.yaml │ ├── run-lint │ │ └── action.yaml │ └── run-tests │ │ └── action.yaml └── workflows │ ├── run-build.yaml │ ├── run-check-version.yaml │ ├── run-confidential-assets-tests.yaml │ ├── run-examples.yaml │ ├── run-fmt.yaml │ ├── run-lint.yaml │ └── run-tests.yaml ├── .gitignore ├── .node-version ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .tool-versions ├── .versionrc.json ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SIGNED_INTEGER_TYPETAGS.md ├── confidential-assets ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── postbuild.cjs ├── src │ ├── api │ │ └── confidentialAsset.ts │ ├── consts.ts │ ├── crypto │ │ ├── chunkedAmount.ts │ │ ├── confidentialKeyRotation.ts │ │ ├── confidentialNormalization.ts │ │ ├── confidentialTransfer.ts │ │ ├── confidentialWithdraw.ts │ │ ├── encryptedAmount.ts │ │ ├── index.ts │ │ ├── rangeProof.ts │ │ ├── twistedEd25519.ts │ │ └── twistedElGamal.ts │ ├── helpers.ts │ ├── index.ts │ ├── internal │ │ ├── confidentialAssetTxnBuilder.ts │ │ ├── index.ts │ │ └── viewFunctions.ts │ ├── utils.ts │ └── utils │ │ └── memoize.ts ├── tests │ ├── README.MD │ ├── e2e │ │ ├── confidentialAsset.test.ts │ │ └── confidentialAssetTxnBuilder.test.ts │ ├── helpers │ │ └── index.ts │ └── units │ │ ├── api │ │ ├── checkBalances.test.ts │ │ ├── checkIsFrozen.test.ts │ │ ├── checkIsNormalized.test.ts │ │ ├── checkIsRegistered.test.ts │ │ ├── deposit.test.ts │ │ ├── getAssetAuditor.test.ts │ │ ├── negativeNormalize.test.ts │ │ ├── negativeTransfer.test.ts │ │ ├── negativeWithdraw.test.ts │ │ ├── normalize.test.ts │ │ ├── register.test.ts │ │ ├── safelyRollover.test.ts │ │ ├── transfer.test.ts │ │ ├── transferWithAuditor.test.ts │ │ └── withdraw.test.ts │ │ ├── confidentialProofs.test.ts │ │ └── kangaroo-decryption.test.ts ├── tsconfig.build.json └── tsup.config.ts ├── cucumber.js ├── docs ├── .gitignore ├── 404.html ├── @aptos-labs │ ├── index.md │ ├── ts-sdk-1.30.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ ├── ZkProof.html │ │ │ ├── _internal_.ANS.html │ │ │ ├── _internal_.Account.html │ │ │ ├── _internal_.AptosObject.html │ │ │ ├── _internal_.AsyncQueue.html │ │ │ ├── _internal_.AsyncQueueCancelledError.html │ │ │ ├── _internal_.Build.html │ │ │ ├── _internal_.Coin.html │ │ │ ├── _internal_.DigitalAsset.html │ │ │ ├── _internal_.Event.html │ │ │ ├── _internal_.EventEmitter-1.html │ │ │ ├── _internal_.Faucet.html │ │ │ ├── _internal_.FungibleAsset.html │ │ │ ├── _internal_.G1Bytes.html │ │ │ ├── _internal_.G2Bytes.html │ │ │ ├── _internal_.General.html │ │ │ ├── _internal_.Groth16VerificationKey.html │ │ │ ├── _internal_.Keyless.html │ │ │ ├── _internal_.Proof.html │ │ │ ├── _internal_.Simulate.html │ │ │ ├── _internal_.Staking.html │ │ │ ├── _internal_.Submit.html │ │ │ ├── _internal_.Table.html │ │ │ ├── _internal_.Transaction.html │ │ │ └── _internal_.TransactionManagement.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ ├── ZkpVariant.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumn.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ └── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ ├── functions │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateKey.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ ├── WhereArg.html │ │ │ ├── _internal_.CallSite.html │ │ │ ├── _internal_.CreateCollectionOptions.html │ │ │ ├── _internal_.Error.html │ │ │ ├── _internal_.EventEmitter.EventEmitterStatic.html │ │ │ ├── _internal_.EventEmitter.ListenerFn.html │ │ │ ├── _internal_.GetAccountDomainsArgs.html │ │ │ ├── _internal_.GetAccountNamesArgs.html │ │ │ ├── _internal_.GetAccountSubdomainsArgs.html │ │ │ ├── _internal_.GetDomainSubdomainsArgs.html │ │ │ ├── _internal_.PendingDequeue.html │ │ │ ├── _internal_.PromiseFulfilledResult.html │ │ │ ├── _internal_.QueryNamesOptions.html │ │ │ └── _internal_.RegisterNameParameters.html │ │ ├── modules.html │ │ ├── modules │ │ │ ├── _internal_.EventEmitter.html │ │ │ └── _internal_.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ ├── WriteSetChangeWriteTableItem.html │ │ │ ├── _internal_.AptosApiErrorOpts.html │ │ │ ├── _internal_.BigintComparisonExp.html │ │ │ ├── _internal_.BooleanComparisonExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── _internal_.CurrentAptosNamesBoolExp.html │ │ │ ├── _internal_.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── _internal_.EventEmitter.ArgumentMap.html │ │ │ ├── _internal_.EventEmitter.EventArgs.html │ │ │ ├── _internal_.EventEmitter.EventListener.html │ │ │ ├── _internal_.EventEmitter.EventNames.html │ │ │ ├── _internal_.EventEmitter.ValidEventTypes.html │ │ │ ├── _internal_.EventsBoolExp.html │ │ │ ├── _internal_.Exclude.html │ │ │ ├── _internal_.Extract.html │ │ │ ├── _internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── _internal_.FungibleAssetActivitiesBoolExp.html │ │ │ ├── _internal_.FungibleAssetMetadataBoolExp.html │ │ │ ├── _internal_.GetAccountCoinsDataQuery.html │ │ │ ├── _internal_.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensQuery.html │ │ │ ├── _internal_.GetChainTopUserTransactionsQuery.html │ │ │ ├── _internal_.GetCollectionDataQuery.html │ │ │ ├── _internal_.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── _internal_.GetCurrentTokenOwnershipQuery.html │ │ │ ├── _internal_.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── _internal_.GetEventsQuery.html │ │ │ ├── _internal_.GetFungibleAssetActivitiesQuery.html │ │ │ ├── _internal_.GetFungibleAssetMetadataQuery.html │ │ │ ├── _internal_.GetNamesQuery.html │ │ │ ├── _internal_.GetNumberOfDelegatorsQuery.html │ │ │ ├── _internal_.GetObjectDataQuery.html │ │ │ ├── _internal_.GetProcessorStatusQuery.html │ │ │ ├── _internal_.GetTableItemsDataQuery.html │ │ │ ├── _internal_.GetTableItemsMetadataQuery.html │ │ │ ├── _internal_.GetTokenActivityQuery.html │ │ │ ├── _internal_.GetTokenDataQuery.html │ │ │ ├── _internal_.Groth16VerificationKeyResponse.html │ │ │ ├── _internal_.InputMaybe.html │ │ │ ├── _internal_.IntComparisonExp.html │ │ │ ├── _internal_.JsonbCastExp.html │ │ │ ├── _internal_.JsonbComparisonExp.html │ │ │ ├── _internal_.Maybe.html │ │ │ ├── _internal_.NumericComparisonExp.html │ │ │ ├── _internal_.Omit.html │ │ │ ├── _internal_.Parameters.html │ │ │ ├── _internal_.Pick.html │ │ │ ├── _internal_.PropertyValue.html │ │ │ ├── _internal_.Record.html │ │ │ ├── _internal_.Scalars.html │ │ │ ├── _internal_.StringComparisonExp.html │ │ │ ├── _internal_.TableItemsBoolExp.html │ │ │ ├── _internal_.TableMetadatasBoolExp.html │ │ │ └── _internal_.TimestampComparisonExp.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ ├── _internal_.Error-1.html │ │ │ ├── _internal_.EventEmitter.EventEmitter.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.31.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ ├── ZkProof.html │ │ │ ├── _internal_.ANS.html │ │ │ ├── _internal_.Account.html │ │ │ ├── _internal_.AptosObject.html │ │ │ ├── _internal_.AsyncQueue.html │ │ │ ├── _internal_.AsyncQueueCancelledError.html │ │ │ ├── _internal_.Build.html │ │ │ ├── _internal_.Coin.html │ │ │ ├── _internal_.DigitalAsset.html │ │ │ ├── _internal_.Event.html │ │ │ ├── _internal_.EventEmitter-1.html │ │ │ ├── _internal_.Faucet.html │ │ │ ├── _internal_.FungibleAsset.html │ │ │ ├── _internal_.G1Bytes.html │ │ │ ├── _internal_.G2Bytes.html │ │ │ ├── _internal_.General.html │ │ │ ├── _internal_.Groth16VerificationKey.html │ │ │ ├── _internal_.Keyless.html │ │ │ ├── _internal_.Proof.html │ │ │ ├── _internal_.Simulate.html │ │ │ ├── _internal_.Staking.html │ │ │ ├── _internal_.Submit.html │ │ │ ├── _internal_.Table.html │ │ │ ├── _internal_.Transaction.html │ │ │ └── _internal_.TransactionManagement.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ ├── ZkpVariant.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumn.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ └── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ ├── functions │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateKey.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ ├── WhereArg.html │ │ │ ├── _internal_.CallSite.html │ │ │ ├── _internal_.CreateCollectionOptions.html │ │ │ ├── _internal_.Error.html │ │ │ ├── _internal_.EventEmitter.EventEmitterStatic.html │ │ │ ├── _internal_.EventEmitter.ListenerFn.html │ │ │ ├── _internal_.GetAccountDomainsArgs.html │ │ │ ├── _internal_.GetAccountNamesArgs.html │ │ │ ├── _internal_.GetAccountSubdomainsArgs.html │ │ │ ├── _internal_.GetDomainSubdomainsArgs.html │ │ │ ├── _internal_.PendingDequeue.html │ │ │ ├── _internal_.PromiseFulfilledResult.html │ │ │ ├── _internal_.QueryNamesOptions.html │ │ │ └── _internal_.RegisterNameParameters.html │ │ ├── modules.html │ │ ├── modules │ │ │ ├── _internal_.EventEmitter.html │ │ │ └── _internal_.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ ├── WriteSetChangeWriteTableItem.html │ │ │ ├── _internal_.AptosApiErrorOpts.html │ │ │ ├── _internal_.BigintComparisonExp.html │ │ │ ├── _internal_.BooleanComparisonExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── _internal_.CurrentAptosNamesBoolExp.html │ │ │ ├── _internal_.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── _internal_.EventEmitter.ArgumentMap.html │ │ │ ├── _internal_.EventEmitter.EventArgs.html │ │ │ ├── _internal_.EventEmitter.EventListener.html │ │ │ ├── _internal_.EventEmitter.EventNames.html │ │ │ ├── _internal_.EventEmitter.ValidEventTypes.html │ │ │ ├── _internal_.EventsBoolExp.html │ │ │ ├── _internal_.Exclude.html │ │ │ ├── _internal_.Extract.html │ │ │ ├── _internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── _internal_.FungibleAssetActivitiesBoolExp.html │ │ │ ├── _internal_.FungibleAssetMetadataBoolExp.html │ │ │ ├── _internal_.GetAccountCoinsDataQuery.html │ │ │ ├── _internal_.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensQuery.html │ │ │ ├── _internal_.GetChainTopUserTransactionsQuery.html │ │ │ ├── _internal_.GetCollectionDataQuery.html │ │ │ ├── _internal_.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── _internal_.GetCurrentTokenOwnershipQuery.html │ │ │ ├── _internal_.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── _internal_.GetEventsQuery.html │ │ │ ├── _internal_.GetFungibleAssetActivitiesQuery.html │ │ │ ├── _internal_.GetFungibleAssetMetadataQuery.html │ │ │ ├── _internal_.GetNamesQuery.html │ │ │ ├── _internal_.GetNumberOfDelegatorsQuery.html │ │ │ ├── _internal_.GetObjectDataQuery.html │ │ │ ├── _internal_.GetProcessorStatusQuery.html │ │ │ ├── _internal_.GetTableItemsDataQuery.html │ │ │ ├── _internal_.GetTableItemsMetadataQuery.html │ │ │ ├── _internal_.GetTokenActivityQuery.html │ │ │ ├── _internal_.GetTokenDataQuery.html │ │ │ ├── _internal_.Groth16VerificationKeyResponse.html │ │ │ ├── _internal_.InputMaybe.html │ │ │ ├── _internal_.IntComparisonExp.html │ │ │ ├── _internal_.JsonbCastExp.html │ │ │ ├── _internal_.JsonbComparisonExp.html │ │ │ ├── _internal_.Maybe.html │ │ │ ├── _internal_.NumericComparisonExp.html │ │ │ ├── _internal_.Omit.html │ │ │ ├── _internal_.Parameters.html │ │ │ ├── _internal_.Pick.html │ │ │ ├── _internal_.PropertyValue.html │ │ │ ├── _internal_.Record.html │ │ │ ├── _internal_.Scalars.html │ │ │ ├── _internal_.StringComparisonExp.html │ │ │ ├── _internal_.TableItemsBoolExp.html │ │ │ ├── _internal_.TableMetadatasBoolExp.html │ │ │ └── _internal_.TimestampComparisonExp.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ ├── _internal_.Error-1.html │ │ │ ├── _internal_.EventEmitter.EventEmitter.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.32.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ ├── ZkProof.html │ │ │ ├── _internal_.ANS.html │ │ │ ├── _internal_.Account.html │ │ │ ├── _internal_.AptosObject.html │ │ │ ├── _internal_.AsyncQueue.html │ │ │ ├── _internal_.AsyncQueueCancelledError.html │ │ │ ├── _internal_.Build.html │ │ │ ├── _internal_.Coin.html │ │ │ ├── _internal_.DigitalAsset.html │ │ │ ├── _internal_.Event.html │ │ │ ├── _internal_.EventEmitter-1.html │ │ │ ├── _internal_.Faucet.html │ │ │ ├── _internal_.FungibleAsset.html │ │ │ ├── _internal_.G1Bytes.html │ │ │ ├── _internal_.G2Bytes.html │ │ │ ├── _internal_.General.html │ │ │ ├── _internal_.Keyless.html │ │ │ ├── _internal_.Proof.html │ │ │ ├── _internal_.Simulate.html │ │ │ ├── _internal_.Staking.html │ │ │ ├── _internal_.Submit.html │ │ │ ├── _internal_.Table.html │ │ │ ├── _internal_.Transaction.html │ │ │ └── _internal_.TransactionManagement.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ ├── ZkpVariant.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumn.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ └── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ ├── functions │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ ├── WhereArg.html │ │ │ ├── _internal_.CallSite.html │ │ │ ├── _internal_.CreateCollectionOptions.html │ │ │ ├── _internal_.Error.html │ │ │ ├── _internal_.EventEmitter.EventEmitterStatic.html │ │ │ ├── _internal_.EventEmitter.ListenerFn.html │ │ │ ├── _internal_.GetAccountDomainsArgs.html │ │ │ ├── _internal_.GetAccountNamesArgs.html │ │ │ ├── _internal_.GetAccountSubdomainsArgs.html │ │ │ ├── _internal_.GetDomainSubdomainsArgs.html │ │ │ ├── _internal_.JwtHeader.html │ │ │ ├── _internal_.PendingDequeue.html │ │ │ ├── _internal_.PromiseFulfilledResult.html │ │ │ ├── _internal_.QueryNamesOptions.html │ │ │ └── _internal_.RegisterNameParameters.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── _internal_.EventEmitter.html │ │ │ └── _internal_.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ ├── WriteSetChangeWriteTableItem.html │ │ │ ├── _internal_.AptosApiErrorOpts.html │ │ │ ├── _internal_.BigintComparisonExp.html │ │ │ ├── _internal_.BooleanComparisonExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── _internal_.CurrentAptosNamesBoolExp.html │ │ │ ├── _internal_.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── _internal_.EventEmitter.ArgumentMap.html │ │ │ ├── _internal_.EventEmitter.EventArgs.html │ │ │ ├── _internal_.EventEmitter.EventListener.html │ │ │ ├── _internal_.EventEmitter.EventNames.html │ │ │ ├── _internal_.EventEmitter.ValidEventTypes.html │ │ │ ├── _internal_.EventsBoolExp.html │ │ │ ├── _internal_.Exclude.html │ │ │ ├── _internal_.Extract.html │ │ │ ├── _internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── _internal_.FungibleAssetActivitiesBoolExp.html │ │ │ ├── _internal_.FungibleAssetMetadataBoolExp.html │ │ │ ├── _internal_.GetAccountCoinsDataQuery.html │ │ │ ├── _internal_.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensQuery.html │ │ │ ├── _internal_.GetChainTopUserTransactionsQuery.html │ │ │ ├── _internal_.GetCollectionDataQuery.html │ │ │ ├── _internal_.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── _internal_.GetCurrentTokenOwnershipQuery.html │ │ │ ├── _internal_.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── _internal_.GetEventsQuery.html │ │ │ ├── _internal_.GetFungibleAssetActivitiesQuery.html │ │ │ ├── _internal_.GetFungibleAssetMetadataQuery.html │ │ │ ├── _internal_.GetNamesQuery.html │ │ │ ├── _internal_.GetNumberOfDelegatorsQuery.html │ │ │ ├── _internal_.GetObjectDataQuery.html │ │ │ ├── _internal_.GetProcessorStatusQuery.html │ │ │ ├── _internal_.GetTableItemsDataQuery.html │ │ │ ├── _internal_.GetTableItemsMetadataQuery.html │ │ │ ├── _internal_.GetTokenActivityQuery.html │ │ │ ├── _internal_.GetTokenDataQuery.html │ │ │ ├── _internal_.Groth16VerificationKeyResponse.html │ │ │ ├── _internal_.InputMaybe.html │ │ │ ├── _internal_.IntComparisonExp.html │ │ │ ├── _internal_.JsonbCastExp.html │ │ │ ├── _internal_.JsonbComparisonExp.html │ │ │ ├── _internal_.Maybe.html │ │ │ ├── _internal_.MoveAnyStruct.html │ │ │ ├── _internal_.NumericComparisonExp.html │ │ │ ├── _internal_.Omit.html │ │ │ ├── _internal_.Parameters.html │ │ │ ├── _internal_.Pick.html │ │ │ ├── _internal_.PropertyValue.html │ │ │ ├── _internal_.Record.html │ │ │ ├── _internal_.Scalars.html │ │ │ ├── _internal_.StringComparisonExp.html │ │ │ ├── _internal_.TableItemsBoolExp.html │ │ │ ├── _internal_.TableMetadatasBoolExp.html │ │ │ └── _internal_.TimestampComparisonExp.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── CallArgument.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ ├── _internal_.Error-1.html │ │ │ ├── _internal_.EventEmitter.EventEmitter.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.32.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ ├── ZkProof.html │ │ │ ├── _internal_.ANS.html │ │ │ ├── _internal_.Account.html │ │ │ ├── _internal_.AptosObject.html │ │ │ ├── _internal_.AsyncQueue.html │ │ │ ├── _internal_.AsyncQueueCancelledError.html │ │ │ ├── _internal_.Build.html │ │ │ ├── _internal_.Coin.html │ │ │ ├── _internal_.DigitalAsset.html │ │ │ ├── _internal_.Event.html │ │ │ ├── _internal_.EventEmitter-1.html │ │ │ ├── _internal_.Faucet.html │ │ │ ├── _internal_.FungibleAsset.html │ │ │ ├── _internal_.G1Bytes.html │ │ │ ├── _internal_.G2Bytes.html │ │ │ ├── _internal_.General.html │ │ │ ├── _internal_.Keyless.html │ │ │ ├── _internal_.Proof.html │ │ │ ├── _internal_.Simulate.html │ │ │ ├── _internal_.Staking.html │ │ │ ├── _internal_.Submit.html │ │ │ ├── _internal_.Table.html │ │ │ ├── _internal_.Transaction.html │ │ │ └── _internal_.TransactionManagement.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ ├── ZkpVariant.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumn.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ └── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ ├── functions │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ ├── WhereArg.html │ │ │ ├── _internal_.CallSite.html │ │ │ ├── _internal_.CreateCollectionOptions.html │ │ │ ├── _internal_.Error.html │ │ │ ├── _internal_.EventEmitter.EventEmitterStatic.html │ │ │ ├── _internal_.EventEmitter.ListenerFn.html │ │ │ ├── _internal_.GetAccountDomainsArgs.html │ │ │ ├── _internal_.GetAccountNamesArgs.html │ │ │ ├── _internal_.GetAccountSubdomainsArgs.html │ │ │ ├── _internal_.GetDomainSubdomainsArgs.html │ │ │ ├── _internal_.JwtHeader.html │ │ │ ├── _internal_.PendingDequeue.html │ │ │ ├── _internal_.PromiseFulfilledResult.html │ │ │ ├── _internal_.QueryNamesOptions.html │ │ │ └── _internal_.RegisterNameParameters.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── _internal_.EventEmitter.html │ │ │ └── _internal_.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ ├── WriteSetChangeWriteTableItem.html │ │ │ ├── _internal_.AptosApiErrorOpts.html │ │ │ ├── _internal_.BigintComparisonExp.html │ │ │ ├── _internal_.BooleanComparisonExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── _internal_.CurrentAptosNamesBoolExp.html │ │ │ ├── _internal_.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── _internal_.EventEmitter.ArgumentMap.html │ │ │ ├── _internal_.EventEmitter.EventArgs.html │ │ │ ├── _internal_.EventEmitter.EventListener.html │ │ │ ├── _internal_.EventEmitter.EventNames.html │ │ │ ├── _internal_.EventEmitter.ValidEventTypes.html │ │ │ ├── _internal_.EventsBoolExp.html │ │ │ ├── _internal_.Exclude.html │ │ │ ├── _internal_.Extract.html │ │ │ ├── _internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── _internal_.FungibleAssetActivitiesBoolExp.html │ │ │ ├── _internal_.FungibleAssetMetadataBoolExp.html │ │ │ ├── _internal_.GetAccountCoinsDataQuery.html │ │ │ ├── _internal_.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensQuery.html │ │ │ ├── _internal_.GetChainTopUserTransactionsQuery.html │ │ │ ├── _internal_.GetCollectionDataQuery.html │ │ │ ├── _internal_.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── _internal_.GetCurrentTokenOwnershipQuery.html │ │ │ ├── _internal_.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── _internal_.GetEventsQuery.html │ │ │ ├── _internal_.GetFungibleAssetActivitiesQuery.html │ │ │ ├── _internal_.GetFungibleAssetMetadataQuery.html │ │ │ ├── _internal_.GetNamesQuery.html │ │ │ ├── _internal_.GetNumberOfDelegatorsQuery.html │ │ │ ├── _internal_.GetObjectDataQuery.html │ │ │ ├── _internal_.GetProcessorStatusQuery.html │ │ │ ├── _internal_.GetTableItemsDataQuery.html │ │ │ ├── _internal_.GetTableItemsMetadataQuery.html │ │ │ ├── _internal_.GetTokenActivityQuery.html │ │ │ ├── _internal_.GetTokenDataQuery.html │ │ │ ├── _internal_.Groth16VerificationKeyResponse.html │ │ │ ├── _internal_.InputMaybe.html │ │ │ ├── _internal_.IntComparisonExp.html │ │ │ ├── _internal_.JsonbCastExp.html │ │ │ ├── _internal_.JsonbComparisonExp.html │ │ │ ├── _internal_.Maybe.html │ │ │ ├── _internal_.MoveAnyStruct.html │ │ │ ├── _internal_.NumericComparisonExp.html │ │ │ ├── _internal_.Omit.html │ │ │ ├── _internal_.Parameters.html │ │ │ ├── _internal_.Pick.html │ │ │ ├── _internal_.PropertyValue.html │ │ │ ├── _internal_.Record.html │ │ │ ├── _internal_.Scalars.html │ │ │ ├── _internal_.StringComparisonExp.html │ │ │ ├── _internal_.TableItemsBoolExp.html │ │ │ ├── _internal_.TableMetadatasBoolExp.html │ │ │ └── _internal_.TimestampComparisonExp.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ ├── _internal_.Error-1.html │ │ │ ├── _internal_.EventEmitter.EventEmitter.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.33.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ ├── ZkProof.html │ │ │ ├── _internal_.ANS.html │ │ │ ├── _internal_.Account.html │ │ │ ├── _internal_.AptosObject.html │ │ │ ├── _internal_.AsyncQueue.html │ │ │ ├── _internal_.AsyncQueueCancelledError.html │ │ │ ├── _internal_.Build.html │ │ │ ├── _internal_.Coin.html │ │ │ ├── _internal_.DigitalAsset.html │ │ │ ├── _internal_.Event.html │ │ │ ├── _internal_.EventEmitter-1.html │ │ │ ├── _internal_.Faucet.html │ │ │ ├── _internal_.FungibleAsset.html │ │ │ ├── _internal_.G1Bytes.html │ │ │ ├── _internal_.G2Bytes.html │ │ │ ├── _internal_.General.html │ │ │ ├── _internal_.Keyless.html │ │ │ ├── _internal_.Proof.html │ │ │ ├── _internal_.Simulate.html │ │ │ ├── _internal_.Staking.html │ │ │ ├── _internal_.Submit.html │ │ │ ├── _internal_.Table.html │ │ │ ├── _internal_.Transaction.html │ │ │ └── _internal_.TransactionManagement.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ ├── ZkpVariant.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumn.html │ │ │ ├── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ └── _internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ ├── functions │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ ├── WhereArg.html │ │ │ ├── _internal_.CallSite.html │ │ │ ├── _internal_.CreateCollectionOptions.html │ │ │ ├── _internal_.Error.html │ │ │ ├── _internal_.EventEmitter.EventEmitterStatic.html │ │ │ ├── _internal_.EventEmitter.ListenerFn.html │ │ │ ├── _internal_.GetAccountDomainsArgs.html │ │ │ ├── _internal_.GetAccountNamesArgs.html │ │ │ ├── _internal_.GetAccountSubdomainsArgs.html │ │ │ ├── _internal_.GetDomainSubdomainsArgs.html │ │ │ ├── _internal_.JwtHeader.html │ │ │ ├── _internal_.PendingDequeue.html │ │ │ ├── _internal_.PromiseFulfilledResult.html │ │ │ ├── _internal_.QueryNamesOptions.html │ │ │ └── _internal_.RegisterNameParameters.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── _internal_.EventEmitter.html │ │ │ └── _internal_.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ ├── WriteSetChangeWriteTableItem.html │ │ │ ├── _internal_.AptosApiErrorOpts.html │ │ │ ├── _internal_.BigintComparisonExp.html │ │ │ ├── _internal_.BooleanComparisonExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── _internal_.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── _internal_.CurrentAptosNamesBoolExp.html │ │ │ ├── _internal_.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── _internal_.EventEmitter.ArgumentMap.html │ │ │ ├── _internal_.EventEmitter.EventArgs.html │ │ │ ├── _internal_.EventEmitter.EventListener.html │ │ │ ├── _internal_.EventEmitter.EventNames.html │ │ │ ├── _internal_.EventEmitter.ValidEventTypes.html │ │ │ ├── _internal_.EventsBoolExp.html │ │ │ ├── _internal_.Exclude.html │ │ │ ├── _internal_.Extract.html │ │ │ ├── _internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── _internal_.FungibleAssetActivitiesBoolExp.html │ │ │ ├── _internal_.FungibleAssetMetadataBoolExp.html │ │ │ ├── _internal_.GetAccountCoinsDataQuery.html │ │ │ ├── _internal_.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── _internal_.GetAccountOwnedTokensQuery.html │ │ │ ├── _internal_.GetChainTopUserTransactionsQuery.html │ │ │ ├── _internal_.GetCollectionDataQuery.html │ │ │ ├── _internal_.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── _internal_.GetCurrentTokenOwnershipQuery.html │ │ │ ├── _internal_.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── _internal_.GetEventsQuery.html │ │ │ ├── _internal_.GetFungibleAssetActivitiesQuery.html │ │ │ ├── _internal_.GetFungibleAssetMetadataQuery.html │ │ │ ├── _internal_.GetNamesQuery.html │ │ │ ├── _internal_.GetNumberOfDelegatorsQuery.html │ │ │ ├── _internal_.GetObjectDataQuery.html │ │ │ ├── _internal_.GetProcessorStatusQuery.html │ │ │ ├── _internal_.GetTableItemsDataQuery.html │ │ │ ├── _internal_.GetTableItemsMetadataQuery.html │ │ │ ├── _internal_.GetTokenActivityQuery.html │ │ │ ├── _internal_.GetTokenDataQuery.html │ │ │ ├── _internal_.Groth16VerificationKeyResponse.html │ │ │ ├── _internal_.InputMaybe.html │ │ │ ├── _internal_.IntComparisonExp.html │ │ │ ├── _internal_.JsonbCastExp.html │ │ │ ├── _internal_.JsonbComparisonExp.html │ │ │ ├── _internal_.Maybe.html │ │ │ ├── _internal_.MoveAnyStruct.html │ │ │ ├── _internal_.NumericComparisonExp.html │ │ │ ├── _internal_.Omit.html │ │ │ ├── _internal_.Parameters.html │ │ │ ├── _internal_.Pick.html │ │ │ ├── _internal_.PropertyValue.html │ │ │ ├── _internal_.Record.html │ │ │ ├── _internal_.Scalars.html │ │ │ ├── _internal_.StringComparisonExp.html │ │ │ ├── _internal_.TableItemsBoolExp.html │ │ │ ├── _internal_.TableMetadatasBoolExp.html │ │ │ └── _internal_.TimestampComparisonExp.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ ├── _internal_.Error-1.html │ │ │ ├── _internal_.EventEmitter.EventEmitter.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.33.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.33.2 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.34.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.AbstractPublicKey.html │ │ │ ├── PrivateCode.AbstractSignature.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.35.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.AbstractPublicKey.html │ │ │ ├── PrivateCode.AbstractSignature.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Experimental.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosBinaryRequest.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── binaryRequest.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getBinary.html │ │ │ ├── getBinaryAptosFullNode.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── postBinary.html │ │ │ ├── postBinaryAptosFullNode.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.36.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.AbstractPublicKey.html │ │ │ ├── PrivateCode.AbstractSignature.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Experimental.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosBinaryRequest.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── binaryRequest.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getBinary.html │ │ │ ├── getBinaryAptosFullNode.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── postBinary.html │ │ │ ├── postBinaryAptosFullNode.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ └── validateNumberInRange.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.37.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Experimental.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosBinaryRequest.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── binaryRequest.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getBinary.html │ │ │ ├── getBinaryAptosFullNode.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── postBinary.html │ │ │ ├── postBinaryAptosFullNode.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.37.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Experimental.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosBinaryRequest.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── binaryRequest.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getBinary.html │ │ │ ├── getBinaryAptosFullNode.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── postBinary.html │ │ │ ├── postBinaryAptosFullNode.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.38.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Experimental.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosBinaryRequest.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── binaryRequest.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getBinary.html │ │ │ ├── getBinaryAptosFullNode.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── postBinary.html │ │ │ ├── postBinaryAptosFullNode.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-1.39.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AptosScriptComposer.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── CallArgument.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertCallArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputBatchedFunctionData.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-2.0.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-2.0.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-3.0.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-3.1.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-3.1.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-3.1.2 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-3.1.3 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.Event.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.EventsBoolExp.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-4.0.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.0.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.0 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.1 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.2 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── createUserDerivedObjectAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.3 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagI128.html │ │ │ ├── TypeTagI16.html │ │ │ ├── TypeTagI256.html │ │ │ ├── TypeTagI32.html │ │ │ ├── TypeTagI64.html │ │ │ ├── TypeTagI8.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── createUserDerivedObjectAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.4 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── I128.html │ │ │ ├── I16.html │ │ │ ├── I256.html │ │ │ ├── I32.html │ │ │ ├── I64.html │ │ │ ├── I8.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagI128.html │ │ │ ├── TypeTagI16.html │ │ │ ├── TypeTagI256.html │ │ │ ├── TypeTagI32.html │ │ │ ├── TypeTagI64.html │ │ │ ├── TypeTagI8.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── createUserDerivedObjectAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── Int128.html │ │ │ ├── Int16.html │ │ │ ├── Int256.html │ │ │ ├── Int32.html │ │ │ ├── Int64.html │ │ │ ├── Int8.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.5 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── I128.html │ │ │ ├── I16.html │ │ │ ├── I256.html │ │ │ ├── I32.html │ │ │ ├── I64.html │ │ │ ├── I8.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter-1.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagI128.html │ │ │ ├── TypeTagI16.html │ │ │ ├── TypeTagI256.html │ │ │ ├── TypeTagI32.html │ │ │ ├── TypeTagI64.html │ │ │ ├── TypeTagI8.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest-1.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── createUserDerivedObjectAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── Int128.html │ │ │ ├── Int16.html │ │ │ ├── Int256.html │ │ │ ├── Int32.html │ │ │ ├── Int64.html │ │ │ ├── Int8.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error-1.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ ├── ts-sdk-5.1.6 │ │ ├── .nojekyll │ │ ├── assets │ │ │ ├── hierarchy.js │ │ │ ├── highlight.css │ │ │ ├── icons.js │ │ │ ├── icons.svg │ │ │ ├── main.js │ │ │ ├── navigation.js │ │ │ ├── search.js │ │ │ └── style.css │ │ ├── classes │ │ │ ├── AbstractKeylessAccount.html │ │ │ ├── AbstractMultiKey.html │ │ │ ├── AbstractPublicKey.html │ │ │ ├── AbstractSignature.html │ │ │ ├── AbstractedAccount.html │ │ │ ├── Account.html │ │ │ ├── AccountAbstractionMessage.html │ │ │ ├── AccountAddress.html │ │ │ ├── AccountAuthenticator.html │ │ │ ├── AccountAuthenticatorAbstraction.html │ │ │ ├── AccountAuthenticatorEd25519.html │ │ │ ├── AccountAuthenticatorMultiEd25519.html │ │ │ ├── AccountAuthenticatorMultiKey.html │ │ │ ├── AccountAuthenticatorNoAccountAuthenticator.html │ │ │ ├── AccountAuthenticatorSingleKey.html │ │ │ ├── AccountPublicKey.html │ │ │ ├── AccountSequenceNumber.html │ │ │ ├── AnyPublicKey.html │ │ │ ├── AnySignature.html │ │ │ ├── Aptos.html │ │ │ ├── AptosApiError.html │ │ │ ├── AptosConfig.html │ │ │ ├── AuthenticationKey.html │ │ │ ├── Bool.html │ │ │ ├── ChainId.html │ │ │ ├── DerivableAbstractedAccount.html │ │ │ ├── Deserializer.html │ │ │ ├── Ed25519Account.html │ │ │ ├── Ed25519PrivateKey.html │ │ │ ├── Ed25519PublicKey.html │ │ │ ├── Ed25519Signature.html │ │ │ ├── EntryFunction.html │ │ │ ├── EntryFunctionBytes.html │ │ │ ├── EphemeralCertificate.html │ │ │ ├── EphemeralKeyPair.html │ │ │ ├── EphemeralPublicKey.html │ │ │ ├── EphemeralSignature.html │ │ │ ├── FederatedKeylessAccount.html │ │ │ ├── FederatedKeylessPublicKey.html │ │ │ ├── FeePayerRawTransaction.html │ │ │ ├── FixedBytes.html │ │ │ ├── Groth16ProofAndStatement.html │ │ │ ├── Groth16VerificationKey.html │ │ │ ├── Groth16Zkp.html │ │ │ ├── Hex.html │ │ │ ├── I128.html │ │ │ ├── I16.html │ │ │ ├── I256.html │ │ │ ├── I32.html │ │ │ ├── I64.html │ │ │ ├── I8.html │ │ │ ├── Identifier.html │ │ │ ├── KeylessAccount.html │ │ │ ├── KeylessConfiguration.html │ │ │ ├── KeylessError.html │ │ │ ├── KeylessPublicKey.html │ │ │ ├── KeylessSignature.html │ │ │ ├── ModuleId.html │ │ │ ├── MoveJWK.html │ │ │ ├── MoveOption.html │ │ │ ├── MoveString.html │ │ │ ├── MoveVector.html │ │ │ ├── MultiAgentRawTransaction.html │ │ │ ├── MultiAgentTransaction.html │ │ │ ├── MultiEd25519Account.html │ │ │ ├── MultiEd25519PublicKey.html │ │ │ ├── MultiEd25519Signature.html │ │ │ ├── MultiKey.html │ │ │ ├── MultiKeyAccount.html │ │ │ ├── MultiKeySignature.html │ │ │ ├── MultiSig.html │ │ │ ├── MultiSigTransactionPayload.html │ │ │ ├── ParsingError.html │ │ │ ├── PrivateCode.ANS.html │ │ │ ├── PrivateCode.Account.html │ │ │ ├── PrivateCode.AccountAbstraction.html │ │ │ ├── PrivateCode.AptosObject.html │ │ │ ├── PrivateCode.AsyncQueue.html │ │ │ ├── PrivateCode.AsyncQueueCancelledError.html │ │ │ ├── PrivateCode.Build.html │ │ │ ├── PrivateCode.Coin.html │ │ │ ├── PrivateCode.DigitalAsset.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ ├── PrivateCode.Faucet.html │ │ │ ├── PrivateCode.FungibleAsset.html │ │ │ ├── PrivateCode.G1Bytes.html │ │ │ ├── PrivateCode.G2Bytes.html │ │ │ ├── PrivateCode.General.html │ │ │ ├── PrivateCode.Keyless.html │ │ │ ├── PrivateCode.Proof.html │ │ │ ├── PrivateCode.Simulate.html │ │ │ ├── PrivateCode.Staking.html │ │ │ ├── PrivateCode.Submit.html │ │ │ ├── PrivateCode.Table.html │ │ │ ├── PrivateCode.Transaction.html │ │ │ ├── PrivateCode.TransactionManagement.html │ │ │ ├── PrivateKey.html │ │ │ ├── PublicKey.html │ │ │ ├── RawTransaction.html │ │ │ ├── RawTransactionWithData.html │ │ │ ├── RotationProofChallenge.html │ │ │ ├── Script.html │ │ │ ├── Secp256k1PrivateKey.html │ │ │ ├── Secp256k1PublicKey.html │ │ │ ├── Secp256k1Signature.html │ │ │ ├── Secp256r1PrivateKey.html │ │ │ ├── Secp256r1PublicKey.html │ │ │ ├── Secp256r1Signature.html │ │ │ ├── Serializable.html │ │ │ ├── Serialized.html │ │ │ ├── Serializer.html │ │ │ ├── Signature.html │ │ │ ├── SignedTransaction.html │ │ │ ├── SimpleTransaction.html │ │ │ ├── SingleKeyAccount.html │ │ │ ├── StructTag.html │ │ │ ├── TransactionAndProof.html │ │ │ ├── TransactionAuthenticator.html │ │ │ ├── TransactionAuthenticatorEd25519.html │ │ │ ├── TransactionAuthenticatorFeePayer.html │ │ │ ├── TransactionAuthenticatorMultiAgent.html │ │ │ ├── TransactionAuthenticatorMultiEd25519.html │ │ │ ├── TransactionAuthenticatorSingleSender.html │ │ │ ├── TransactionExecutable.html │ │ │ ├── TransactionExecutableEmpty.html │ │ │ ├── TransactionExecutableEntryFunction.html │ │ │ ├── TransactionExecutableScript.html │ │ │ ├── TransactionExtraConfig.html │ │ │ ├── TransactionExtraConfigV1.html │ │ │ ├── TransactionInnerPayload.html │ │ │ ├── TransactionInnerPayloadV1.html │ │ │ ├── TransactionPayload.html │ │ │ ├── TransactionPayloadEntryFunction.html │ │ │ ├── TransactionPayloadMultiSig.html │ │ │ ├── TransactionPayloadScript.html │ │ │ ├── TransactionWorker.html │ │ │ ├── TypeTag.html │ │ │ ├── TypeTagAddress.html │ │ │ ├── TypeTagBool.html │ │ │ ├── TypeTagGeneric.html │ │ │ ├── TypeTagI128.html │ │ │ ├── TypeTagI16.html │ │ │ ├── TypeTagI256.html │ │ │ ├── TypeTagI32.html │ │ │ ├── TypeTagI64.html │ │ │ ├── TypeTagI8.html │ │ │ ├── TypeTagParserError.html │ │ │ ├── TypeTagReference.html │ │ │ ├── TypeTagSigner.html │ │ │ ├── TypeTagStruct.html │ │ │ ├── TypeTagU128.html │ │ │ ├── TypeTagU16.html │ │ │ ├── TypeTagU256.html │ │ │ ├── TypeTagU32.html │ │ │ ├── TypeTagU64.html │ │ │ ├── TypeTagU8.html │ │ │ ├── TypeTagVector.html │ │ │ ├── U128.html │ │ │ ├── U16.html │ │ │ ├── U256.html │ │ │ ├── U32.html │ │ │ ├── U64.html │ │ │ ├── U8.html │ │ │ ├── WebAuthnSignature.html │ │ │ ├── ZeroKnowledgeSig.html │ │ │ └── ZkProof.html │ │ ├── enums │ │ │ ├── AccountAuthenticatorVariant.html │ │ │ ├── AddressInvalidReason.html │ │ │ ├── AnyPublicKeyVariant.html │ │ │ ├── AnySignatureVariant.html │ │ │ ├── AptosApiType.html │ │ │ ├── DeriveScheme.html │ │ │ ├── EphemeralCertificateVariant.html │ │ │ ├── EphemeralPublicKeyVariant.html │ │ │ ├── EphemeralSignatureVariant.html │ │ │ ├── HexInvalidReason.html │ │ │ ├── KeyType.html │ │ │ ├── KeylessErrorCategory.html │ │ │ ├── KeylessErrorResolutionTip.html │ │ │ ├── KeylessErrorType.html │ │ │ ├── MimeType.html │ │ │ ├── MoveAbility.html │ │ │ ├── MoveFunctionVisibility.html │ │ │ ├── Network.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumn.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html │ │ │ ├── PrivateCode.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html │ │ │ ├── PrivateKeyVariants.html │ │ │ ├── ProcessorType.html │ │ │ ├── RoleType.html │ │ │ ├── ScriptTransactionArgumentVariants.html │ │ │ ├── SigningScheme.html │ │ │ ├── SigningSchemeInput.html │ │ │ ├── TransactionAuthenticatorVariant.html │ │ │ ├── TransactionExecutableVariants.html │ │ │ ├── TransactionExtraConfigVariants.html │ │ │ ├── TransactionInnerPayloadVariants.html │ │ │ ├── TransactionPayloadVariants.html │ │ │ ├── TransactionResponseType.html │ │ │ ├── TransactionVariants.html │ │ │ ├── TransactionWorkerEventsEnum.html │ │ │ ├── TypeTagParserErrorType.html │ │ │ ├── TypeTagVariants.html │ │ │ └── ZkpVariant.html │ │ ├── functions │ │ │ ├── AccountUtils.deserialize.html │ │ │ ├── AccountUtils.ed25519AccountFromHex.html │ │ │ ├── AccountUtils.federatedKeylessAccountFromHex.html │ │ │ ├── AccountUtils.fromBytes.html │ │ │ ├── AccountUtils.fromHex.html │ │ │ ├── AccountUtils.keylessAccountFromHex.html │ │ │ ├── AccountUtils.multiKeyAccountFromHex.html │ │ │ ├── AccountUtils.singleKeyAccountFromHex.html │ │ │ ├── AccountUtils.toBytes.html │ │ │ ├── AccountUtils.toHexString.html │ │ │ ├── AccountUtils.toHexStringWithoutPrefix.html │ │ │ ├── CKDPriv.html │ │ │ ├── anyPublicKeyVariantToString.html │ │ │ ├── aptosCoinStructTag.html │ │ │ ├── aptosRequest.html │ │ │ ├── base64UrlDecode.html │ │ │ ├── base64UrlToBytes.html │ │ │ ├── bigIntToBytesLE.html │ │ │ ├── buildTransaction.html │ │ │ ├── bytesToBigIntLE.html │ │ │ ├── checkOrConvertArgument.html │ │ │ ├── convertAmountFromHumanReadableToOnChain.html │ │ │ ├── convertAmountFromOnChainToHumanReadable.html │ │ │ ├── convertArgument.html │ │ │ ├── convertNumber.html │ │ │ ├── convertPayloadToInnerPayload.html │ │ │ ├── createObjectAddress.html │ │ │ ├── createResourceAddress.html │ │ │ ├── createTokenAddress.html │ │ │ ├── createUserDerivedObjectAddress.html │ │ │ ├── deriveKey.html │ │ │ ├── deriveTransactionType.html │ │ │ ├── deserializeFromScriptArgument.html │ │ │ ├── deserializePublicKey.html │ │ │ ├── deserializeSignature.html │ │ │ ├── ensureBoolean.html │ │ │ ├── fetchEntryFunctionAbi.html │ │ │ ├── fetchFunctionAbi.html │ │ │ ├── fetchJWK.html │ │ │ ├── fetchModuleAbi.html │ │ │ ├── fetchMoveFunctionAbi.html │ │ │ ├── fetchViewFunctionAbi.html │ │ │ ├── findFirstNonSignerArg.html │ │ │ ├── floorToWholeHour.html │ │ │ ├── generateRawTransaction.html │ │ │ ├── generateSignedTransaction.html │ │ │ ├── generateSignedTransactionForSimulation.html │ │ │ ├── generateSigningMessage.html │ │ │ ├── generateSigningMessageForSerializable.html │ │ │ ├── generateSigningMessageForTransaction.html │ │ │ ├── generateTransactionPayload.html │ │ │ ├── generateTransactionPayloadWithABI.html │ │ │ ├── generateUserTransactionHash.html │ │ │ ├── generateViewFunctionPayload.html │ │ │ ├── generateViewFunctionPayloadWithABI.html │ │ │ ├── get.html │ │ │ ├── getAptosFullNode.html │ │ │ ├── getAptosPepperService.html │ │ │ ├── getAuthenticatorForSimulation.html │ │ │ ├── getErrorMessage.html │ │ │ ├── getFunctionParts.html │ │ │ ├── getIssAudAndUidVal.html │ │ │ ├── getKeylessConfig.html │ │ │ ├── getKeylessJWKs.html │ │ │ ├── getPageWithObfuscatedCursor.html │ │ │ ├── hashStrToField.html │ │ │ ├── hashValues.html │ │ │ ├── hexToAsciiString.html │ │ │ ├── isBcsAddress.html │ │ │ ├── isBcsBool.html │ │ │ ├── isBcsFixedBytes.html │ │ │ ├── isBcsString.html │ │ │ ├── isBcsU128.html │ │ │ ├── isBcsU16.html │ │ │ ├── isBcsU256.html │ │ │ ├── isBcsU32.html │ │ │ ├── isBcsU64.html │ │ │ ├── isBcsU8.html │ │ │ ├── isBlockEpilogueTransactionResponse.html │ │ │ ├── isBlockMetadataTransactionResponse.html │ │ │ ├── isBool.html │ │ │ ├── isCanonicalEd25519Signature.html │ │ │ ├── isEd25519Signature.html │ │ │ ├── isEmptyOption.html │ │ │ ├── isEncodedEntryFunctionArgument.html │ │ │ ├── isEncodedStruct.html │ │ │ ├── isFeePayerSignature.html │ │ │ ├── isGenesisTransactionResponse.html │ │ │ ├── isKeylessSigner.html │ │ │ ├── isLargeNumber.html │ │ │ ├── isMultiAgentSignature.html │ │ │ ├── isMultiEd25519Signature.html │ │ │ ├── isNumber.html │ │ │ ├── isPendingTransactionResponse.html │ │ │ ├── isScriptDataInput.html │ │ │ ├── isSecp256k1Signature.html │ │ │ ├── isSingleKeySigner.html │ │ │ ├── isSingleSenderSignature.html │ │ │ ├── isStateCheckpointTransactionResponse.html │ │ │ ├── isString.html │ │ │ ├── isUserTransactionResponse.html │ │ │ ├── isValidBIP44Path.html │ │ │ ├── isValidFunctionInfo.html │ │ │ ├── isValidHardenedPath.html │ │ │ ├── isValidatorTransactionResponse.html │ │ │ ├── mnemonicToSeed.html │ │ │ ├── normalizeBundle.html │ │ │ ├── nowInSeconds.html │ │ │ ├── objectStructTag.html │ │ │ ├── optionStructTag.html │ │ │ ├── outOfRangeErrorMessage.html │ │ │ ├── padAndPackBytesWithLen.html │ │ │ ├── paginateWithCursor.html │ │ │ ├── paginateWithObfuscatedCursor.html │ │ │ ├── pairedFaMetadataAddress.html │ │ │ ├── parseEncodedStruct.html │ │ │ ├── parseJwtHeader.html │ │ │ ├── parseTypeTag.html │ │ │ ├── poseidonHash.html │ │ │ ├── post.html │ │ │ ├── postAptosFaucet.html │ │ │ ├── postAptosFullNode.html │ │ │ ├── postAptosIndexer.html │ │ │ ├── postAptosPepperService.html │ │ │ ├── postAptosProvingService.html │ │ │ ├── request.html │ │ │ ├── sleep.html │ │ │ ├── splitPath.html │ │ │ ├── standardizeTypeTags.html │ │ │ ├── stringStructTag.html │ │ │ ├── throwTypeMismatch.html │ │ │ ├── truncateAddress.html │ │ │ ├── validateNumberInRange.html │ │ │ ├── verifyKeylessSignature.html │ │ │ └── verifyKeylessSignatureWithJwkAndConfig.html │ │ ├── hierarchy.html │ │ ├── index.html │ │ ├── interfaces │ │ │ ├── AptosResponse.html │ │ │ ├── Client.html │ │ │ ├── ClientRequest.html │ │ │ ├── ClientResponse.html │ │ │ ├── CreateAccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519AccountFromPrivateKeyArgs.html │ │ │ ├── CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CreateSingleKeyAccountFromPrivateKeyArgs.html │ │ │ ├── CursorPaginationArgs.html │ │ │ ├── Deserializable.html │ │ │ ├── Ed25519SignerConstructorArgs.html │ │ │ ├── Ed25519SignerFromDerivationPathArgs.html │ │ │ ├── EntryFunctionArgument.html │ │ │ ├── GenerateAccountArgs.html │ │ │ ├── GenerateEd25519AccountArgs.html │ │ │ ├── GenerateEd25519SingleKeyAccountArgs.html │ │ │ ├── GenerateSingleKeyAccountArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionArgs.html │ │ │ ├── InputGenerateMultiAgentRawTransactionData.html │ │ │ ├── InputGenerateSingleSignerRawTransactionArgs.html │ │ │ ├── InputGenerateSingleSignerRawTransactionData.html │ │ │ ├── InputTransactionPluginData.html │ │ │ ├── KeylessSigner.html │ │ │ ├── MultiEd25519SignerConstructorArgs.html │ │ │ ├── OrderByArg.html │ │ │ ├── PaginationArgs.html │ │ │ ├── PrivateCode.CallSite.html │ │ │ ├── PrivateCode.CreateCollectionOptions.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitterStatic.html │ │ │ ├── PrivateCode.EventEmitter.ListenerFn.html │ │ │ ├── PrivateCode.GetAccountDomainsArgs.html │ │ │ ├── PrivateCode.GetAccountNamesArgs.html │ │ │ ├── PrivateCode.GetAccountSubdomainsArgs.html │ │ │ ├── PrivateCode.GetDomainSubdomainsArgs.html │ │ │ ├── PrivateCode.Group.html │ │ │ ├── PrivateCode.InputSubmitTransactionDataInner.html │ │ │ ├── PrivateCode.JwtHeader.html │ │ │ ├── PrivateCode.PendingDequeue.html │ │ │ ├── PrivateCode.ProjPointType.html │ │ │ ├── PrivateCode.PromiseFulfilledResult.html │ │ │ ├── PrivateCode.QueryNamesOptions.html │ │ │ ├── PrivateCode.RegisterNameParameters.html │ │ │ ├── PrivateKeyFromDerivationPathArgs.html │ │ │ ├── ProofFetchEvents.html │ │ │ ├── ScriptFunctionArgument.html │ │ │ ├── SingleKeySigner.html │ │ │ ├── SingleKeySignerConstructorArgs.html │ │ │ ├── SingleKeySignerGenerateArgs.html │ │ │ ├── TokenStandardArg.html │ │ │ ├── TransactionArgument.html │ │ │ ├── TransactionSubmitter.html │ │ │ ├── TransactionWorkerEvents.html │ │ │ ├── VerifyEd25519SignatureArgs.html │ │ │ ├── VerifyMultiEd25519SignatureArgs.html │ │ │ ├── VerifyMultiKeySignatureArgs.html │ │ │ ├── VerifySignatureArgs.html │ │ │ ├── VerifySingleKeySignatureArgs.html │ │ │ └── WhereArg.html │ │ ├── media │ │ │ └── README.md │ │ ├── modules.html │ │ ├── modules │ │ │ ├── AccountUtils.html │ │ │ ├── PrivateCode.EventEmitter.html │ │ │ └── PrivateCode.html │ │ ├── types │ │ │ ├── AccountAddressInput.html │ │ │ ├── AccountData.html │ │ │ ├── AccountSignature.html │ │ │ ├── AnyNumber.html │ │ │ ├── AnyRawTransaction.html │ │ │ ├── AnyRawTransactionInstance.html │ │ │ ├── AnyTransactionPayloadInstance.html │ │ │ ├── AptosRequest.html │ │ │ ├── AptosSettings.html │ │ │ ├── AuthenticationKeyScheme.html │ │ │ ├── BaseAccountPublicKey.html │ │ │ ├── Block.html │ │ │ ├── BlockEndInfo.html │ │ │ ├── BlockEpilogueTransactionResponse.html │ │ │ ├── BlockMetadataTransactionResponse.html │ │ │ ├── ClientConfig.html │ │ │ ├── ClientHeadersType.html │ │ │ ├── CommittedTransactionResponse.html │ │ │ ├── DecodedTableData.html │ │ │ ├── DeletedTableData.html │ │ │ ├── DerivedKeys.html │ │ │ ├── DeserializableClass.html │ │ │ ├── DirectWriteSet.html │ │ │ ├── EntryFunctionABI.html │ │ │ ├── EntryFunctionArgumentTypes.html │ │ │ ├── EntryFunctionPayloadResponse.html │ │ │ ├── Event.html │ │ │ ├── EventGuid.html │ │ │ ├── ExecutionFinishEventData.html │ │ │ ├── FailureEventData.html │ │ │ ├── FaucetConfig.html │ │ │ ├── FullNodeConfig.html │ │ │ ├── FunctionABI.html │ │ │ ├── GasEstimation.html │ │ │ ├── GenerateAccount.html │ │ │ ├── GenerateAccountWithEd25519.html │ │ │ ├── GenerateAccountWithSingleSignerSecp256k1Key.html │ │ │ ├── GenesisPayload.html │ │ │ ├── GenesisTransactionResponse.html │ │ │ ├── GetANSNameResponse.html │ │ │ ├── GetAccountAddressesForAuthKeyResponse.html │ │ │ ├── GetAccountCoinsDataResponse.html │ │ │ ├── GetAccountCollectionsWithOwnedTokenResponse.html │ │ │ ├── GetAccountOwnedTokensFromCollectionResponse.html │ │ │ ├── GetAccountOwnedTokensQueryResponse.html │ │ │ ├── GetAptosRequestOptions.html │ │ │ ├── GetChainTopUserTransactionsResponse.html │ │ │ ├── GetCollectionDataResponse.html │ │ │ ├── GetCurrentFungibleAssetBalancesResponse.html │ │ │ ├── GetCurrentTokenOwnershipResponse.html │ │ │ ├── GetDelegatedStakingActivitiesResponse.html │ │ │ ├── GetEventsResponse.html │ │ │ ├── GetFungibleAssetActivitiesResponse.html │ │ │ ├── GetFungibleAssetMetadataResponse.html │ │ │ ├── GetNumberOfDelegatorsResponse.html │ │ │ ├── GetObjectDataQueryResponse.html │ │ │ ├── GetOwnedTokensResponse.html │ │ │ ├── GetProcessorStatusResponse.html │ │ │ ├── GetRequestOptions.html │ │ │ ├── GetTableItemsDataResponse.html │ │ │ ├── GetTableItemsMetadataResponse.html │ │ │ ├── GetTokenActivityResponse.html │ │ │ ├── GetTokenDataResponse.html │ │ │ ├── GraphqlQuery.html │ │ │ ├── HexInput.html │ │ │ ├── IndexerConfig.html │ │ │ ├── InputEntryFunctionData.html │ │ │ ├── InputEntryFunctionDataWithABI.html │ │ │ ├── InputEntryFunctionDataWithRemoteABI.html │ │ │ ├── InputGenerateOrderlessTransactionOptions.html │ │ │ ├── InputGenerateRawTransactionArgs.html │ │ │ ├── InputGenerateSequenceNumberTransactionOptions.html │ │ │ ├── InputGenerateTransactionData.html │ │ │ ├── InputGenerateTransactionOptions.html │ │ │ ├── InputGenerateTransactionPayloadData.html │ │ │ ├── InputGenerateTransactionPayloadDataWithABI.html │ │ │ ├── InputGenerateTransactionPayloadDataWithRemoteABI.html │ │ │ ├── InputMultiSigData.html │ │ │ ├── InputMultiSigDataWithABI.html │ │ │ ├── InputMultiSigDataWithRemoteABI.html │ │ │ ├── InputScriptData.html │ │ │ ├── InputSimulateTransactionData.html │ │ │ ├── InputSimulateTransactionOptions.html │ │ │ ├── InputSubmitTransactionData.html │ │ │ ├── InputViewFunctionData.html │ │ │ ├── InputViewFunctionDataWithABI.html │ │ │ ├── InputViewFunctionDataWithRemoteABI.html │ │ │ ├── InputViewFunctionJsonData.html │ │ │ ├── Int128.html │ │ │ ├── Int16.html │ │ │ ├── Int256.html │ │ │ ├── Int32.html │ │ │ ├── Int64.html │ │ │ ├── Int8.html │ │ │ ├── LedgerInfo.html │ │ │ ├── LedgerVersionArg.html │ │ │ ├── MoveAddressType.html │ │ │ ├── MoveFunction.html │ │ │ ├── MoveFunctionGenericTypeParam.html │ │ │ ├── MoveFunctionId.html │ │ │ ├── MoveModule.html │ │ │ ├── MoveModuleBytecode.html │ │ │ ├── MoveModuleId.html │ │ │ ├── MoveObjectType.html │ │ │ ├── MoveOptionType.html │ │ │ ├── MoveResource.html │ │ │ ├── MoveScriptBytecode.html │ │ │ ├── MoveStruct.html │ │ │ ├── MoveStructField.html │ │ │ ├── MoveStructId.html │ │ │ ├── MoveStructType.html │ │ │ ├── MoveType.html │ │ │ ├── MoveUint128Type.html │ │ │ ├── MoveUint16Type.html │ │ │ ├── MoveUint256Type.html │ │ │ ├── MoveUint32Type.html │ │ │ ├── MoveUint64Type.html │ │ │ ├── MoveUint8Type.html │ │ │ ├── MoveValue.html │ │ │ ├── MultisigPayloadResponse.html │ │ │ ├── OrderBy.html │ │ │ ├── OrderByValue.html │ │ │ ├── ParsingResult.html │ │ │ ├── PendingTransactionResponse.html │ │ │ ├── PluginConfig.html │ │ │ ├── PluginSettings.html │ │ │ ├── PostAptosRequestOptions.html │ │ │ ├── PostRequestOptions.html │ │ │ ├── PrivateCode.AbstractedAccountConstructorArgs.html │ │ │ ├── PrivateCode.AccountInfo.html │ │ │ ├── PrivateCode.AffinePoint.html │ │ │ ├── PrivateCode.AptosApiErrorOpts.html │ │ │ ├── PrivateCode.ArrayBufferLike.html │ │ │ ├── PrivateCode.BigintComparisonExp.html │ │ │ ├── PrivateCode.BooleanComparisonExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExp.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolAnd.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpBoolOr.html │ │ │ ├── PrivateCode.CurrentAptosNamesAggregateBoolExpCount.html │ │ │ ├── PrivateCode.CurrentAptosNamesBoolExp.html │ │ │ ├── PrivateCode.CurrentFungibleAssetBalancesBoolExp.html │ │ │ ├── PrivateCode.DerivableAbstractedAccountArgs.html │ │ │ ├── PrivateCode.EventEmitter.ArgumentMap.html │ │ │ ├── PrivateCode.EventEmitter.EventArgs.html │ │ │ ├── PrivateCode.EventEmitter.EventListener.html │ │ │ ├── PrivateCode.EventEmitter.EventNames.html │ │ │ ├── PrivateCode.EventEmitter.ValidEventTypes.html │ │ │ ├── PrivateCode.Exclude.html │ │ │ ├── PrivateCode.Extract.html │ │ │ ├── PrivateCode.FeePayerOrFeePayerAuthenticatorOrNeither.html │ │ │ ├── PrivateCode.Fp2.html │ │ │ ├── PrivateCode.FungibleAssetActivitiesBoolExp.html │ │ │ ├── PrivateCode.FungibleAssetMetadataBoolExp.html │ │ │ ├── PrivateCode.GetAccountAddressesForAuthKeyQuery.html │ │ │ ├── PrivateCode.GetAccountCoinsDataQuery.html │ │ │ ├── PrivateCode.GetAccountCollectionsWithOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensFromCollectionQuery.html │ │ │ ├── PrivateCode.GetAccountOwnedTokensQuery.html │ │ │ ├── PrivateCode.GetChainTopUserTransactionsQuery.html │ │ │ ├── PrivateCode.GetCollectionDataQuery.html │ │ │ ├── PrivateCode.GetCurrentFungibleAssetBalancesQuery.html │ │ │ ├── PrivateCode.GetCurrentTokenOwnershipQuery.html │ │ │ ├── PrivateCode.GetDelegatedStakingActivitiesQuery.html │ │ │ ├── PrivateCode.GetEventsQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetActivitiesQuery.html │ │ │ ├── PrivateCode.GetFungibleAssetMetadataQuery.html │ │ │ ├── PrivateCode.GetNamesQuery.html │ │ │ ├── PrivateCode.GetNumberOfDelegatorsQuery.html │ │ │ ├── PrivateCode.GetObjectDataQuery.html │ │ │ ├── PrivateCode.GetProcessorStatusQuery.html │ │ │ ├── PrivateCode.GetTableItemsDataQuery.html │ │ │ ├── PrivateCode.GetTableItemsMetadataQuery.html │ │ │ ├── PrivateCode.GetTokenActivityQuery.html │ │ │ ├── PrivateCode.GetTokenDataQuery.html │ │ │ ├── PrivateCode.Groth16VerificationKeyResponse.html │ │ │ ├── PrivateCode.InputMaybe.html │ │ │ ├── PrivateCode.IntComparisonExp.html │ │ │ ├── PrivateCode.JsonbCastExp.html │ │ │ ├── PrivateCode.JsonbComparisonExp.html │ │ │ ├── PrivateCode.KeylessConfigurationResponse.html │ │ │ ├── PrivateCode.Maybe.html │ │ │ ├── PrivateCode.MoveAnyStruct.html │ │ │ ├── PrivateCode.NumericComparisonExp.html │ │ │ ├── PrivateCode.Omit.html │ │ │ ├── PrivateCode.Parameters.html │ │ │ ├── PrivateCode.Pick.html │ │ │ ├── PrivateCode.PropertyValue.html │ │ │ ├── PrivateCode.Record.html │ │ │ ├── PrivateCode.Scalars.html │ │ │ ├── PrivateCode.StringComparisonExp.html │ │ │ ├── PrivateCode.TableItemsBoolExp.html │ │ │ ├── PrivateCode.TableMetadatasBoolExp.html │ │ │ ├── PrivateCode.TimestampComparisonExp.html │ │ │ ├── PrivateKeyInput.html │ │ │ ├── ProofFetchCallback.html │ │ │ ├── ProofFetchFailure.html │ │ │ ├── ProofFetchStatus.html │ │ │ ├── ProofFetchSuccess.html │ │ │ ├── ScriptFunctionArgumentTypes.html │ │ │ ├── ScriptPayloadResponse.html │ │ │ ├── ScriptWriteSet.html │ │ │ ├── SimpleEntryFunctionArgumentTypes.html │ │ │ ├── SingleKeySignerFromDerivationPathArgs.html │ │ │ ├── SingleKeySignerOrLegacyEd25519Account.html │ │ │ ├── StateCheckpointTransactionResponse.html │ │ │ ├── SuccessEventData.html │ │ │ ├── TableItemRequest.html │ │ │ ├── TokenStandard.html │ │ │ ├── TransactionEd25519Signature.html │ │ │ ├── TransactionFeePayerSignature.html │ │ │ ├── TransactionGenerationConfig.html │ │ │ ├── TransactionMultiAgentSignature.html │ │ │ ├── TransactionMultiEd25519Signature.html │ │ │ ├── TransactionPayloadResponse.html │ │ │ ├── TransactionResponse.html │ │ │ ├── TransactionSecp256k1Signature.html │ │ │ ├── TransactionSignature.html │ │ │ ├── TransactionSingleSenderSignature.html │ │ │ ├── TypeArgument.html │ │ │ ├── Uint128.html │ │ │ ├── Uint16.html │ │ │ ├── Uint256.html │ │ │ ├── Uint32.html │ │ │ ├── Uint64.html │ │ │ ├── Uint8.html │ │ │ ├── UserTransactionResponse.html │ │ │ ├── ValidatorTransactionResponse.html │ │ │ ├── VerifySignatureAsyncArgs.html │ │ │ ├── ViewFunctionABI.html │ │ │ ├── ViewFunctionJsonPayload.html │ │ │ ├── WaitForTransactionOptions.html │ │ │ ├── WriteSet.html │ │ │ ├── WriteSetChange.html │ │ │ ├── WriteSetChangeDeleteModule.html │ │ │ ├── WriteSetChangeDeleteResource.html │ │ │ ├── WriteSetChangeDeleteTableItem.html │ │ │ ├── WriteSetChangeWriteModule.html │ │ │ ├── WriteSetChangeWriteResource.html │ │ │ └── WriteSetChangeWriteTableItem.html │ │ └── variables │ │ │ ├── ACCOUNT_ABSTRACTION_SIGNING_DATA_SALT.html │ │ │ ├── APTOS_BIP44_REGEX.html │ │ │ ├── APTOS_COIN.html │ │ │ ├── APTOS_FA.html │ │ │ ├── APTOS_HARDENED_REGEX.html │ │ │ ├── DEFAULT_MAX_GAS_AMOUNT.html │ │ │ ├── DEFAULT_TXN_EXP_SEC_FROM_NOW.html │ │ │ ├── DEFAULT_TXN_TIMEOUT_SEC.html │ │ │ ├── EPK_HORIZON_SECS.html │ │ │ ├── FIREBASE_AUTH_ISS_PATTERN.html │ │ │ ├── HARDENED_OFFSET.html │ │ │ ├── MAX_AUD_VAL_BYTES.html │ │ │ ├── MAX_COMMITED_EPK_BYTES.html │ │ │ ├── MAX_EXTRA_FIELD_BYTES.html │ │ │ ├── MAX_ISS_VAL_BYTES.html │ │ │ ├── MAX_JWT_HEADER_B64_BYTES.html │ │ │ ├── MAX_UID_KEY_BYTES.html │ │ │ ├── MAX_UID_VAL_BYTES.html │ │ │ ├── NetworkToChainId.html │ │ │ ├── NetworkToFaucetAPI.html │ │ │ ├── NetworkToIndexerAPI.html │ │ │ ├── NetworkToNetworkName.html │ │ │ ├── NetworkToNodeAPI.html │ │ │ ├── NetworkToPepperAPI.html │ │ │ ├── NetworkToProverAPI.html │ │ │ ├── PrivateCode.Error.html │ │ │ ├── PrivateCode.EventEmitter.EventEmitter.html │ │ │ ├── RAW_TRANSACTION_SALT.html │ │ │ ├── RAW_TRANSACTION_WITH_DATA_SALT.html │ │ │ └── promiseFulfilledStatus.html │ └── ts-sdk-latest │ │ └── index.md ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── favicon.ico └── index.md ├── eslint.config.cjs ├── examples ├── README.md ├── javascript │ ├── .npmrc │ ├── package.json │ ├── pnpm-lock.yaml │ ├── simple_sponsored_transaction.js │ └── simple_transfer.js ├── typescript-esm │ ├── .npmrc │ ├── multisig_v2.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── simple_digital_asset.ts │ ├── simple_transfer.ts │ ├── sponsored_transactions │ │ ├── server_as_sponsor.ts │ │ ├── server_signs_and_submit.ts │ │ └── simple_sponsored_transaction.ts │ ├── transaction_with_predefined_abi.ts │ ├── tsconfig.json │ └── tsup.config.ts └── typescript │ ├── .gitignore │ ├── .npmrc │ ├── batch_funds.ts │ ├── batch_mint.ts │ ├── custom_client.ts │ ├── external_signing.ts │ ├── federated_keyless.ts │ ├── hello_world_authenticator_account_abstraction.ts │ ├── jwk_update.ts │ ├── keyless.ts │ ├── keyless_mainnet.ts │ ├── local_node.ts │ ├── move │ ├── account_abstraction │ │ ├── Move.toml │ │ └── sources │ │ │ ├── hello_world_authenticator.move │ │ │ └── public_key_authenticator.move │ ├── claims │ │ ├── Move.toml │ │ └── sources │ │ │ └── claims.move │ ├── facoin │ │ ├── Move.toml │ │ └── sources │ │ │ ├── fa_coin.move │ │ │ ├── fa_coin_cat.move │ │ │ ├── fa_coin_dog.move │ │ │ └── secondary_store.move │ ├── moonCoin │ │ ├── Move.toml │ │ ├── scripts │ │ │ └── register.move │ │ └── sources │ │ │ └── MoonCoin.move │ ├── transfer │ │ ├── Move.toml │ │ └── sources │ │ │ ├── create_object.move │ │ │ └── transfer.move │ └── update_jwk │ │ ├── Move.toml │ │ ├── script.mv │ │ └── scripts │ │ └── update_jwk.move │ ├── multi_agent_transfer.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public_key_authenticator_account_abstraction.ts │ ├── publish_package_from_filepath.ts │ ├── rotate_key.ts │ ├── sign_struct.ts │ ├── simple_orderless_transfer.ts │ ├── simple_sponsored_transaction.ts │ ├── simple_transfer.ts │ ├── swap.ts │ ├── transfer_between_fungible_stores.ts │ ├── transfer_coin.ts │ ├── tsconfig.json │ ├── utils.ts │ ├── your_coin.ts │ └── your_fungible_asset.ts ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── projects └── gas-station │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ ├── client.ts │ └── server.ts │ └── tsconfig.json ├── scripts ├── checkVersion.sh ├── generateDocs.sh └── updateVersion.sh ├── src ├── account │ ├── AbstractKeylessAccount.ts │ ├── AbstractedAccount.ts │ ├── Account.ts │ ├── AccountUtils.ts │ ├── DerivableAbstractedAccount.ts │ ├── Ed25519Account.ts │ ├── EphemeralKeyPair.ts │ ├── FederatedKeylessAccount.ts │ ├── KeylessAccount.ts │ ├── MultiEd25519Account.ts │ ├── MultiKeyAccount.ts │ ├── SingleKeyAccount.ts │ ├── index.ts │ └── utils.ts ├── api │ ├── account.ts │ ├── account │ │ └── abstraction.ts │ ├── ans.ts │ ├── aptos.ts │ ├── aptosConfig.ts │ ├── coin.ts │ ├── digitalAsset.ts │ ├── faucet.ts │ ├── fungibleAsset.ts │ ├── general.ts │ ├── index.ts │ ├── keyless.ts │ ├── object.ts │ ├── staking.ts │ ├── table.ts │ ├── transaction.ts │ ├── transactionSubmission │ │ ├── build.ts │ │ ├── helpers.ts │ │ ├── management.ts │ │ ├── sign.ts │ │ ├── simulate.ts │ │ └── submit.ts │ └── utils.ts ├── bcs │ ├── consts.ts │ ├── deserializer.ts │ ├── index.ts │ ├── serializable │ │ ├── entryFunctionBytes.ts │ │ ├── fixedBytes.ts │ │ ├── movePrimitives.ts │ │ └── moveStructs.ts │ └── serializer.ts ├── cli │ ├── index.ts │ ├── localNode.ts │ └── move.ts ├── client │ ├── core.ts │ ├── get.ts │ ├── index.ts │ └── post.ts ├── core │ ├── account │ │ ├── index.ts │ │ └── utils │ │ │ ├── address.ts │ │ │ └── index.ts │ ├── accountAddress.ts │ ├── authenticationKey.ts │ ├── common.ts │ ├── crypto │ │ ├── abstraction.ts │ │ ├── deserializationUtils.ts │ │ ├── ed25519.ts │ │ ├── ephemeral.ts │ │ ├── federatedKeyless.ts │ │ ├── hdKey.ts │ │ ├── index.ts │ │ ├── keyless.ts │ │ ├── multiEd25519.ts │ │ ├── multiKey.ts │ │ ├── poseidon.ts │ │ ├── privateKey.ts │ │ ├── proof.ts │ │ ├── publicKey.ts │ │ ├── secp256k1.ts │ │ ├── secp256r1.ts │ │ ├── signature.ts │ │ ├── singleKey.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── hex.ts │ └── index.ts ├── errors │ └── index.ts ├── index.ts ├── internal │ ├── abstraction.ts │ ├── account.ts │ ├── ans.ts │ ├── coin.ts │ ├── digitalAsset.ts │ ├── faucet.ts │ ├── fungibleAsset.ts │ ├── general.ts │ ├── keyless.ts │ ├── object.ts │ ├── queries │ │ ├── TokenActivitiesFieldsFragment.graphql │ │ ├── ansTokenFragment.graphql │ │ ├── currentTokenOwnershipFieldsFragment.graphql │ │ ├── getAccountAddressesForAuthKey.graphql │ │ ├── getAccountCoinCount.graphql │ │ ├── getAccountCoinsData.graphql │ │ ├── getAccountCollectionsWithOwnedTokens.graphql │ │ ├── getAccountOwnedTokens.graphql │ │ ├── getAccountOwnedTokensByTokenData.graphql │ │ ├── getAccountOwnedTokensFromCollectionAddress.graphql │ │ ├── getAccountTokensCount.graphql │ │ ├── getAccountTransactionsCount.graphql │ │ ├── getAuthKeysForPublicKey.graphql │ │ ├── getChainTopUserTransactions.graphql │ │ ├── getCollectionData.graphql │ │ ├── getCurrentFungibleAssetBalances.graphql │ │ ├── getDelegatedStakingActivities.graphql │ │ ├── getEvents.graphql │ │ ├── getFungibleAssetActivities.graphql │ │ ├── getFungibleAssetMetadata.graphql │ │ ├── getNames.graphql │ │ ├── getNumberOfDelegatorsQuery.graphql │ │ ├── getObjectData.graphql │ │ ├── getProcessorStatus.graphql │ │ ├── getTableItemsData.graphql │ │ ├── getTableItemsMetadata.graphql │ │ ├── getTokenActivity.graphql │ │ ├── getTokenCurrentOwner.graphql │ │ └── getTokenData.graphql │ ├── staking.ts │ ├── table.ts │ ├── transaction.ts │ ├── transactionSubmission.ts │ ├── utils │ │ ├── index.ts │ │ └── utils.ts │ └── view.ts ├── transactions │ ├── authenticator │ │ ├── account.ts │ │ ├── index.ts │ │ └── transaction.ts │ ├── index.ts │ ├── instances │ │ ├── chainId.ts │ │ ├── identifier.ts │ │ ├── index.ts │ │ ├── moduleId.ts │ │ ├── multiAgentTransaction.ts │ │ ├── rawTransaction.ts │ │ ├── rotationProofChallenge.ts │ │ ├── signedTransaction.ts │ │ ├── simpleTransaction.ts │ │ ├── transactionArgument.ts │ │ └── transactionPayload.ts │ ├── management │ │ ├── accountSequenceNumber.ts │ │ ├── asyncQueue.ts │ │ ├── index.ts │ │ └── transactionWorker.ts │ ├── transactionBuilder │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── remoteAbi.ts │ │ ├── signingMessage.ts │ │ └── transactionBuilder.ts │ ├── typeTag │ │ ├── index.ts │ │ └── parser.ts │ └── types.ts ├── types │ ├── abstraction.ts │ ├── codegen.yaml │ ├── generated │ │ ├── operations.ts │ │ ├── queries.ts │ │ └── types.ts │ ├── index.ts │ ├── indexer.ts │ ├── keyless.ts │ └── types.ts ├── utils │ ├── apiEndpoints.ts │ ├── const.ts │ ├── helpers.ts │ ├── index.ts │ ├── memoize.ts │ └── normalizeBundle.ts └── version.ts ├── tests ├── e2e │ ├── ans │ │ ├── ans.test.ts │ │ └── publishANSContracts.ts │ ├── api │ │ ├── abstraction.test.ts │ │ ├── account.test.ts │ │ ├── coin.test.ts │ │ ├── collection.test.ts │ │ ├── digitalAsset.test.ts │ │ ├── faucet.test.ts │ │ ├── fungibleAsset.test.ts │ │ ├── general.test.ts │ │ ├── keyless.test.ts │ │ ├── object.test.ts │ │ ├── paginateQuery.test.ts │ │ ├── staking.test.ts │ │ ├── table.test.ts │ │ ├── transaction.test.ts │ │ ├── transactionResponse.test.ts │ │ └── verifySignatureAsync.test.ts │ ├── client │ │ ├── aptosRequest.test.ts │ │ ├── customClient.test.ts │ │ ├── get.test.ts │ │ └── post.test.ts │ ├── helper.ts │ ├── transaction │ │ ├── generateTransaction.test.ts │ │ ├── helper.ts │ │ ├── signTransaction.test.ts │ │ ├── transactionArguments.test.ts │ │ ├── transactionBuilder.test.ts │ │ ├── transactionPlugin.test.ts │ │ ├── transactionSimulation.test.ts │ │ └── transactionSubmission.test.ts │ └── transactionManagement │ │ ├── accountSequenceNumber.test.ts │ │ ├── asyncQueue.test.ts │ │ └── transactionWorker.test.ts ├── features │ ├── bcs_deserialization.feature │ ├── bcs_serialization.feature │ └── crypto_private_keys.feature ├── move │ ├── account_abstraction │ │ ├── Move.toml │ │ └── sources │ │ │ ├── add_permission_delegation.move │ │ │ ├── any_authenticator.move │ │ │ └── hello_world_authenticator.move │ ├── arguments │ │ ├── Move.toml │ │ ├── publish.json │ │ └── sources │ │ │ ├── main.move │ │ │ └── multi_signer.move │ └── transfer │ │ ├── Move.toml │ │ └── sources │ │ ├── main.move │ │ ├── script_coin_transfer.move │ │ ├── script_transfer.move │ │ └── script_two_by_two.move ├── postTest.cjs ├── preTest.cjs ├── step-definitions │ ├── bcs.steps.mts │ └── crypto_private_keys.steps.mts └── unit │ ├── __snapshots__ │ └── client.test.ts.snap │ ├── account.test.ts │ ├── accountAddress.test.ts │ ├── accountSerialization.test.ts │ ├── address.test.ts │ ├── aptosConfig.test.ts │ ├── authenticationKey.test.ts │ ├── bcsHelper.test.ts │ ├── client.test.ts │ ├── conversion.test.ts │ ├── deserializer.test.ts │ ├── ed25519.test.ts │ ├── hdKey.test.ts │ ├── helper.ts │ ├── helpers.test.ts │ ├── hex.test.ts │ ├── keyless.test.ts │ ├── memoize.test.ts │ ├── multiEd25519.test.ts │ ├── multiKey.test.ts │ ├── poseidon.test.ts │ ├── publicKey.test.ts │ ├── remoteAbi.test.ts │ ├── scriptTransactionArguments.test.ts │ ├── secp256k1.test.ts │ ├── secp256r1.test.ts │ ├── serializer.test.ts │ ├── signedIntegers.test.ts │ ├── signingMessage.test.ts │ ├── transactionPayload.test.ts │ ├── typeTag.test.ts │ └── typeTagParser.test.ts ├── tsconfig.json ├── tsup.config.ts └── typedoc.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actionlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actionlint.yaml -------------------------------------------------------------------------------- /.github/actions/run-build/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-build/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-check-version/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-check-version/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-examples/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-examples/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-fmt/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-fmt/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-lint/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-lint/action.yaml -------------------------------------------------------------------------------- /.github/actions/run-tests/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/actions/run-tests/action.yaml -------------------------------------------------------------------------------- /.github/workflows/run-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-build.yaml -------------------------------------------------------------------------------- /.github/workflows/run-check-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-check-version.yaml -------------------------------------------------------------------------------- /.github/workflows/run-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-examples.yaml -------------------------------------------------------------------------------- /.github/workflows/run-fmt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-fmt.yaml -------------------------------------------------------------------------------- /.github/workflows/run-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.github/workflows/run-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v22.12.0 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.prettierrc -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | pnpm 8.15.1 2 | nodejs 22.12.0 3 | -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/.versionrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SIGNED_INTEGER_TYPETAGS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/SIGNED_INTEGER_TYPETAGS.md -------------------------------------------------------------------------------- /confidential-assets/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/jest.config.js -------------------------------------------------------------------------------- /confidential-assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/package.json -------------------------------------------------------------------------------- /confidential-assets/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/pnpm-lock.yaml -------------------------------------------------------------------------------- /confidential-assets/postbuild.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/postbuild.cjs -------------------------------------------------------------------------------- /confidential-assets/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/consts.ts -------------------------------------------------------------------------------- /confidential-assets/src/crypto/chunkedAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/crypto/chunkedAmount.ts -------------------------------------------------------------------------------- /confidential-assets/src/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/crypto/index.ts -------------------------------------------------------------------------------- /confidential-assets/src/crypto/rangeProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/crypto/rangeProof.ts -------------------------------------------------------------------------------- /confidential-assets/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/helpers.ts -------------------------------------------------------------------------------- /confidential-assets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/index.ts -------------------------------------------------------------------------------- /confidential-assets/src/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/internal/index.ts -------------------------------------------------------------------------------- /confidential-assets/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/utils.ts -------------------------------------------------------------------------------- /confidential-assets/src/utils/memoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/src/utils/memoize.ts -------------------------------------------------------------------------------- /confidential-assets/tests/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/tests/README.MD -------------------------------------------------------------------------------- /confidential-assets/tests/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/tests/helpers/index.ts -------------------------------------------------------------------------------- /confidential-assets/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/tsconfig.build.json -------------------------------------------------------------------------------- /confidential-assets/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/confidential-assets/tsup.config.ts -------------------------------------------------------------------------------- /cucumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/cucumber.js -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/@aptos-labs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/index.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.30.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.30.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.31.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.31.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.32.1/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.32.1/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.1/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.33.2/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.33.2/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.34.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.34.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.35.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.35.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.36.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.36.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.37.1/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.37.1/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.38.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.38.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-1.39.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-1.39.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-2.0.1/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-2.0.1/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.0.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.0.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.1/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.1/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.2/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.2/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-3.1.3/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-3.1.3/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/classes/U8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/classes/U8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/media/README.md -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Block.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Event.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Uint16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Uint16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Uint32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Uint32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Uint64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Uint64.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-4.0.0/types/Uint8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-4.0.0/types/Uint8.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/assets/icons.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/assets/icons.svg -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/assets/search.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/assets/style.css -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/Bool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/Bool.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/Hex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/Hex.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/U128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/U128.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/U16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/U16.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/U256.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/U256.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/classes/U32.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/classes/U32.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.0.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.0.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.0/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.0/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.0/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.0/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.0/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.0/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.0/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.0/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.0/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.1/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.1/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.1/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.1/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.1/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.1/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.1/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.1/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.1/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.2/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.2/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.2/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.2/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.2/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.2/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.2/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.2/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.2/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.3/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.3/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.3/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.3/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.3/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.3/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.3/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.3/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.3/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.4/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.4/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.4/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.4/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.4/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.4/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.4/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.4/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.4/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.5/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.5/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.5/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.5/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.5/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.5/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.5/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.5/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.5/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.6/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.6/.nojekyll -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.6/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.6/assets/main.js -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.6/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.6/hierarchy.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.6/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.6/index.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-5.1.6/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-5.1.6/modules.html -------------------------------------------------------------------------------- /docs/@aptos-labs/ts-sdk-latest/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/@aptos-labs/ts-sdk-latest/index.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/docs/index.md -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/javascript/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/javascript/.npmrc -------------------------------------------------------------------------------- /examples/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/javascript/package.json -------------------------------------------------------------------------------- /examples/javascript/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/javascript/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/javascript/simple_transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/javascript/simple_transfer.js -------------------------------------------------------------------------------- /examples/typescript-esm/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/.npmrc -------------------------------------------------------------------------------- /examples/typescript-esm/multisig_v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/multisig_v2.ts -------------------------------------------------------------------------------- /examples/typescript-esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/package.json -------------------------------------------------------------------------------- /examples/typescript-esm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/typescript-esm/simple_transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/simple_transfer.ts -------------------------------------------------------------------------------- /examples/typescript-esm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript-esm/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript-esm/tsup.config.ts -------------------------------------------------------------------------------- /examples/typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/.gitignore -------------------------------------------------------------------------------- /examples/typescript/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/.npmrc -------------------------------------------------------------------------------- /examples/typescript/batch_funds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/batch_funds.ts -------------------------------------------------------------------------------- /examples/typescript/batch_mint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/batch_mint.ts -------------------------------------------------------------------------------- /examples/typescript/custom_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/custom_client.ts -------------------------------------------------------------------------------- /examples/typescript/external_signing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/external_signing.ts -------------------------------------------------------------------------------- /examples/typescript/federated_keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/federated_keyless.ts -------------------------------------------------------------------------------- /examples/typescript/jwk_update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/jwk_update.ts -------------------------------------------------------------------------------- /examples/typescript/keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/keyless.ts -------------------------------------------------------------------------------- /examples/typescript/keyless_mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/keyless_mainnet.ts -------------------------------------------------------------------------------- /examples/typescript/local_node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/local_node.ts -------------------------------------------------------------------------------- /examples/typescript/move/claims/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/move/claims/Move.toml -------------------------------------------------------------------------------- /examples/typescript/move/facoin/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/move/facoin/Move.toml -------------------------------------------------------------------------------- /examples/typescript/move/moonCoin/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/move/moonCoin/Move.toml -------------------------------------------------------------------------------- /examples/typescript/move/transfer/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/move/transfer/Move.toml -------------------------------------------------------------------------------- /examples/typescript/multi_agent_transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/multi_agent_transfer.ts -------------------------------------------------------------------------------- /examples/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/package.json -------------------------------------------------------------------------------- /examples/typescript/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/typescript/rotate_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/rotate_key.ts -------------------------------------------------------------------------------- /examples/typescript/sign_struct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/sign_struct.ts -------------------------------------------------------------------------------- /examples/typescript/simple_transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/simple_transfer.ts -------------------------------------------------------------------------------- /examples/typescript/swap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/swap.ts -------------------------------------------------------------------------------- /examples/typescript/transfer_coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/transfer_coin.ts -------------------------------------------------------------------------------- /examples/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/tsconfig.json -------------------------------------------------------------------------------- /examples/typescript/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/utils.ts -------------------------------------------------------------------------------- /examples/typescript/your_coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/your_coin.ts -------------------------------------------------------------------------------- /examples/typescript/your_fungible_asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/examples/typescript/your_fungible_asset.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /projects/gas-station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/README.md -------------------------------------------------------------------------------- /projects/gas-station/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/package.json -------------------------------------------------------------------------------- /projects/gas-station/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/pnpm-lock.yaml -------------------------------------------------------------------------------- /projects/gas-station/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/src/client.ts -------------------------------------------------------------------------------- /projects/gas-station/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/src/server.ts -------------------------------------------------------------------------------- /projects/gas-station/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/projects/gas-station/tsconfig.json -------------------------------------------------------------------------------- /scripts/checkVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/scripts/checkVersion.sh -------------------------------------------------------------------------------- /scripts/generateDocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/scripts/generateDocs.sh -------------------------------------------------------------------------------- /scripts/updateVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/scripts/updateVersion.sh -------------------------------------------------------------------------------- /src/account/AbstractKeylessAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/AbstractKeylessAccount.ts -------------------------------------------------------------------------------- /src/account/AbstractedAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/AbstractedAccount.ts -------------------------------------------------------------------------------- /src/account/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/Account.ts -------------------------------------------------------------------------------- /src/account/AccountUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/AccountUtils.ts -------------------------------------------------------------------------------- /src/account/DerivableAbstractedAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/DerivableAbstractedAccount.ts -------------------------------------------------------------------------------- /src/account/Ed25519Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/Ed25519Account.ts -------------------------------------------------------------------------------- /src/account/EphemeralKeyPair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/EphemeralKeyPair.ts -------------------------------------------------------------------------------- /src/account/FederatedKeylessAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/FederatedKeylessAccount.ts -------------------------------------------------------------------------------- /src/account/KeylessAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/KeylessAccount.ts -------------------------------------------------------------------------------- /src/account/MultiEd25519Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/MultiEd25519Account.ts -------------------------------------------------------------------------------- /src/account/MultiKeyAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/MultiKeyAccount.ts -------------------------------------------------------------------------------- /src/account/SingleKeyAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/SingleKeyAccount.ts -------------------------------------------------------------------------------- /src/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/index.ts -------------------------------------------------------------------------------- /src/account/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/account/utils.ts -------------------------------------------------------------------------------- /src/api/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/account.ts -------------------------------------------------------------------------------- /src/api/account/abstraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/account/abstraction.ts -------------------------------------------------------------------------------- /src/api/ans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/ans.ts -------------------------------------------------------------------------------- /src/api/aptos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/aptos.ts -------------------------------------------------------------------------------- /src/api/aptosConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/aptosConfig.ts -------------------------------------------------------------------------------- /src/api/coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/coin.ts -------------------------------------------------------------------------------- /src/api/digitalAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/digitalAsset.ts -------------------------------------------------------------------------------- /src/api/faucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/faucet.ts -------------------------------------------------------------------------------- /src/api/fungibleAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/fungibleAsset.ts -------------------------------------------------------------------------------- /src/api/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/general.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/keyless.ts -------------------------------------------------------------------------------- /src/api/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/object.ts -------------------------------------------------------------------------------- /src/api/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/staking.ts -------------------------------------------------------------------------------- /src/api/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/table.ts -------------------------------------------------------------------------------- /src/api/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transaction.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/build.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/helpers.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/management.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/management.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/sign.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/simulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/simulate.ts -------------------------------------------------------------------------------- /src/api/transactionSubmission/submit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/transactionSubmission/submit.ts -------------------------------------------------------------------------------- /src/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/api/utils.ts -------------------------------------------------------------------------------- /src/bcs/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/consts.ts -------------------------------------------------------------------------------- /src/bcs/deserializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/deserializer.ts -------------------------------------------------------------------------------- /src/bcs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/index.ts -------------------------------------------------------------------------------- /src/bcs/serializable/entryFunctionBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/serializable/entryFunctionBytes.ts -------------------------------------------------------------------------------- /src/bcs/serializable/fixedBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/serializable/fixedBytes.ts -------------------------------------------------------------------------------- /src/bcs/serializable/movePrimitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/serializable/movePrimitives.ts -------------------------------------------------------------------------------- /src/bcs/serializable/moveStructs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/serializable/moveStructs.ts -------------------------------------------------------------------------------- /src/bcs/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/bcs/serializer.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/localNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/cli/localNode.ts -------------------------------------------------------------------------------- /src/cli/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/cli/move.ts -------------------------------------------------------------------------------- /src/client/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/client/core.ts -------------------------------------------------------------------------------- /src/client/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/client/get.ts -------------------------------------------------------------------------------- /src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/client/index.ts -------------------------------------------------------------------------------- /src/client/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/client/post.ts -------------------------------------------------------------------------------- /src/core/account/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./utils"; 2 | -------------------------------------------------------------------------------- /src/core/account/utils/address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/account/utils/address.ts -------------------------------------------------------------------------------- /src/core/account/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./address"; 2 | -------------------------------------------------------------------------------- /src/core/accountAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/accountAddress.ts -------------------------------------------------------------------------------- /src/core/authenticationKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/authenticationKey.ts -------------------------------------------------------------------------------- /src/core/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/common.ts -------------------------------------------------------------------------------- /src/core/crypto/abstraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/abstraction.ts -------------------------------------------------------------------------------- /src/core/crypto/deserializationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/deserializationUtils.ts -------------------------------------------------------------------------------- /src/core/crypto/ed25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/ed25519.ts -------------------------------------------------------------------------------- /src/core/crypto/ephemeral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/ephemeral.ts -------------------------------------------------------------------------------- /src/core/crypto/federatedKeyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/federatedKeyless.ts -------------------------------------------------------------------------------- /src/core/crypto/hdKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/hdKey.ts -------------------------------------------------------------------------------- /src/core/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/index.ts -------------------------------------------------------------------------------- /src/core/crypto/keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/keyless.ts -------------------------------------------------------------------------------- /src/core/crypto/multiEd25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/multiEd25519.ts -------------------------------------------------------------------------------- /src/core/crypto/multiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/multiKey.ts -------------------------------------------------------------------------------- /src/core/crypto/poseidon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/poseidon.ts -------------------------------------------------------------------------------- /src/core/crypto/privateKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/privateKey.ts -------------------------------------------------------------------------------- /src/core/crypto/proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/proof.ts -------------------------------------------------------------------------------- /src/core/crypto/publicKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/publicKey.ts -------------------------------------------------------------------------------- /src/core/crypto/secp256k1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/secp256k1.ts -------------------------------------------------------------------------------- /src/core/crypto/secp256r1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/secp256r1.ts -------------------------------------------------------------------------------- /src/core/crypto/signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/signature.ts -------------------------------------------------------------------------------- /src/core/crypto/singleKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/singleKey.ts -------------------------------------------------------------------------------- /src/core/crypto/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/types.ts -------------------------------------------------------------------------------- /src/core/crypto/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/crypto/utils.ts -------------------------------------------------------------------------------- /src/core/hex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/hex.ts -------------------------------------------------------------------------------- /src/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/core/index.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/internal/abstraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/abstraction.ts -------------------------------------------------------------------------------- /src/internal/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/account.ts -------------------------------------------------------------------------------- /src/internal/ans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/ans.ts -------------------------------------------------------------------------------- /src/internal/coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/coin.ts -------------------------------------------------------------------------------- /src/internal/digitalAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/digitalAsset.ts -------------------------------------------------------------------------------- /src/internal/faucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/faucet.ts -------------------------------------------------------------------------------- /src/internal/fungibleAsset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/fungibleAsset.ts -------------------------------------------------------------------------------- /src/internal/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/general.ts -------------------------------------------------------------------------------- /src/internal/keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/keyless.ts -------------------------------------------------------------------------------- /src/internal/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/object.ts -------------------------------------------------------------------------------- /src/internal/queries/getEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/queries/getEvents.graphql -------------------------------------------------------------------------------- /src/internal/queries/getNames.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/queries/getNames.graphql -------------------------------------------------------------------------------- /src/internal/queries/getObjectData.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/queries/getObjectData.graphql -------------------------------------------------------------------------------- /src/internal/queries/getTokenData.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/queries/getTokenData.graphql -------------------------------------------------------------------------------- /src/internal/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/staking.ts -------------------------------------------------------------------------------- /src/internal/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/table.ts -------------------------------------------------------------------------------- /src/internal/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/transaction.ts -------------------------------------------------------------------------------- /src/internal/transactionSubmission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/transactionSubmission.ts -------------------------------------------------------------------------------- /src/internal/utils/index.ts: -------------------------------------------------------------------------------- 1 | // Copyright © Aptos Foundation 2 | // SPDX-License-Identifier: Apache-2.0 3 | 4 | export * from "./utils"; 5 | -------------------------------------------------------------------------------- /src/internal/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/utils/utils.ts -------------------------------------------------------------------------------- /src/internal/view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/internal/view.ts -------------------------------------------------------------------------------- /src/transactions/authenticator/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/authenticator/account.ts -------------------------------------------------------------------------------- /src/transactions/authenticator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/authenticator/index.ts -------------------------------------------------------------------------------- /src/transactions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/index.ts -------------------------------------------------------------------------------- /src/transactions/instances/chainId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/instances/chainId.ts -------------------------------------------------------------------------------- /src/transactions/instances/identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/instances/identifier.ts -------------------------------------------------------------------------------- /src/transactions/instances/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/instances/index.ts -------------------------------------------------------------------------------- /src/transactions/instances/moduleId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/instances/moduleId.ts -------------------------------------------------------------------------------- /src/transactions/instances/rawTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/instances/rawTransaction.ts -------------------------------------------------------------------------------- /src/transactions/management/asyncQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/management/asyncQueue.ts -------------------------------------------------------------------------------- /src/transactions/management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/management/index.ts -------------------------------------------------------------------------------- /src/transactions/transactionBuilder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/transactionBuilder/index.ts -------------------------------------------------------------------------------- /src/transactions/typeTag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/typeTag/index.ts -------------------------------------------------------------------------------- /src/transactions/typeTag/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/typeTag/parser.ts -------------------------------------------------------------------------------- /src/transactions/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/transactions/types.ts -------------------------------------------------------------------------------- /src/types/abstraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/abstraction.ts -------------------------------------------------------------------------------- /src/types/codegen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/codegen.yaml -------------------------------------------------------------------------------- /src/types/generated/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/generated/operations.ts -------------------------------------------------------------------------------- /src/types/generated/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/generated/queries.ts -------------------------------------------------------------------------------- /src/types/generated/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/generated/types.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/indexer.ts -------------------------------------------------------------------------------- /src/types/keyless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/keyless.ts -------------------------------------------------------------------------------- /src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/types/types.ts -------------------------------------------------------------------------------- /src/utils/apiEndpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/apiEndpoints.ts -------------------------------------------------------------------------------- /src/utils/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/const.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/memoize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/memoize.ts -------------------------------------------------------------------------------- /src/utils/normalizeBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/utils/normalizeBundle.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/src/version.ts -------------------------------------------------------------------------------- /tests/e2e/ans/ans.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/ans/ans.test.ts -------------------------------------------------------------------------------- /tests/e2e/ans/publishANSContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/ans/publishANSContracts.ts -------------------------------------------------------------------------------- /tests/e2e/api/abstraction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/abstraction.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/account.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/account.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/coin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/coin.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/collection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/collection.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/digitalAsset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/digitalAsset.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/faucet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/faucet.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/fungibleAsset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/fungibleAsset.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/general.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/general.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/keyless.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/keyless.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/object.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/paginateQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/paginateQuery.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/staking.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/staking.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/table.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/table.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/transaction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/transaction.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/transactionResponse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/transactionResponse.test.ts -------------------------------------------------------------------------------- /tests/e2e/api/verifySignatureAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/api/verifySignatureAsync.test.ts -------------------------------------------------------------------------------- /tests/e2e/client/aptosRequest.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/client/aptosRequest.test.ts -------------------------------------------------------------------------------- /tests/e2e/client/customClient.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/client/customClient.test.ts -------------------------------------------------------------------------------- /tests/e2e/client/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/client/get.test.ts -------------------------------------------------------------------------------- /tests/e2e/client/post.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/client/post.test.ts -------------------------------------------------------------------------------- /tests/e2e/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/helper.ts -------------------------------------------------------------------------------- /tests/e2e/transaction/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/e2e/transaction/helper.ts -------------------------------------------------------------------------------- /tests/features/bcs_deserialization.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/features/bcs_deserialization.feature -------------------------------------------------------------------------------- /tests/features/bcs_serialization.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/features/bcs_serialization.feature -------------------------------------------------------------------------------- /tests/features/crypto_private_keys.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/features/crypto_private_keys.feature -------------------------------------------------------------------------------- /tests/move/account_abstraction/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/account_abstraction/Move.toml -------------------------------------------------------------------------------- /tests/move/arguments/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/arguments/Move.toml -------------------------------------------------------------------------------- /tests/move/arguments/publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/arguments/publish.json -------------------------------------------------------------------------------- /tests/move/arguments/sources/main.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/arguments/sources/main.move -------------------------------------------------------------------------------- /tests/move/transfer/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/transfer/Move.toml -------------------------------------------------------------------------------- /tests/move/transfer/sources/main.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/move/transfer/sources/main.move -------------------------------------------------------------------------------- /tests/postTest.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/postTest.cjs -------------------------------------------------------------------------------- /tests/preTest.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/preTest.cjs -------------------------------------------------------------------------------- /tests/step-definitions/bcs.steps.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/step-definitions/bcs.steps.mts -------------------------------------------------------------------------------- /tests/unit/__snapshots__/client.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/__snapshots__/client.test.ts.snap -------------------------------------------------------------------------------- /tests/unit/account.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/account.test.ts -------------------------------------------------------------------------------- /tests/unit/accountAddress.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/accountAddress.test.ts -------------------------------------------------------------------------------- /tests/unit/accountSerialization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/accountSerialization.test.ts -------------------------------------------------------------------------------- /tests/unit/address.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/address.test.ts -------------------------------------------------------------------------------- /tests/unit/aptosConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/aptosConfig.test.ts -------------------------------------------------------------------------------- /tests/unit/authenticationKey.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/authenticationKey.test.ts -------------------------------------------------------------------------------- /tests/unit/bcsHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/bcsHelper.test.ts -------------------------------------------------------------------------------- /tests/unit/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/client.test.ts -------------------------------------------------------------------------------- /tests/unit/conversion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/conversion.test.ts -------------------------------------------------------------------------------- /tests/unit/deserializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/deserializer.test.ts -------------------------------------------------------------------------------- /tests/unit/ed25519.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/ed25519.test.ts -------------------------------------------------------------------------------- /tests/unit/hdKey.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/hdKey.test.ts -------------------------------------------------------------------------------- /tests/unit/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/helper.ts -------------------------------------------------------------------------------- /tests/unit/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/helpers.test.ts -------------------------------------------------------------------------------- /tests/unit/hex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/hex.test.ts -------------------------------------------------------------------------------- /tests/unit/keyless.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/keyless.test.ts -------------------------------------------------------------------------------- /tests/unit/memoize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/memoize.test.ts -------------------------------------------------------------------------------- /tests/unit/multiEd25519.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/multiEd25519.test.ts -------------------------------------------------------------------------------- /tests/unit/multiKey.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/multiKey.test.ts -------------------------------------------------------------------------------- /tests/unit/poseidon.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/poseidon.test.ts -------------------------------------------------------------------------------- /tests/unit/publicKey.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/publicKey.test.ts -------------------------------------------------------------------------------- /tests/unit/remoteAbi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/remoteAbi.test.ts -------------------------------------------------------------------------------- /tests/unit/secp256k1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/secp256k1.test.ts -------------------------------------------------------------------------------- /tests/unit/secp256r1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/secp256r1.test.ts -------------------------------------------------------------------------------- /tests/unit/serializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/serializer.test.ts -------------------------------------------------------------------------------- /tests/unit/signedIntegers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/signedIntegers.test.ts -------------------------------------------------------------------------------- /tests/unit/signingMessage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/signingMessage.test.ts -------------------------------------------------------------------------------- /tests/unit/transactionPayload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/transactionPayload.test.ts -------------------------------------------------------------------------------- /tests/unit/typeTag.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/typeTag.test.ts -------------------------------------------------------------------------------- /tests/unit/typeTagParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tests/unit/typeTagParser.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptos-labs/aptos-ts-sdk/HEAD/typedoc.json --------------------------------------------------------------------------------