├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ └── toolkit_feature_request.yml ├── dependabot.yaml └── workflows │ ├── flow-pull-request-formatting.yaml │ ├── pr-tests.yml │ ├── release.yml │ ├── run-e2e-tests.yml │ ├── run-integration-tests.yml │ └── run-unit-tests.yml ├── .gitignore ├── .husky └── pre-commit ├── CONTRIBUTING.md ├── LICENCE ├── README.md ├── contracts ├── .env.example ├── .gitignore ├── .prettierignore ├── .prettierrc ├── contracts │ ├── BaseERC20.sol │ ├── BaseERC20Factory.sol │ ├── BaseERC721.sol │ └── BaseERC721Factory.sol ├── hardhat.config.ts ├── ignition │ └── modules │ │ └── deploy-factory.ts ├── package-lock.json ├── package.json ├── test │ ├── BaseERC20.test.ts │ ├── BaseERC20Factory.test.ts │ ├── BaseERC721.test.ts │ └── BaseERC721Factory.test.ts └── tsconfig.json ├── docs ├── DEVEXAMPLES.md ├── HEDERAPLUGINS.md ├── PLUGINS.md └── adr │ ├── 000-template.md │ ├── 001-build-esm-cjs-bundle.md │ ├── 002-testing-strategy.md │ └── 003-release-process.md ├── modelcontextprotocol ├── .gitignore ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── packages └── create-hedera-agent │ ├── .gitignore │ ├── README.md │ ├── index.ts │ ├── package-lock.json │ ├── package.json │ ├── scripts │ └── sync-template.cjs │ └── tsconfig.json └── typescript ├── .env.test.local.example ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.cjs ├── LICENCE ├── eslint.config.mjs ├── examples ├── ai-sdk │ ├── .env.example │ ├── package-lock.json │ ├── package.json │ ├── plugin-tool-calling-agent.ts │ ├── tool-calling-agent.ts │ └── tsconfig.json ├── langchain-v1 │ ├── .env.example │ ├── package-lock.json │ ├── package.json │ ├── plugin-tool-calling-agent.ts │ ├── return-bytes-tool-calling-agent.ts │ └── tsconfig.json ├── langchain │ ├── .env.example │ ├── package-lock.json │ ├── package.json │ ├── plugin-tool-calling-agent.ts │ ├── return-bytes-tool-calling-agent.ts │ ├── structured-chat-agent.ts │ ├── tool-calling-agent.ts │ └── tsconfig.json ├── nextjs │ ├── .env.local.example │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ │ ├── file.svg │ │ ├── globe.svg │ │ ├── next.svg │ │ ├── vercel.svg │ │ └── window.svg │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ ├── agent │ │ │ │ │ └── route.ts │ │ │ │ └── wallet │ │ │ │ │ └── prepare │ │ │ │ │ └── route.ts │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── Chat.tsx │ │ │ ├── MessageInput.tsx │ │ │ ├── MessageList.tsx │ │ │ ├── TransactionStatus.tsx │ │ │ ├── WalletConnect.tsx │ │ │ ├── WalletConnectClient.tsx │ │ │ └── ui │ │ │ │ ├── alert.tsx │ │ │ │ ├── avatar.tsx │ │ │ │ ├── badge.tsx │ │ │ │ ├── button.tsx │ │ │ │ ├── card.tsx │ │ │ │ ├── dialog.tsx │ │ │ │ ├── dropdown-menu.tsx │ │ │ │ ├── input.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── scroll-area.tsx │ │ │ │ ├── separator.tsx │ │ │ │ ├── skeleton.tsx │ │ │ │ ├── sonner.tsx │ │ │ │ ├── textarea.tsx │ │ │ │ └── tooltip.tsx │ │ ├── hooks │ │ │ ├── useAutoSign.ts │ │ │ └── useMessageSubmit.ts │ │ ├── lib │ │ │ ├── agent-config.ts │ │ │ ├── agent-factory.ts │ │ │ ├── api-utils.ts │ │ │ ├── bytes-utils.ts │ │ │ ├── constants.ts │ │ │ ├── llm.ts │ │ │ ├── schemas.ts │ │ │ ├── utils.ts │ │ │ └── walletconnect.ts │ │ └── types │ │ │ └── index.ts │ └── tsconfig.json └── plugin │ ├── README.md │ └── example-plugin.ts ├── package-lock.json ├── package.json ├── src ├── ai-sdk │ ├── index.ts │ ├── tool.ts │ └── toolkit.ts ├── elizaos │ ├── index.ts │ ├── tool.ts │ ├── toolkit.ts │ └── utils │ │ ├── extraction.ts │ │ └── parser.ts ├── index.ts ├── langchain │ ├── index.ts │ ├── responseParserService.ts │ ├── tool.ts │ └── toolkit.ts ├── modelcontextprotocol │ ├── index.ts │ └── toolkit.ts ├── plugins │ ├── core-account-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── account │ │ │ ├── approve-hbar-allowance.ts │ │ │ ├── create-account.ts │ │ │ ├── delete-account.ts │ │ │ ├── delete-hbar-allowance.ts │ │ │ ├── schedule-delete.ts │ │ │ ├── sign-schedule-transaction.ts │ │ │ ├── transfer-hbar-with-allowance.ts │ │ │ ├── transfer-hbar.ts │ │ │ └── update-account.ts │ ├── core-account-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ ├── get-account-query.ts │ │ │ ├── get-account-token-balances-query.ts │ │ │ └── get-hbar-balance-query.ts │ ├── core-consensus-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── consensus │ │ │ ├── create-topic.ts │ │ │ ├── delete-topic.ts │ │ │ ├── submit-topic-message.ts │ │ │ └── update-topic.ts │ ├── core-consensus-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ ├── get-topic-info-query.ts │ │ │ └── get-topic-messages-query.ts │ ├── core-evm-plugin │ │ ├── index.ts │ │ └── tools │ │ │ ├── erc20 │ │ │ ├── create-erc20.ts │ │ │ └── transfer-erc20.ts │ │ │ └── erc721 │ │ │ ├── create-erc721.ts │ │ │ ├── mint-erc721.ts │ │ │ └── transfer-erc721.ts │ ├── core-evm-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ └── get-contract-info-query.ts │ ├── core-misc-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ └── get-exchange-rate-query.ts │ ├── core-queries-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ ├── get-account-query.ts │ │ │ ├── get-account-token-balances-query.ts │ │ │ ├── get-hbar-balance-query.ts │ │ │ ├── get-token-info-query.ts │ │ │ └── get-topic-messages-query.ts │ ├── core-token-plugin │ │ ├── index.ts │ │ └── tools │ │ │ ├── associate-token.ts │ │ │ ├── dissociate-token.ts │ │ │ ├── fungible-token │ │ │ ├── airdrop-fungible-token.ts │ │ │ ├── approve-token-allowance.ts │ │ │ ├── create-fungible-token.ts │ │ │ ├── delete-token-allowance.ts │ │ │ ├── mint-fungible-token.ts │ │ │ └── transfer-fungible-token-with-allowance.ts │ │ │ ├── non-fungible-token │ │ │ ├── approve-non-fungible-token-allowance.ts │ │ │ ├── create-non-fungible-token.ts │ │ │ ├── mint-non-fungible-token.ts │ │ │ └── transfer-non-fungible-token-with-allowance.ts │ │ │ └── update-token.ts │ ├── core-token-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ ├── get-pending-airdrop-query.ts │ │ │ └── get-token-info-query.ts │ ├── core-transactions-query-plugin │ │ ├── index.ts │ │ └── tools │ │ │ └── queries │ │ │ └── get-transaction-record-query.ts │ └── index.ts └── shared │ ├── api.ts │ ├── configuration.ts │ ├── constants │ ├── README.md │ └── contracts.ts │ ├── hedera-utils │ ├── decimals-utils.ts │ ├── hbar-conversion-utils.ts │ ├── hedera-builder.ts │ ├── hedera-parameter-normaliser.ts │ ├── mirrornode │ │ ├── hedera-mirrornode-service-default-impl.ts │ │ ├── hedera-mirrornode-service.interface.ts │ │ ├── hedera-mirrornode-utils.ts │ │ └── types.ts │ └── types.ts │ ├── index.ts │ ├── parameter-schemas │ ├── account.zod.ts │ ├── common.zod.ts │ ├── consensus.zod.ts │ ├── core-misc.zod.ts │ ├── evm.zod.ts │ ├── token.zod.ts │ └── transaction.zod.ts │ ├── plugin.ts │ ├── strategies │ └── tx-mode-strategy.ts │ ├── tool-discovery.ts │ ├── tools.ts │ └── utils │ ├── README.md │ ├── account-resolver.ts │ ├── default-tool-output-parsing.ts │ ├── index.ts │ └── prompt-generator.ts ├── test ├── e2e │ ├── airdrop-fungible-token.e2e.test.ts │ ├── approve-hbar-allowance.e2e.test.ts │ ├── approve-nft-allowance.e2e.test.ts │ ├── approve-nft-collection-allowance.e2e.test.ts │ ├── approve-token-allowance.e2e.test.ts │ ├── associate-token.e2e.test.ts │ ├── create-account.e2e.test.ts │ ├── create-erc20.e2e.test.ts │ ├── create-erc721.e2e.test.ts │ ├── create-fungible-token.e2e.test.ts │ ├── create-non-fungible-token.e2e.test.ts │ ├── create-topic.e2e.test.ts │ ├── delete-account.e2e.test.ts │ ├── delete-hbar-allowance.e2e.test.ts │ ├── delete-token-allowance.e2e.test.ts │ ├── delete-topic.e2e.test.ts │ ├── dissociate-token.e2e.test.ts │ ├── get-account-query.e2e.test.ts │ ├── get-account-token-balances.e2e.test.ts │ ├── get-contract-info-query.e2e.test.ts │ ├── get-exchange-rate.e2e.test.ts │ ├── get-hbar-balance.e2e.test.ts │ ├── get-pending-airdrop-query.e2e.test.ts │ ├── get-token-info-query.e2e.test.ts │ ├── get-topic-info.e2e.test.ts │ ├── get-topic-messages.e2e.test.ts │ ├── get-transaction-record.e2e.test.ts │ ├── mint-erc721.e2e.test.ts │ ├── mint-fungible-token.e2e.test.ts │ ├── mint-non-fungible-token.e2e.test.ts │ ├── schedule-delete.e2e.test.ts │ ├── sign-schedule-transaction.e2e.test.ts │ ├── submit-topic-message.e2e.test.ts │ ├── transfer-erc20.e2e.test.ts │ ├── transfer-erc721.e2e.test.ts │ ├── transfer-fungible-token-with-allowance.e2e.test.ts │ ├── transfer-hbar-with-allowance.e2e.test.ts │ ├── transfer-hbar.e2e.test.ts │ ├── transfer-non-fungible-token-with-allowance.e2e.test.ts │ ├── update-account.e2e.test.ts │ ├── update-token.e2e.test.ts │ └── update-topic.e2e.test.ts ├── integration │ ├── hedera │ │ ├── airdrop-fungible-token.integration.test.ts │ │ ├── approve-hbar-allowance.integration.test.ts │ │ ├── approve-nft-allowance.integration.test.ts │ │ ├── approve-token-allowance.integration.test.ts │ │ ├── associate-token.integration.test.ts │ │ ├── create-account.integration.test.ts │ │ ├── create-erc20.integration.test.ts │ │ ├── create-erc721.integration.test.ts │ │ ├── create-fungible-token.integration.test.ts │ │ ├── create-non-fungible-token.integration.test.ts │ │ ├── create-topic.integration.test.ts │ │ ├── delete-account.integration.test.ts │ │ ├── delete-hbar-allowance.integration.test.ts │ │ ├── delete-token-allowance.integration.test.ts │ │ ├── delete-topic.integration.test.ts │ │ ├── dissociate-token.integration.test.ts │ │ ├── get-account-query.integration.test.ts │ │ ├── get-account-token-balances.integration.test.ts │ │ ├── get-contract-info-query.integration.test.ts │ │ ├── get-exchange-rate.integration.test.ts │ │ ├── get-hbar-balance.integration.test.ts │ │ ├── get-pending-airdrop-query.integration.test.ts │ │ ├── get-token-info-query.integration.test.ts │ │ ├── get-topic-info.integration.test.ts │ │ ├── get-topic-messages.integration.test.ts │ │ ├── get-transaction-record.integration.test.ts │ │ ├── mint-erc721.integration.test.ts │ │ ├── mint-fungible-token.integration.test.ts │ │ ├── mint-non-fungible-token.integraion.test.ts │ │ ├── schedule-delete.integration.test.ts │ │ ├── schedule-transaction.integration.test.ts │ │ ├── sign-schedule-transaction.integration.test.ts │ │ ├── submit-topic-message.integration.test.ts │ │ ├── transfer-erc20.integration.test.ts │ │ ├── transfer-erc721.integration.test.ts │ │ ├── transfer-fungible-token-with-allowance.integration.test.ts │ │ ├── transfer-hbar-with-allowance.integration.test.ts │ │ ├── transfer-hbar.integration.test.ts │ │ ├── transfer-non-fungible-token-with-allowance.integration.test.ts │ │ ├── update-account.integration.test.ts │ │ └── update-token.integration.test.ts │ └── tool-matching │ │ ├── airdrop-fungible-token-tool-matching.integration.test.ts │ │ ├── approve-hbar-allowance-tool-matching.integration.test.ts │ │ ├── approve-nft-allowance-tool-matching.integration.test.ts │ │ ├── approve-token-allowance-tool-matching.integration.test.ts │ │ ├── associate-token-tool-matching.integration.test.ts │ │ ├── create-account-tool-matching.integration.test.ts │ │ ├── create-erc20-tool-matching.integration.test.ts │ │ ├── create-erc721-tool-matching.integration.test.ts │ │ ├── create-fungible-token-tool-matching.integration.test.ts │ │ ├── create-non-fungible-token-tool-matching.integration.test.ts │ │ ├── create-topic-tool-matching.integration.test.ts │ │ ├── delete-account-tool-matching.integration.test.ts │ │ ├── delete-hbar-allowance-tool-matching.integration.test.ts │ │ ├── delete-token-allowance-tool-matching.integration.test.ts │ │ ├── delete-topic-tool-matching.integration.test.ts │ │ ├── dissociate-token-tool-matching.integration.test.ts │ │ ├── get-account-query-tool-matching.integration.test.ts │ │ ├── get-account-token-balances-tool-matching.integraion.test.ts │ │ ├── get-contract-info-query-tool-matching.integration.test.ts │ │ ├── get-exchange-rate-tool-matching.integration.test.ts │ │ ├── get-hbar-balance-tool-matching.integration.test.ts │ │ ├── get-pending-airdrop-query-tool-matching.integration.test.ts │ │ ├── get-token-info-query-tool-matching.integration.test.ts │ │ ├── get-topic-info-tool-matching.integration.test.ts │ │ ├── get-topic-messages-tool-matching.integration.test.ts │ │ ├── get-transaction-record-tool-matching.integration.test.ts │ │ ├── mint-erc721-tool-matching.integration.test.ts │ │ ├── mint-fungible-token-tool-matching.integration.test.ts │ │ ├── mint-non-fungible-token-tool-matching.integration.test.ts │ │ ├── schedule-delete-tool-matching.integration.test.ts │ │ ├── schedule-transaction-tool-matching.integration.test.ts │ │ ├── sign-schedule-transaction-tool-matching.integration.test.ts │ │ ├── tranfer-non-fungible-token-with-allowance.integration.test.ts │ │ ├── transfer-erc20-tool-matching.integration.test.ts │ │ ├── transfer-erc721-tool-matching.integration.test.ts │ │ ├── transfer-fungible-token-with-allowance-tool-matching.integration.test.ts │ │ ├── transfer-hbar-tool-matching.integration.test.ts │ │ ├── transfer-hbar-with-allowance-tool-matching.integration.test.ts │ │ ├── update-account-tool-matching.integration.test.ts │ │ ├── update-token-tool-matching.integration.test.ts │ │ └── update-topic-tool-matching.integration.test.ts ├── unit │ ├── parameter-normalization │ │ ├── airdrop-fungible-token-params-normalization.unit.test.ts │ │ ├── approve-hbar-allowance-params-normalization.unit.test.ts │ │ ├── approve-nft-allowance-params-normalization.unit.test.ts │ │ ├── approve-token-allowance-params-normalization.unit.test.ts │ │ ├── associate-token-params-normalization.unit.test.ts │ │ ├── create-account-params-normalization.unit.test.ts │ │ ├── create-erc20-params-normalization.unit.test.ts │ │ ├── create-erc721-params-normalization.unit.test.ts │ │ ├── create-fungible-token-parameter-normalization.unit.test.ts │ │ ├── create-non-fungible-token-parameter-normalization.unit.test.ts │ │ ├── create-topic-params-normalization.unit.test.ts │ │ ├── delete-account-params-normalization.unit.test.ts │ │ ├── delete-hbar-allowance-params-normalization.unit.test.ts │ │ ├── delete-token-allowance-params-normalization.unit.test.ts │ │ ├── dissociate-token-params-normalization.unit.test.ts │ │ ├── get-account-token-balances-params-normalization.unit.test.ts │ │ ├── get-hbar-balance-params-normalization.unit.test.ts │ │ ├── get-transaction-record-params-normalization.unit.test.ts │ │ ├── mint-erc721-params-normalization.unit.test.ts │ │ ├── mint-fungible-token-params-normalization.unit.test.ts │ │ ├── mint-non-fungible-token-params-normalization.unit.test.ts │ │ ├── transfer-erc20-params-normalization.unit.test.ts │ │ ├── transfer-erc721-params-normalization.unit.test.ts │ │ ├── transfer-fungible-token-with-allowance-params-normalization.unit.test.ts │ │ ├── transfer-hbar-params-normalization.unit.test.ts │ │ ├── transfer-hbar-with-allowance-params-normalization.unit.test.ts │ │ ├── transfer-non-fungible-token-with-allowance-params-normalization.unit.test.ts │ │ ├── update-account-params-normalization.unit.test.ts │ │ ├── update-token-params-normalization.test.ts │ │ └── update-topic-params-normalization.unit.test.ts │ ├── parameter-schemas │ │ └── approve-nft-allowance-params.unit.test.ts │ ├── tools │ │ ├── airdrop-fungible-token.unit.test.ts │ │ ├── approve-hbar-allowance.unit.test.ts │ │ ├── approve-non-fungible-token-allowance.unit.test.ts │ │ ├── approve-token-allowance.unit.test.ts │ │ ├── associate-token.unit.test.ts │ │ ├── create-account.unit.test.ts │ │ ├── create-erc20.unit.test.ts │ │ ├── create-erc721.unit.test.ts │ │ ├── create-fungible-token-tool.unit.test.ts │ │ ├── create-non-fungible-token-tool.unit.test.ts │ │ ├── create-topic.unit.test.ts │ │ ├── delete-account.unit.test.ts │ │ ├── delete-hbar-allowance.unit.test.ts │ │ ├── delete-token-allowance.unit.test.ts │ │ ├── delete-topic.unit.test.ts │ │ ├── dissociate-token.unit.test.ts │ │ ├── get-account-query.unit.test.ts │ │ ├── get-account-token-balances.unit.test.ts │ │ ├── get-contract-info-query.unit.test.ts │ │ ├── get-exchange-rate.unit.test.ts │ │ ├── get-hbar-balance.unit.test.ts │ │ ├── get-pending-airdrop-query.unit.test.ts │ │ ├── get-token-info-query.unit.test.ts │ │ ├── get-topic-info.unit.test.ts │ │ ├── get-topic-messages.unit.test.ts │ │ ├── get-transaction-record.unit.test.ts │ │ ├── mint-erc721.unit.test.ts │ │ ├── mint-fungible-token.unit.test.ts │ │ ├── mint-non-fungible-token.unit.test.ts │ │ ├── schedule-delete.unit.test.ts │ │ ├── sign-schedule-transaction.unit.test.ts │ │ ├── submit-topic-message.unit.test.ts │ │ ├── transfer-erc20.unit.test.ts │ │ ├── transfer-erc721.unit.test.ts │ │ ├── transfer-fungible-token-with-allowance.unit.test.ts │ │ ├── transfer-hbar-with-allowance.unit.test.ts │ │ ├── transfer-hbar.unit.test.ts │ │ ├── transfer-non-fungible-token-with-allowance.unit.test.ts │ │ ├── update-account.unit.test.ts │ │ ├── update-token.unit.test.ts │ │ └── update-topic.unit.test.ts │ └── utils │ │ └── decimals-utils.unit.test.ts └── utils │ ├── general-util.ts │ ├── hedera-operations │ └── HederaOperationsWrapper.ts │ ├── index.ts │ ├── retry-util.ts │ ├── setup │ ├── client-setup.ts │ ├── langchain-test-config.ts │ ├── langchain-test-setup.ts │ ├── llm-factory.ts │ └── slowdown.ts │ ├── teardown │ └── account-teardown.ts │ ├── test-constants.ts │ └── verification │ └── balance-verification-utils.ts ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/toolkit_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/ISSUE_TEMPLATE/toolkit_feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/flow-pull-request-formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/flow-pull-request-formatting.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/pr-tests.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/run-e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/run-integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/run-integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/run-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.github/workflows/run-unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/README.md -------------------------------------------------------------------------------- /contracts/.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY= # must use hex encoded ECDSA -------------------------------------------------------------------------------- /contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/.gitignore -------------------------------------------------------------------------------- /contracts/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/.prettierignore -------------------------------------------------------------------------------- /contracts/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/.prettierrc -------------------------------------------------------------------------------- /contracts/contracts/BaseERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/contracts/BaseERC20.sol -------------------------------------------------------------------------------- /contracts/contracts/BaseERC20Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/contracts/BaseERC20Factory.sol -------------------------------------------------------------------------------- /contracts/contracts/BaseERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/contracts/BaseERC721.sol -------------------------------------------------------------------------------- /contracts/contracts/BaseERC721Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/contracts/BaseERC721Factory.sol -------------------------------------------------------------------------------- /contracts/hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/hardhat.config.ts -------------------------------------------------------------------------------- /contracts/ignition/modules/deploy-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/ignition/modules/deploy-factory.ts -------------------------------------------------------------------------------- /contracts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/package-lock.json -------------------------------------------------------------------------------- /contracts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/package.json -------------------------------------------------------------------------------- /contracts/test/BaseERC20.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/test/BaseERC20.test.ts -------------------------------------------------------------------------------- /contracts/test/BaseERC20Factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/test/BaseERC20Factory.test.ts -------------------------------------------------------------------------------- /contracts/test/BaseERC721.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/test/BaseERC721.test.ts -------------------------------------------------------------------------------- /contracts/test/BaseERC721Factory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/test/BaseERC721Factory.test.ts -------------------------------------------------------------------------------- /contracts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/contracts/tsconfig.json -------------------------------------------------------------------------------- /docs/DEVEXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/DEVEXAMPLES.md -------------------------------------------------------------------------------- /docs/HEDERAPLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/HEDERAPLUGINS.md -------------------------------------------------------------------------------- /docs/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/PLUGINS.md -------------------------------------------------------------------------------- /docs/adr/000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/adr/000-template.md -------------------------------------------------------------------------------- /docs/adr/001-build-esm-cjs-bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/adr/001-build-esm-cjs-bundle.md -------------------------------------------------------------------------------- /docs/adr/002-testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/adr/002-testing-strategy.md -------------------------------------------------------------------------------- /docs/adr/003-release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/docs/adr/003-release-process.md -------------------------------------------------------------------------------- /modelcontextprotocol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/modelcontextprotocol/.gitignore -------------------------------------------------------------------------------- /modelcontextprotocol/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/modelcontextprotocol/package-lock.json -------------------------------------------------------------------------------- /modelcontextprotocol/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/modelcontextprotocol/package.json -------------------------------------------------------------------------------- /modelcontextprotocol/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/modelcontextprotocol/src/index.ts -------------------------------------------------------------------------------- /modelcontextprotocol/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/modelcontextprotocol/tsconfig.json -------------------------------------------------------------------------------- /packages/create-hedera-agent/.gitignore: -------------------------------------------------------------------------------- 1 | template -------------------------------------------------------------------------------- /packages/create-hedera-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/README.md -------------------------------------------------------------------------------- /packages/create-hedera-agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/index.ts -------------------------------------------------------------------------------- /packages/create-hedera-agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/package-lock.json -------------------------------------------------------------------------------- /packages/create-hedera-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/package.json -------------------------------------------------------------------------------- /packages/create-hedera-agent/scripts/sync-template.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/scripts/sync-template.cjs -------------------------------------------------------------------------------- /packages/create-hedera-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/packages/create-hedera-agent/tsconfig.json -------------------------------------------------------------------------------- /typescript/.env.test.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/.env.test.local.example -------------------------------------------------------------------------------- /typescript/.eslintrc.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/.gitignore -------------------------------------------------------------------------------- /typescript/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/.prettierignore -------------------------------------------------------------------------------- /typescript/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/.prettierrc.cjs -------------------------------------------------------------------------------- /typescript/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/LICENCE -------------------------------------------------------------------------------- /typescript/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/eslint.config.mjs -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/.env.example -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/package-lock.json -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/package.json -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/plugin-tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/plugin-tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/ai-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/ai-sdk/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/.env.example -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/package-lock.json -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/plugin-tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/plugin-tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/return-bytes-tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/return-bytes-tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-v1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain-v1/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/.env.example -------------------------------------------------------------------------------- /typescript/examples/langchain/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/package-lock.json -------------------------------------------------------------------------------- /typescript/examples/langchain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain/plugin-tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/plugin-tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain/return-bytes-tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/return-bytes-tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain/structured-chat-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/structured-chat-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain/tool-calling-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/tool-calling-agent.ts -------------------------------------------------------------------------------- /typescript/examples/langchain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/langchain/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/nextjs/.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/.env.local.example -------------------------------------------------------------------------------- /typescript/examples/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/.gitignore -------------------------------------------------------------------------------- /typescript/examples/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/README.md -------------------------------------------------------------------------------- /typescript/examples/nextjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/components.json -------------------------------------------------------------------------------- /typescript/examples/nextjs/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/eslint.config.mjs -------------------------------------------------------------------------------- /typescript/examples/nextjs/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/next.config.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/package-lock.json -------------------------------------------------------------------------------- /typescript/examples/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/package.json -------------------------------------------------------------------------------- /typescript/examples/nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /typescript/examples/nextjs/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/public/file.svg -------------------------------------------------------------------------------- /typescript/examples/nextjs/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/public/globe.svg -------------------------------------------------------------------------------- /typescript/examples/nextjs/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/public/next.svg -------------------------------------------------------------------------------- /typescript/examples/nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/public/vercel.svg -------------------------------------------------------------------------------- /typescript/examples/nextjs/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/public/window.svg -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/api/agent/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/api/agent/route.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/api/wallet/prepare/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/api/wallet/prepare/route.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/favicon.ico -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/globals.css -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/layout.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/app/page.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/Chat.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/MessageInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/MessageInput.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/MessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/MessageList.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/TransactionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/TransactionStatus.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/WalletConnect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/WalletConnect.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/WalletConnectClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/WalletConnectClient.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/button.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/card.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/input.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/hooks/useAutoSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/hooks/useAutoSign.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/hooks/useMessageSubmit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/hooks/useMessageSubmit.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/agent-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/agent-config.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/agent-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/agent-factory.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/api-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/api-utils.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/bytes-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/bytes-utils.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/constants.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/llm.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/schemas.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/utils.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/lib/walletconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/lib/walletconnect.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/src/types/index.ts -------------------------------------------------------------------------------- /typescript/examples/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/nextjs/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/plugin/README.md -------------------------------------------------------------------------------- /typescript/examples/plugin/example-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/examples/plugin/example-plugin.ts -------------------------------------------------------------------------------- /typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/package-lock.json -------------------------------------------------------------------------------- /typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/package.json -------------------------------------------------------------------------------- /typescript/src/ai-sdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/ai-sdk/index.ts -------------------------------------------------------------------------------- /typescript/src/ai-sdk/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/ai-sdk/tool.ts -------------------------------------------------------------------------------- /typescript/src/ai-sdk/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/ai-sdk/toolkit.ts -------------------------------------------------------------------------------- /typescript/src/elizaos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/elizaos/index.ts -------------------------------------------------------------------------------- /typescript/src/elizaos/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/elizaos/tool.ts -------------------------------------------------------------------------------- /typescript/src/elizaos/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/elizaos/toolkit.ts -------------------------------------------------------------------------------- /typescript/src/elizaos/utils/extraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/elizaos/utils/extraction.ts -------------------------------------------------------------------------------- /typescript/src/elizaos/utils/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/elizaos/utils/parser.ts -------------------------------------------------------------------------------- /typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/index.ts -------------------------------------------------------------------------------- /typescript/src/langchain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/langchain/index.ts -------------------------------------------------------------------------------- /typescript/src/langchain/responseParserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/langchain/responseParserService.ts -------------------------------------------------------------------------------- /typescript/src/langchain/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/langchain/tool.ts -------------------------------------------------------------------------------- /typescript/src/langchain/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/langchain/toolkit.ts -------------------------------------------------------------------------------- /typescript/src/modelcontextprotocol/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/modelcontextprotocol/index.ts -------------------------------------------------------------------------------- /typescript/src/modelcontextprotocol/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/modelcontextprotocol/toolkit.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/approve-hbar-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/approve-hbar-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/create-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/create-account.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/delete-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/delete-account.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/delete-hbar-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/delete-hbar-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/schedule-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/schedule-delete.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/sign-schedule-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/sign-schedule-transaction.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/transfer-hbar-with-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/transfer-hbar-with-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/transfer-hbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/transfer-hbar.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-plugin/tools/account/update-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-plugin/tools/account/update-account.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-query-plugin/tools/queries/get-account-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-query-plugin/tools/queries/get-account-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-query-plugin/tools/queries/get-account-token-balances-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-query-plugin/tools/queries/get-account-token-balances-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-account-query-plugin/tools/queries/get-hbar-balance-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-account-query-plugin/tools/queries/get-hbar-balance-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-plugin/tools/consensus/create-topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-plugin/tools/consensus/create-topic.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-plugin/tools/consensus/delete-topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-plugin/tools/consensus/delete-topic.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-plugin/tools/consensus/submit-topic-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-plugin/tools/consensus/submit-topic-message.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-plugin/tools/consensus/update-topic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-plugin/tools/consensus/update-topic.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-query-plugin/tools/queries/get-topic-info-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-query-plugin/tools/queries/get-topic-info-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-consensus-query-plugin/tools/queries/get-topic-messages-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-consensus-query-plugin/tools/queries/get-topic-messages-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/tools/erc20/create-erc20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/tools/erc20/create-erc20.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/tools/erc20/transfer-erc20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/tools/erc20/transfer-erc20.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/tools/erc721/create-erc721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/tools/erc721/create-erc721.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/tools/erc721/mint-erc721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/tools/erc721/mint-erc721.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-plugin/tools/erc721/transfer-erc721.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-plugin/tools/erc721/transfer-erc721.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-evm-query-plugin/tools/queries/get-contract-info-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-evm-query-plugin/tools/queries/get-contract-info-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-misc-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-misc-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-misc-query-plugin/tools/queries/get-exchange-rate-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-misc-query-plugin/tools/queries/get-exchange-rate-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/tools/queries/get-account-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/tools/queries/get-account-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/tools/queries/get-account-token-balances-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/tools/queries/get-account-token-balances-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/tools/queries/get-hbar-balance-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/tools/queries/get-hbar-balance-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/tools/queries/get-token-info-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/tools/queries/get-token-info-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-queries-plugin/tools/queries/get-topic-messages-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-queries-plugin/tools/queries/get-topic-messages-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/associate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/associate-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/dissociate-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/dissociate-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/airdrop-fungible-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/airdrop-fungible-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/approve-token-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/approve-token-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/create-fungible-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/create-fungible-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/delete-token-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/delete-token-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/mint-fungible-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/mint-fungible-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/fungible-token/transfer-fungible-token-with-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/fungible-token/transfer-fungible-token-with-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/non-fungible-token/approve-non-fungible-token-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/non-fungible-token/approve-non-fungible-token-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/non-fungible-token/create-non-fungible-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/non-fungible-token/create-non-fungible-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/non-fungible-token/mint-non-fungible-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/non-fungible-token/mint-non-fungible-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/non-fungible-token/transfer-non-fungible-token-with-allowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/non-fungible-token/transfer-non-fungible-token-with-allowance.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-plugin/tools/update-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-plugin/tools/update-token.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-query-plugin/tools/queries/get-pending-airdrop-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-query-plugin/tools/queries/get-pending-airdrop-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-token-query-plugin/tools/queries/get-token-info-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-token-query-plugin/tools/queries/get-token-info-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-transactions-query-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-transactions-query-plugin/index.ts -------------------------------------------------------------------------------- /typescript/src/plugins/core-transactions-query-plugin/tools/queries/get-transaction-record-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/core-transactions-query-plugin/tools/queries/get-transaction-record-query.ts -------------------------------------------------------------------------------- /typescript/src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/plugins/index.ts -------------------------------------------------------------------------------- /typescript/src/shared/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/api.ts -------------------------------------------------------------------------------- /typescript/src/shared/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/configuration.ts -------------------------------------------------------------------------------- /typescript/src/shared/constants/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/constants/README.md -------------------------------------------------------------------------------- /typescript/src/shared/constants/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/constants/contracts.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/decimals-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/decimals-utils.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/hbar-conversion-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/hbar-conversion-utils.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/hedera-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/hedera-builder.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/hedera-parameter-normaliser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/hedera-parameter-normaliser.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-service-default-impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-service-default-impl.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-service.interface.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/mirrornode/hedera-mirrornode-utils.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/mirrornode/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/mirrornode/types.ts -------------------------------------------------------------------------------- /typescript/src/shared/hedera-utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/hedera-utils/types.ts -------------------------------------------------------------------------------- /typescript/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/index.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/account.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/account.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/common.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/common.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/consensus.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/consensus.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/core-misc.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/core-misc.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/evm.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/evm.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/token.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/token.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/parameter-schemas/transaction.zod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/parameter-schemas/transaction.zod.ts -------------------------------------------------------------------------------- /typescript/src/shared/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/plugin.ts -------------------------------------------------------------------------------- /typescript/src/shared/strategies/tx-mode-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/strategies/tx-mode-strategy.ts -------------------------------------------------------------------------------- /typescript/src/shared/tool-discovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/tool-discovery.ts -------------------------------------------------------------------------------- /typescript/src/shared/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/tools.ts -------------------------------------------------------------------------------- /typescript/src/shared/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/utils/README.md -------------------------------------------------------------------------------- /typescript/src/shared/utils/account-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/utils/account-resolver.ts -------------------------------------------------------------------------------- /typescript/src/shared/utils/default-tool-output-parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/utils/default-tool-output-parsing.ts -------------------------------------------------------------------------------- /typescript/src/shared/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/utils/index.ts -------------------------------------------------------------------------------- /typescript/src/shared/utils/prompt-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/src/shared/utils/prompt-generator.ts -------------------------------------------------------------------------------- /typescript/test/e2e/airdrop-fungible-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/airdrop-fungible-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/approve-hbar-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/approve-hbar-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/approve-nft-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/approve-nft-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/approve-nft-collection-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/approve-nft-collection-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/approve-token-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/approve-token-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/associate-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/associate-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-account.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-account.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-erc20.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-erc20.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-erc721.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-erc721.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-fungible-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-fungible-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-non-fungible-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-non-fungible-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/create-topic.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/create-topic.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/delete-account.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/delete-account.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/delete-hbar-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/delete-hbar-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/delete-token-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/delete-token-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/delete-topic.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/delete-topic.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/dissociate-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/dissociate-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-account-query.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-account-query.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-account-token-balances.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-account-token-balances.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-contract-info-query.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-contract-info-query.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-exchange-rate.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-exchange-rate.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-hbar-balance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-hbar-balance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-pending-airdrop-query.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-pending-airdrop-query.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-token-info-query.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-token-info-query.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-topic-info.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-topic-info.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-topic-messages.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-topic-messages.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/get-transaction-record.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/get-transaction-record.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/mint-erc721.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/mint-erc721.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/mint-fungible-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/mint-fungible-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/mint-non-fungible-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/mint-non-fungible-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/schedule-delete.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/schedule-delete.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/sign-schedule-transaction.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/sign-schedule-transaction.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/submit-topic-message.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/submit-topic-message.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-erc20.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-erc20.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-erc721.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-erc721.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-fungible-token-with-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-fungible-token-with-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-hbar-with-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-hbar-with-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-hbar.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-hbar.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/transfer-non-fungible-token-with-allowance.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/transfer-non-fungible-token-with-allowance.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/update-account.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/update-account.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/update-token.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/update-token.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/e2e/update-topic.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/e2e/update-topic.e2e.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/airdrop-fungible-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/airdrop-fungible-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/approve-hbar-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/approve-hbar-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/approve-nft-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/approve-nft-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/approve-token-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/approve-token-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/associate-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/associate-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-account.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-account.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-erc20.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-erc20.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-erc721.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-erc721.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-fungible-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-fungible-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-non-fungible-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-non-fungible-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/create-topic.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/create-topic.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/delete-account.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/delete-account.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/delete-hbar-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/delete-hbar-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/delete-token-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/delete-token-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/delete-topic.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/delete-topic.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/dissociate-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/dissociate-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-account-query.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-account-query.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-account-token-balances.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-account-token-balances.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-contract-info-query.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-contract-info-query.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-exchange-rate.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-exchange-rate.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-hbar-balance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-hbar-balance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-pending-airdrop-query.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-pending-airdrop-query.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-token-info-query.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-token-info-query.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-topic-info.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-topic-info.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-topic-messages.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-topic-messages.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/get-transaction-record.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/get-transaction-record.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/mint-erc721.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/mint-erc721.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/mint-fungible-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/mint-fungible-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/mint-non-fungible-token.integraion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/mint-non-fungible-token.integraion.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/schedule-delete.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/schedule-delete.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/schedule-transaction.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/schedule-transaction.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/sign-schedule-transaction.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/sign-schedule-transaction.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/submit-topic-message.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/submit-topic-message.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-erc20.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-erc20.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-erc721.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-erc721.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-fungible-token-with-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-fungible-token-with-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-hbar-with-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-hbar-with-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-hbar.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-hbar.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/transfer-non-fungible-token-with-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/transfer-non-fungible-token-with-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/update-account.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/update-account.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/hedera/update-token.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/hedera/update-token.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/airdrop-fungible-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/airdrop-fungible-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/approve-hbar-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/approve-hbar-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/approve-nft-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/approve-nft-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/approve-token-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/approve-token-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/associate-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/associate-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-account-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-account-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-erc20-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-erc20-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-erc721-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-erc721-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-fungible-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-fungible-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-non-fungible-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-non-fungible-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/create-topic-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/create-topic-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/delete-account-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/delete-account-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/delete-hbar-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/delete-hbar-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/delete-token-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/delete-token-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/delete-topic-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/delete-topic-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/dissociate-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/dissociate-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-account-query-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-account-query-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-account-token-balances-tool-matching.integraion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-account-token-balances-tool-matching.integraion.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-contract-info-query-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-contract-info-query-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-exchange-rate-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-exchange-rate-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-hbar-balance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-hbar-balance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-pending-airdrop-query-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-pending-airdrop-query-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-token-info-query-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-token-info-query-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-topic-info-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-topic-info-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-topic-messages-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-topic-messages-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/get-transaction-record-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/get-transaction-record-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/mint-erc721-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/mint-erc721-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/mint-fungible-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/mint-fungible-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/mint-non-fungible-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/mint-non-fungible-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/schedule-delete-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/schedule-delete-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/schedule-transaction-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/schedule-transaction-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/sign-schedule-transaction-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/sign-schedule-transaction-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/tranfer-non-fungible-token-with-allowance.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/tranfer-non-fungible-token-with-allowance.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/transfer-erc20-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/transfer-erc20-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/transfer-erc721-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/transfer-erc721-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/transfer-fungible-token-with-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/transfer-fungible-token-with-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/transfer-hbar-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/transfer-hbar-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/transfer-hbar-with-allowance-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/transfer-hbar-with-allowance-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/update-account-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/update-account-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/update-token-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/update-token-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/integration/tool-matching/update-topic-tool-matching.integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/integration/tool-matching/update-topic-tool-matching.integration.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/airdrop-fungible-token-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/airdrop-fungible-token-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/approve-hbar-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/approve-hbar-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/approve-nft-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/approve-nft-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/approve-token-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/approve-token-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/associate-token-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/associate-token-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-account-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-account-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-erc20-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-erc20-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-erc721-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-erc721-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-fungible-token-parameter-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-fungible-token-parameter-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-non-fungible-token-parameter-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-non-fungible-token-parameter-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/create-topic-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/create-topic-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/delete-account-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/delete-account-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/delete-hbar-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/delete-hbar-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/delete-token-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/delete-token-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/dissociate-token-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/dissociate-token-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/get-account-token-balances-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/get-account-token-balances-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/get-hbar-balance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/get-hbar-balance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/get-transaction-record-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/get-transaction-record-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/mint-erc721-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/mint-erc721-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/mint-fungible-token-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/mint-fungible-token-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/mint-non-fungible-token-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/mint-non-fungible-token-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-erc20-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-erc20-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-erc721-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-erc721-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-fungible-token-with-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-fungible-token-with-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-hbar-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-hbar-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-hbar-with-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-hbar-with-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/transfer-non-fungible-token-with-allowance-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/transfer-non-fungible-token-with-allowance-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/update-account-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/update-account-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/update-token-params-normalization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/update-token-params-normalization.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-normalization/update-topic-params-normalization.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-normalization/update-topic-params-normalization.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/parameter-schemas/approve-nft-allowance-params.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/parameter-schemas/approve-nft-allowance-params.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/airdrop-fungible-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/airdrop-fungible-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/approve-hbar-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/approve-hbar-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/approve-non-fungible-token-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/approve-non-fungible-token-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/approve-token-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/approve-token-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/associate-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/associate-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-account.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-account.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-erc20.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-erc20.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-erc721.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-erc721.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-fungible-token-tool.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-fungible-token-tool.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-non-fungible-token-tool.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-non-fungible-token-tool.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/create-topic.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/create-topic.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/delete-account.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/delete-account.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/delete-hbar-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/delete-hbar-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/delete-token-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/delete-token-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/delete-topic.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/delete-topic.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/dissociate-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/dissociate-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-account-query.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-account-query.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-account-token-balances.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-account-token-balances.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-contract-info-query.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-contract-info-query.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-exchange-rate.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-exchange-rate.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-hbar-balance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-hbar-balance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-pending-airdrop-query.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-pending-airdrop-query.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-token-info-query.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-token-info-query.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-topic-info.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-topic-info.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-topic-messages.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-topic-messages.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/get-transaction-record.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/get-transaction-record.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/mint-erc721.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/mint-erc721.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/mint-fungible-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/mint-fungible-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/mint-non-fungible-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/mint-non-fungible-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/schedule-delete.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/schedule-delete.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/sign-schedule-transaction.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/sign-schedule-transaction.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/submit-topic-message.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/submit-topic-message.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-erc20.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-erc20.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-erc721.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-erc721.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-fungible-token-with-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-fungible-token-with-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-hbar-with-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-hbar-with-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-hbar.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-hbar.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/transfer-non-fungible-token-with-allowance.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/transfer-non-fungible-token-with-allowance.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/update-account.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/update-account.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/update-token.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/update-token.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/tools/update-topic.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/tools/update-topic.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/unit/utils/decimals-utils.unit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/unit/utils/decimals-utils.unit.test.ts -------------------------------------------------------------------------------- /typescript/test/utils/general-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/general-util.ts -------------------------------------------------------------------------------- /typescript/test/utils/hedera-operations/HederaOperationsWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/hedera-operations/HederaOperationsWrapper.ts -------------------------------------------------------------------------------- /typescript/test/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/index.ts -------------------------------------------------------------------------------- /typescript/test/utils/retry-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/retry-util.ts -------------------------------------------------------------------------------- /typescript/test/utils/setup/client-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/setup/client-setup.ts -------------------------------------------------------------------------------- /typescript/test/utils/setup/langchain-test-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/setup/langchain-test-config.ts -------------------------------------------------------------------------------- /typescript/test/utils/setup/langchain-test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/setup/langchain-test-setup.ts -------------------------------------------------------------------------------- /typescript/test/utils/setup/llm-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/setup/llm-factory.ts -------------------------------------------------------------------------------- /typescript/test/utils/setup/slowdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/setup/slowdown.ts -------------------------------------------------------------------------------- /typescript/test/utils/teardown/account-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/teardown/account-teardown.ts -------------------------------------------------------------------------------- /typescript/test/utils/test-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/test-constants.ts -------------------------------------------------------------------------------- /typescript/test/utils/verification/balance-verification-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/test/utils/verification/balance-verification-utils.ts -------------------------------------------------------------------------------- /typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/tsconfig.json -------------------------------------------------------------------------------- /typescript/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/tsup.config.ts -------------------------------------------------------------------------------- /typescript/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashgraph/hedera-agent-kit-js/HEAD/typescript/vitest.config.ts --------------------------------------------------------------------------------