├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── format.yml │ ├── labeler.yml │ ├── lint.yml │ ├── publish_docs.yml │ ├── publish_nightly.yml │ ├── publish_npm_manual.yml │ ├── publish_pypi_coinbase_agentkit.yml │ ├── publish_pypi_coinbase_agentkit_autogen.yml │ ├── publish_pypi_coinbase_agentkit_langchain.yml │ ├── publish_pypi_coinbase_agentkit_openai_agents_sdk.yml │ ├── publish_pypi_coinbase_agentkit_pydantic_ai.yml │ ├── publish_pypi_coinbase_agentkit_strands_agents.yml │ ├── publish_pypi_create_onchain_agent.yml │ ├── unit_tests.yml │ └── version_publish_npm.yml ├── .gitignore ├── CONTRIBUTING-PYTHON.md ├── CONTRIBUTING-TYPESCRIPT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── SECURITY.md ├── WISHLIST.md ├── agent_k.webp ├── agentkit_banner.png ├── assets ├── frameworks │ ├── eliza.svg │ ├── langchain.svg │ ├── modelcontextprotocol.svg │ ├── openai.svg │ ├── strands-logo.svg │ └── vercel.svg ├── networks │ ├── base.svg │ ├── ethereum.svg │ └── solana.svg ├── protocols │ ├── aerodrome.svg │ ├── alchemy.svg │ ├── allora.svg │ ├── compound.svg │ ├── defillama.svg │ ├── farcaster.svg │ ├── hyperbolic.svg │ ├── jupiter.svg │ ├── moonwell.svg │ ├── morpho.svg │ ├── opensea.svg │ ├── pyth.svg │ ├── superfluid.svg │ └── zora.svg └── wallets │ ├── coinbase.svg │ ├── privy.svg │ └── viem.svg ├── python ├── README.md ├── coinbase-agentkit │ ├── CHANGELOG.md │ ├── Makefile │ ├── README.md │ ├── changelog.d │ │ ├── .gitignore │ │ └── add-aave-action-provider.feature.md │ ├── coinbase_agentkit │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── action_providers │ │ │ ├── __init__.py │ │ │ ├── aave │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── aave_action_provider.py │ │ │ │ ├── constants.py │ │ │ │ ├── schemas.py │ │ │ │ └── utils.py │ │ │ ├── action_decorator.py │ │ │ ├── action_provider.py │ │ │ ├── basename │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── basename_action_provider.py │ │ │ │ ├── constants.py │ │ │ │ └── schemas.py │ │ │ ├── cdp │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── cdp_api_action_provider.py │ │ │ │ ├── cdp_evm_wallet_action_provider.py │ │ │ │ ├── cdp_smart_wallet_action_provider.py │ │ │ │ ├── faucet_utils.py │ │ │ │ ├── schemas.py │ │ │ │ └── swap_utils.py │ │ │ ├── compound │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── compound_action_provider.py │ │ │ │ ├── constants.py │ │ │ │ ├── schemas.py │ │ │ │ └── utils.py │ │ │ ├── erc20 │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── erc20_action_provider.py │ │ │ │ ├── schemas.py │ │ │ │ ├── utils.py │ │ │ │ └── validators.py │ │ │ ├── erc721 │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── erc721_action_provider.py │ │ │ │ └── schemas.py │ │ │ ├── hyperboliclabs │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── action_provider.py │ │ │ │ ├── ai │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action_provider.py │ │ │ │ │ ├── schemas.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── utils.py │ │ │ │ ├── billing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action_provider.py │ │ │ │ │ ├── schemas.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── hyperbolic_action_provider.py │ │ │ │ ├── marketplace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action_provider.py │ │ │ │ │ ├── schemas.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── utils.py │ │ │ │ ├── service.py │ │ │ │ ├── settings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── action_provider.py │ │ │ │ │ ├── schemas.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── types.py │ │ │ │ │ └── utils.py │ │ │ │ └── utils.py │ │ │ ├── morpho │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── morpho_action_provider.py │ │ │ │ ├── schemas.py │ │ │ │ └── utils.py │ │ │ ├── nillion │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── nillion_action_provider.py │ │ │ │ └── schemas.py │ │ │ ├── onramp │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── onramp_action_provider.py │ │ │ │ ├── schemas.py │ │ │ │ └── utils.py │ │ │ ├── pyth │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── pyth_action_provider.py │ │ │ │ └── schemas.py │ │ │ ├── ssh │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── connection_pool.py │ │ │ │ ├── schemas.py │ │ │ │ └── ssh_action_provider.py │ │ │ ├── superfluid │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── schemas.py │ │ │ │ └── superfluid_action_provider.py │ │ │ ├── twitter │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── schemas.py │ │ │ │ └── twitter_action_provider.py │ │ │ ├── wallet │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── schemas.py │ │ │ │ ├── validators.py │ │ │ │ └── wallet_action_provider.py │ │ │ ├── weth │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── schemas.py │ │ │ │ └── weth_action_provider.py │ │ │ ├── wow │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── constants.py │ │ │ │ ├── schemas.py │ │ │ │ ├── uniswap │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constants.py │ │ │ │ │ └── utils.py │ │ │ │ ├── utils.py │ │ │ │ └── wow_action_provider.py │ │ │ └── x402 │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── schemas.py │ │ │ │ └── x402_action_provider.py │ │ ├── agentkit.py │ │ ├── analytics │ │ │ ├── __init__.py │ │ │ └── send_analytics_event.py │ │ ├── network.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── chain_definitions.py │ │ │ └── network.py │ │ ├── validators │ │ │ ├── __init__.py │ │ │ └── eth.py │ │ └── wallet_providers │ │ │ ├── __init__.py │ │ │ ├── cdp_evm_wallet_provider.py │ │ │ ├── cdp_smart_wallet_provider.py │ │ │ ├── cdp_solana_wallet_provider.py │ │ │ ├── eth_account_wallet_provider.py │ │ │ ├── evm_wallet_provider.py │ │ │ └── wallet_provider.py │ ├── docs │ │ ├── Makefile │ │ ├── coinbase_agentkit.action_providers.basename.rst │ │ ├── coinbase_agentkit.action_providers.cdp.rst │ │ ├── coinbase_agentkit.action_providers.erc20.rst │ │ ├── coinbase_agentkit.action_providers.erc721.rst │ │ ├── coinbase_agentkit.action_providers.rst │ │ ├── coinbase_agentkit.action_providers.superfluid.rst │ │ ├── coinbase_agentkit.action_providers.twitter.rst │ │ ├── coinbase_agentkit.action_providers.wallet.rst │ │ ├── coinbase_agentkit.action_providers.weth.rst │ │ ├── coinbase_agentkit.action_providers.wow.rst │ │ ├── coinbase_agentkit.analytics.rst │ │ ├── coinbase_agentkit.network.rst │ │ ├── coinbase_agentkit.rst │ │ ├── coinbase_agentkit.validators.rst │ │ ├── coinbase_agentkit.wallet_providers.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ └── modules.rst │ ├── pyproject.toml │ ├── tests │ │ ├── action_providers │ │ │ ├── __init__.py │ │ │ ├── aave │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_aave_provider.py │ │ │ │ ├── test_aave_schemas.py │ │ │ │ └── test_aave_supply.py │ │ │ ├── basename │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_basename_action_provider.py │ │ │ ├── cdp │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_api_faucet_funds.py │ │ │ │ ├── test_cdp_api_action_provider.py │ │ │ │ ├── test_cdp_evm_wallet_action_provider.py │ │ │ │ └── test_cdp_smart_wallet_action_provider.py │ │ │ ├── compound │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_compound_borrow.py │ │ │ │ ├── test_compound_portfolio.py │ │ │ │ ├── test_compound_provider.py │ │ │ │ ├── test_compound_repay.py │ │ │ │ ├── test_compound_schemas.py │ │ │ │ ├── test_compound_supply.py │ │ │ │ ├── test_compound_utils.py │ │ │ │ └── test_compound_withdraw.py │ │ │ ├── erc20 │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_erc20_action_provider.py │ │ │ ├── erc721 │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_erc721_action_provider.py │ │ │ ├── hyperboliclabs │ │ │ │ ├── __init__.py │ │ │ │ ├── ai │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── e2e │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conftest.py │ │ │ │ │ │ └── test_service.py │ │ │ │ │ ├── test_action_provider.py │ │ │ │ │ ├── test_generate_audio.py │ │ │ │ │ ├── test_generate_image.py │ │ │ │ │ ├── test_generate_text.py │ │ │ │ │ └── test_service.py │ │ │ │ ├── billing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── e2e │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conftest.py │ │ │ │ │ │ └── test_service.py │ │ │ │ │ ├── test_action_provider.py │ │ │ │ │ ├── test_get_current_balance.py │ │ │ │ │ ├── test_get_purchase_history.py │ │ │ │ │ ├── test_get_spend_history.py │ │ │ │ │ └── test_service.py │ │ │ │ ├── conftest.py │ │ │ │ ├── marketplace │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── e2e │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conftest.py │ │ │ │ │ │ └── test_service.py │ │ │ │ │ ├── test_action_provider.py │ │ │ │ │ ├── test_get_available_gpus.py │ │ │ │ │ ├── test_get_available_gpus_types.py │ │ │ │ │ ├── test_get_gpu_status.py │ │ │ │ │ ├── test_rent_compute.py │ │ │ │ │ ├── test_service.py │ │ │ │ │ └── test_terminate_compute.py │ │ │ │ ├── settings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── conftest.py │ │ │ │ │ ├── e2e │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conftest.py │ │ │ │ │ │ └── test_service.py │ │ │ │ │ ├── test_action_provider.py │ │ │ │ │ ├── test_link_wallet_address.py │ │ │ │ │ └── test_service.py │ │ │ │ ├── test_hyperbolic_action_provider.py │ │ │ │ ├── test_service.py │ │ │ │ └── test_service_e2e.py │ │ │ ├── morpho │ │ │ │ ├── __init__.py │ │ │ │ └── test_morpho_action_provider.py │ │ │ ├── nillion │ │ │ │ ├── conftest.py │ │ │ │ └── test_nillion_action_provider.py │ │ │ ├── onramp │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_onramp_action_provider.py │ │ │ ├── pyth │ │ │ │ ├── __init__.py │ │ │ │ └── test_pyth_action_provider.py │ │ │ ├── ssh │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_action_provider.py │ │ │ │ ├── test_add_host_key.py │ │ │ │ ├── test_connection.py │ │ │ │ ├── test_connection_pool.py │ │ │ │ ├── test_disconnect.py │ │ │ │ ├── test_download.py │ │ │ │ ├── test_execute.py │ │ │ │ ├── test_keys.py │ │ │ │ ├── test_list_connections.py │ │ │ │ ├── test_params.py │ │ │ │ ├── test_remote_shell.py │ │ │ │ ├── test_sftp.py │ │ │ │ ├── test_ssh_connect.py │ │ │ │ ├── test_status.py │ │ │ │ └── test_upload.py │ │ │ ├── superfluid │ │ │ │ └── test_superfluid_action_provider.py │ │ │ ├── twitter │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_account_details.py │ │ │ │ ├── test_account_mentions.py │ │ │ │ ├── test_action_provider.py │ │ │ │ ├── test_post_tweet.py │ │ │ │ └── test_post_tweet_reply.py │ │ │ ├── wallet │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ ├── test_get_balance.py │ │ │ │ ├── test_get_details.py │ │ │ │ └── test_native_transfer.py │ │ │ ├── weth │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_wrap_eth.py │ │ │ ├── wow │ │ │ │ ├── __init__.py │ │ │ │ ├── test_buy_token.py │ │ │ │ ├── test_create_token.py │ │ │ │ └── test_sell_token.py │ │ │ └── x402 │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_x402_action_provider.py │ │ └── wallet_providers │ │ │ ├── __init__.py │ │ │ ├── cdp_evm_server_wallet_provider │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_basic_methods.py │ │ │ ├── test_contracts.py │ │ │ ├── test_error_handling.py │ │ │ ├── test_initialization.py │ │ │ ├── test_signing.py │ │ │ ├── test_transactions.py │ │ │ └── test_wallet_management.py │ │ │ ├── cdp_evm_smart_wallet_provider │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_basic_methods.py │ │ │ ├── test_contracts.py │ │ │ ├── test_initialization.py │ │ │ ├── test_signing.py │ │ │ └── test_transactions.py │ │ │ ├── cdp_solana_wallet_provider │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_basic_methods.py │ │ │ ├── test_error_handling.py │ │ │ ├── test_initialization.py │ │ │ ├── test_signing.py │ │ │ ├── test_solana_specific.py │ │ │ ├── test_transactions.py │ │ │ └── test_wallet_management.py │ │ │ ├── eth_account_wallet_provider │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_basic_methods.py │ │ │ ├── test_contracts.py │ │ │ ├── test_gas.py │ │ │ ├── test_initialization.py │ │ │ ├── test_signing.py │ │ │ └── test_transactions.py │ │ │ ├── test_evm_wallet_provider.py │ │ │ └── test_wallet_provider.py │ └── uv.lock ├── create-onchain-agent │ ├── CHANGELOG.md │ ├── Makefile │ ├── README.md │ ├── changelog.d │ │ └── .gitignore │ ├── create_onchain_agent │ │ └── cli.py │ ├── pyproject.toml │ ├── templates │ │ ├── beginner │ │ │ ├── .env.local.jinja │ │ │ ├── .gitignore │ │ │ ├── README.md.jinja │ │ │ ├── chatbot.py.jinja │ │ │ ├── copier.yml │ │ │ ├── initialize_agent.py.jinja │ │ │ ├── pyproject.toml.jinja │ │ │ └── setup.py.jinja │ │ └── chatbot │ │ │ ├── .env.local.jinja │ │ │ ├── .gitignore │ │ │ ├── README.md.jinja │ │ │ ├── chatbot.py.jinja │ │ │ ├── copier.yml │ │ │ ├── initialize_agent.py.jinja │ │ │ ├── pyproject.toml.jinja │ │ │ └── setup.py.jinja │ └── uv.lock ├── examples │ ├── advertisements-agent-with-strands-agents-x402-cdp-chatbot │ │ ├── .env.local │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── paid_server.py │ │ └── pyproject.toml │ ├── autogen-cdp-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-cdp-chatbot-with-amazon-bedrock │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-cdp-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-cdp-smart-wallet-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-cdp-solana-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-eth-account-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-nillion-secretvault-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── langchain-twitter-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── openai-agents-sdk-cdp-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── openai-agents-sdk-cdp-voice-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── main.py │ │ ├── my_workflow.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── openai-agents-sdk-smart-wallet-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── pydantic-ai-cdp-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── initialize_agent.py │ │ ├── pyproject.toml │ │ ├── setup.py │ │ └── uv.lock │ └── strands-agents-cdp-server-chatbot │ │ ├── .env.local │ │ ├── Makefile │ │ ├── README.md │ │ ├── chatbot.py │ │ ├── pyproject.toml │ │ └── uv.lock ├── framework-extensions │ ├── autogen │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelog.d │ │ │ └── .gitignore │ │ ├── coinbase_agentkit_autogen │ │ │ ├── __init__.py │ │ │ └── autogen_tools.py │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── autogen_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_autogen_tools.py │ │ │ └── conftest.py │ │ └── uv.lock │ ├── langchain │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelog.d │ │ │ └── .gitignore │ │ ├── coinbase_agentkit_langchain │ │ │ ├── __init__.py │ │ │ └── langchain_tools.py │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── coinbase_agentkit_langchain.rst │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── make.bat │ │ │ └── modules.rst │ │ ├── pyproject.toml │ │ └── uv.lock │ ├── openai-agents-sdk │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelog.d │ │ │ └── .gitignore │ │ ├── coinbase_agentkit_openai_agents_sdk │ │ │ ├── __init__.py │ │ │ └── openai_agents_sdk_tools.py │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── conftest.py │ │ │ └── openai_agents_sdk_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_get_openai_agents_sdk_tools.py │ │ └── uv.lock │ ├── pydantic-ai │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── changelog.d │ │ │ └── .gitignore │ │ ├── coinbase_agentkit_pydantic_ai │ │ │ ├── __init__.py │ │ │ └── pydantic_ai_tools.py │ │ ├── pyproject.toml │ │ ├── tests │ │ │ ├── conftest.py │ │ │ └── pydantic_ai_tools │ │ │ │ ├── __init__.py │ │ │ │ ├── conftest.py │ │ │ │ └── test_get_pydantic_ai_tools.py │ │ └── uv.lock │ └── strands-agents │ │ ├── CHANGELOG.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── coinbase_agentkit_strands_agents │ │ ├── __init__.py │ │ └── strands_agents_tools.py │ │ ├── docs │ │ ├── Makefile │ │ ├── coinbase_agentkit_strands_agents.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ └── modules.rst │ │ ├── pyproject.toml │ │ └── uv.lock └── scripts │ ├── README.md │ ├── get_packages_to_tag.py │ ├── sync_examples.sh │ ├── sync_framework_extensions.sh │ ├── test │ ├── test_phase_1.sh │ ├── test_phase_2.sh │ └── test_phase_3.sh │ ├── utils │ ├── __init__.py │ ├── calculate_dependency_range.py │ ├── dependency_version.py │ ├── detect_new_version_type.py │ ├── determine_new_version.py │ ├── package_definitions.py │ ├── process_package_dependency_versions.py │ ├── process_package_versions.py │ └── version.py │ ├── version_core.py │ ├── version_frameworks.py │ ├── version_frameworks_dependencies.py │ ├── version_phase_1.sh │ ├── version_phase_2.sh │ ├── version_phase_3.sh │ ├── version_utilities.py │ └── version_utilities_dependencies.py └── typescript ├── .changeset ├── README.md ├── bitter-pugs-flow.md ├── config.json ├── cute-grapes-lie.md ├── hungry-loops-hang.md └── red-goats-camp.md ├── .eslintrc.base.json ├── .prettierignore ├── .prettierrc ├── README.md ├── agentkit ├── .eslintrc.json ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── jest.config.cjs ├── package.json ├── scripts │ └── generate-action-provider │ │ ├── README.md │ │ ├── args.ts │ │ ├── config.ts │ │ ├── constants.ts │ │ ├── main.ts │ │ ├── prompts.ts │ │ ├── templates │ │ ├── README.md.template │ │ ├── action.test.ts.template │ │ ├── action.test │ │ │ ├── header │ │ │ │ ├── default.ts.template │ │ │ │ └── walletProvider.ts.template │ │ │ ├── setup │ │ │ │ ├── default.ts.template │ │ │ │ └── walletProvider.ts.template │ │ │ ├── testAction │ │ │ │ ├── default.ts.template │ │ │ │ └── walletProvider.ts.template │ │ │ └── testSchema │ │ │ │ └── default.ts.template │ │ ├── action.ts.template │ │ ├── action │ │ │ ├── default.ts.template │ │ │ └── walletProvider.ts.template │ │ ├── actionProvider.test.ts.template │ │ ├── actionProvider.test │ │ │ ├── header │ │ │ │ └── default.ts.template │ │ │ ├── networkSupport │ │ │ │ ├── default.ts.template │ │ │ │ ├── invalid.ts.template │ │ │ │ ├── protocol.ts.template │ │ │ │ └── protocolNetwork.ts.template │ │ │ └── setup │ │ │ │ └── default.ts.template │ │ ├── actionProvider.ts.template │ │ ├── actionProvider │ │ │ ├── class │ │ │ │ ├── default.ts.template │ │ │ │ └── walletProvider.ts.template │ │ │ ├── constructor │ │ │ ├── factory │ │ │ │ └── default.ts.template │ │ │ ├── header │ │ │ │ ├── default.ts.template │ │ │ │ └── walletProvider.ts.template │ │ │ └── networkSupport │ │ │ │ ├── networkSupportAll.ts.template │ │ │ │ ├── networkSupportProtocol.ts.template │ │ │ │ └── networkSupportProtocolNetwork.ts.template │ │ ├── index.ts.template │ │ ├── schemas.ts.template │ │ └── schemas │ │ │ └── default.ts.template │ │ ├── types.ts │ │ └── utils.ts ├── setup-jest.js ├── src │ ├── action-providers │ │ ├── across │ │ │ ├── README.md │ │ │ ├── acrossActionProvider.test.ts │ │ │ ├── acrossActionProvider.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ └── utils.ts │ │ ├── actionDecorator.ts │ │ ├── actionProvider.ts │ │ ├── alchemy │ │ │ ├── README.md │ │ │ ├── alchemyTokenPricesActionProvider.test.ts │ │ │ ├── alchemyTokenPricesActionProvider.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── allora │ │ │ ├── README.md │ │ │ ├── alloraActionProvider.test.ts │ │ │ ├── alloraActionProvider.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── baseAccount │ │ │ ├── README.md │ │ │ ├── baseAccountActionProvider.test.ts │ │ │ ├── baseAccountActionProvider.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── basename │ │ │ ├── README.md │ │ │ ├── basenameActionProvider.test.ts │ │ │ ├── basenameActionProvider.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── cdp-legacy │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── legacyCdpApiActionProvider.test.ts │ │ │ ├── legacyCdpApiActionProvider.ts │ │ │ ├── legacyCdpWalletActionProvider.test.ts │ │ │ ├── legacyCdpWalletActionProvider.ts │ │ │ └── schemas.ts │ │ ├── cdp │ │ │ ├── README.md │ │ │ ├── cdpApiActionProvider.test.ts │ │ │ ├── cdpApiActionProvider.ts │ │ │ ├── cdpEvmWalletActionProvider.test.ts │ │ │ ├── cdpEvmWalletActionProvider.ts │ │ │ ├── cdpSmartWalletActionProvider.test.ts │ │ │ ├── cdpSmartWalletActionProvider.ts │ │ │ ├── faucetUtils.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── spendPermissionUtils.ts │ │ │ └── swapUtils.ts │ │ ├── clanker │ │ │ ├── README.md │ │ │ ├── clankerActionProvider.test.ts │ │ │ ├── clankerActionProvider.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ └── utils.ts │ │ ├── compound │ │ │ ├── README.md │ │ │ ├── compoundActionProvider.test.ts │ │ │ ├── compoundActionProvider.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ └── utils.ts │ │ ├── customActionProvider.ts │ │ ├── defillama │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── defillamaActionProvider.test.ts │ │ │ ├── defillamaActionProvider.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── enso │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── ensoActionProvider.test.ts │ │ │ ├── ensoActionProvider.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── erc20 │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── erc20ActionProvider.test.ts │ │ │ ├── erc20ActionProvider.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ └── utils.ts │ │ ├── erc721 │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── erc721ActionProvider.test.ts │ │ │ ├── erc721ActionProvider.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── farcaster │ │ │ ├── README.md │ │ │ ├── farcasterActionProvider.test.ts │ │ │ ├── farcasterActionProvider.ts │ │ │ ├── index.ts │ │ │ └── schemas.ts │ │ ├── flaunch │ │ │ ├── README.md │ │ │ ├── client_utils.ts │ │ │ ├── constants.ts │ │ │ ├── flaunchActionProvider.test.ts │ │ │ ├── flaunchActionProvider.ts │ │ │ ├── index.ts │ │ │ ├── metadata_utils.ts │ │ │ ├── schemas.ts │ │ │ ├── swap_utils.ts │ │ │ └── types.ts │ │ ├── index.ts │ │ ├── jupiter │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── jupiterActionProvider.test.ts │ │ │ ├── jupiterActionProvider.ts │ │ │ └── schemas.ts │ │ ├── messari │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── messariActionProvider.test.ts │ │ │ ├── messariActionProvider.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── moonwell │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── moonwellActionProvider.test.ts │ │ │ ├── moonwellActionProvider.ts │ │ │ └── schemas.ts │ │ ├── morpho │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── morphoActionProvider.test.ts │ │ │ ├── morphoActionProvider.ts │ │ │ └── schemas.ts │ │ ├── onramp │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── onrampActionProvider.test.ts │ │ │ ├── onrampActionProvider.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── version.ts │ │ ├── opensea │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── openseaActionProvider.test.ts │ │ │ ├── openseaActionProvider.ts │ │ │ ├── schemas.ts │ │ │ └── utils.ts │ │ ├── pyth │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── pythActionProvider.test.ts │ │ │ ├── pythActionProvider.ts │ │ │ └── schemas.ts │ │ ├── spl │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── splActionProvider.test.ts │ │ │ └── splActionProvider.ts │ │ ├── superfluid │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── graphQueries │ │ │ │ ├── endpoints.ts │ │ │ │ ├── queries.ts │ │ │ │ ├── superfluidGraphQueries.ts │ │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── superfluidActionProvider.ts │ │ │ ├── superfluidPoolActionProvider.test.ts │ │ │ ├── superfluidPoolActionProvider.ts │ │ │ ├── superfluidQueryActionProvider.test.ts │ │ │ ├── superfluidQueryActionProvider.ts │ │ │ ├── superfluidStreamActionProvider.test.ts │ │ │ ├── superfluidStreamActionProvider.ts │ │ │ ├── superfluidSuperTokenCreatorActionProvider.test.ts │ │ │ ├── superfluidSuperTokenCreatorActionProvider.ts │ │ │ ├── superfluidWrapperActionProvider.test.ts │ │ │ ├── superfluidWrapperActionProvider.ts │ │ │ └── utils │ │ │ │ └── parseLogs.ts │ │ ├── sushi │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── sushiDataActionProvider.ts │ │ │ ├── sushiDataSchemas.ts │ │ │ ├── sushiRouterActionProvider.test.ts │ │ │ ├── sushiRouterActionProvider.ts │ │ │ └── sushiRouterSchemas.ts │ │ ├── truemarkets │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── truemarketsActionProvider.test.ts │ │ │ ├── truemarketsActionProvider.ts │ │ │ └── utils.ts │ │ ├── twitter │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── twitterActionProvider.test.ts │ │ │ └── twitterActionProvider.ts │ │ ├── vaultsfyi │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ ├── actions.ts │ │ │ │ ├── historicalData.ts │ │ │ │ ├── types.ts │ │ │ │ └── vaults.ts │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── utils.ts │ │ │ ├── vaultsfyiActionProvider.test.ts │ │ │ └── vaultsfyiActionProvider.ts │ │ ├── wallet │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── walletActionProvider.test.ts │ │ │ └── walletActionProvider.ts │ │ ├── weth │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── wethActionProvider.test.ts │ │ │ └── wethActionProvider.ts │ │ ├── wow │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── uniswap │ │ │ │ ├── constants.ts │ │ │ │ └── utils.ts │ │ │ ├── utils.ts │ │ │ ├── wowActionProvider.test.ts │ │ │ └── wowActionProvider.ts │ │ ├── x402 │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── utils.ts │ │ │ ├── x402ActionProvider.test.ts │ │ │ └── x402ActionProvider.ts │ │ ├── yelay │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ ├── yelayActionProvider.test.ts │ │ │ └── yelayActionProvider.ts │ │ ├── zerion │ │ │ ├── README.md │ │ │ ├── constants.ts │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ ├── zerionActionProvider.test.ts │ │ │ └── zerionActionProvider.ts │ │ ├── zeroX │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── utils.ts │ │ │ ├── zeroXActionProvider.test.ts │ │ │ └── zeroXActionProvider.ts │ │ ├── zerodev │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── zeroDevWalletActionProvider.test.ts │ │ │ └── zeroDevWalletActionProvider.ts │ │ └── zora │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ ├── schemas.ts │ │ │ ├── utils.ts │ │ │ ├── zoraActionProvider.test.ts │ │ │ └── zoraActionProvider.ts │ ├── agentkit.ts │ ├── analytics │ │ ├── index.ts │ │ └── sendAnalyticsEvent.ts │ ├── index.ts │ ├── network │ │ ├── index.ts │ │ ├── network.ts │ │ ├── svm.ts │ │ └── types.ts │ ├── utils.test.ts │ ├── utils.ts │ └── wallet-providers │ │ ├── cdpEvmWalletProvider.test.ts │ │ ├── cdpEvmWalletProvider.ts │ │ ├── cdpShared.ts │ │ ├── cdpSmartWalletProvider.test.ts │ │ ├── cdpSmartWalletProvider.ts │ │ ├── cdpSolanaWalletProvider.test.ts │ │ ├── cdpSolanaWalletProvider.ts │ │ ├── evmWalletProvider.test.ts │ │ ├── evmWalletProvider.ts │ │ ├── index.ts │ │ ├── legacyCdpSmartWalletProvider.test.ts │ │ ├── legacyCdpSmartWalletProvider.ts │ │ ├── legacyCdpWalletProvider.test.ts │ │ ├── legacyCdpWalletProvider.ts │ │ ├── privyEvmDelegatedEmbeddedWalletProvider.test.ts │ │ ├── privyEvmDelegatedEmbeddedWalletProvider.ts │ │ ├── privyEvmWalletProvider.test.ts │ │ ├── privyEvmWalletProvider.ts │ │ ├── privyShared.ts │ │ ├── privySvmWalletProvider.test.ts │ │ ├── privySvmWalletProvider.ts │ │ ├── privyWalletProvider.test.ts │ │ ├── privyWalletProvider.ts │ │ ├── solanaKeypairWalletProvider.test.ts │ │ ├── solanaKeypairWalletProvider.ts │ │ ├── svmWalletProvider.test.ts │ │ ├── svmWalletProvider.ts │ │ ├── viemWalletProvider.test.ts │ │ ├── viemWalletProvider.ts │ │ ├── walletProvider.test.ts │ │ ├── walletProvider.ts │ │ ├── zeroDevWalletProvider.test.ts │ │ └── zeroDevWalletProvider.ts └── tsconfig.json ├── create-onchain-agent ├── .eslintrc.json ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ ├── actions │ │ ├── createActionProvider.ts │ │ ├── createAgent.ts │ │ ├── createWalletProvider.ts │ │ ├── initProject.ts │ │ └── prepareAgentkit.ts │ ├── common │ │ ├── constants.ts │ │ ├── fileSystem.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── create.ts │ └── generate.ts ├── templates │ ├── actionProvider │ │ ├── actionProvider.njk │ │ └── schema.njk │ ├── createAgent │ │ └── framework │ │ │ ├── langchain │ │ │ └── createAgent.ts │ │ │ └── vercelAISDK │ │ │ └── createAgent.ts │ ├── mcp │ │ ├── .gitignore │ │ ├── README.md │ │ ├── _gitignore │ │ ├── package.json │ │ ├── src │ │ │ ├── agentkit │ │ │ │ ├── custom-emv │ │ │ │ │ └── viem │ │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ │ └── getAgentKit.ts │ │ │ │ ├── evm │ │ │ │ │ ├── cdp │ │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ │ └── getAgentKit.ts │ │ │ │ │ ├── privy │ │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ │ └── getAgentKit.ts │ │ │ │ │ ├── smart │ │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ │ └── getAgentKit.ts │ │ │ │ │ └── viem │ │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ │ └── getAgentKit.ts │ │ │ │ └── svm │ │ │ │ │ ├── cdp │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ └── getAgentKit.ts │ │ │ │ │ ├── privy │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ └── getAgentKit.ts │ │ │ │ │ └── solana-keypair │ │ │ │ │ ├── claude_desktop_config.json │ │ │ │ │ └── getAgentKit.ts │ │ │ ├── getAgentKit.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── tsup.config.ts │ ├── next │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .yarnrc.yml │ │ ├── README.md │ │ ├── _gitignore │ │ ├── app │ │ │ ├── api │ │ │ │ └── agent │ │ │ │ │ ├── agentkit │ │ │ │ │ ├── custom-evm │ │ │ │ │ │ └── viem │ │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ ├── evm │ │ │ │ │ │ ├── cdp │ │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ │ ├── privy │ │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ │ ├── smart │ │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ │ └── viem │ │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ └── svm │ │ │ │ │ │ ├── cdp │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ │ ├── privy │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ │ └── solanaKeypair │ │ │ │ │ │ └── prepare-agentkit.ts │ │ │ │ │ └── framework │ │ │ │ │ ├── langchain │ │ │ │ │ ├── create-agent.ts │ │ │ │ │ ├── prepare-agentkit.ts │ │ │ │ │ └── route.ts │ │ │ │ │ └── vercel-ai-sdk │ │ │ │ │ ├── create-agent.ts │ │ │ │ │ ├── prepare-agentkit.ts │ │ │ │ │ └── route.ts │ │ │ ├── globals.css │ │ │ ├── hooks │ │ │ │ └── useAgent.ts │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── types │ │ │ │ └── api.ts │ │ ├── next.config.js │ │ ├── package.json │ │ ├── postcss.config.mjs │ │ ├── tailwind.config.ts │ │ └── tsconfig.json │ ├── prepareAgentkit │ │ └── agentkit │ │ │ ├── customEvm │ │ │ └── viem │ │ │ │ └── prepareAgentkit.ts │ │ │ ├── evm │ │ │ ├── cdp │ │ │ │ └── prepareAgentkit.ts │ │ │ ├── privy │ │ │ │ └── prepareAgentkit.ts │ │ │ ├── smart │ │ │ │ └── prepareAgentkit.ts │ │ │ └── viem │ │ │ │ └── prepareAgentkit.ts │ │ │ └── svm │ │ │ ├── cdp │ │ │ └── prepareAgentkit.ts │ │ │ ├── privy │ │ │ └── prepareAgentkit.ts │ │ │ └── solanaKeypair │ │ │ └── prepareAgentkit.ts │ └── walletProvider │ │ └── walletProvider.njk ├── tsconfig.build.json └── tsconfig.json ├── examples ├── langchain-cdp-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-cdp-smart-wallet-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-farcaster-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-legacy-cdp-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-privy-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-solana-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-twitter-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── langchain-xmtp-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ ├── scripts │ │ └── generate-keys.ts │ └── tsconfig.json ├── langchain-zerodev-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── model-context-protocol-smart-wallet-server │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── claude_desktop_config.json │ ├── index.ts │ ├── package.json │ └── tsconfig.json └── vercel-ai-sdk-smart-wallet-chatbot │ ├── .env-local │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── chatbot.ts │ ├── package.json │ └── tsconfig.json ├── framework-extensions ├── langchain │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── setup-jest.js │ ├── src │ │ ├── index.test.ts │ │ └── index.ts │ └── tsconfig.json ├── model-context-protocol │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── setup-jest.js │ ├── src │ │ ├── index.test.ts │ │ └── index.ts │ └── tsconfig.json └── vercel-ai-sdk │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc │ ├── CHANGELOG.md │ ├── README.md │ ├── jest.config.cjs │ ├── package.json │ ├── setup-jest.js │ ├── src │ ├── getVercelAiTools.test.ts │ ├── getVercelAiTools.ts │ └── index.ts │ └── tsconfig.json ├── jest.config.base.cjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tsconfig.base.json └── turbo.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish_nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_nightly.yml -------------------------------------------------------------------------------- /.github/workflows/publish_npm_manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_npm_manual.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit_autogen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit_autogen.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit_langchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit_langchain.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit_openai_agents_sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit_openai_agents_sdk.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit_pydantic_ai.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit_pydantic_ai.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_coinbase_agentkit_strands_agents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_coinbase_agentkit_strands_agents.yml -------------------------------------------------------------------------------- /.github/workflows/publish_pypi_create_onchain_agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/publish_pypi_create_onchain_agent.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.github/workflows/version_publish_npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.github/workflows/version_publish_npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING-PYTHON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/CONTRIBUTING-PYTHON.md -------------------------------------------------------------------------------- /CONTRIBUTING-TYPESCRIPT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/CONTRIBUTING-TYPESCRIPT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WISHLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/WISHLIST.md -------------------------------------------------------------------------------- /agent_k.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/agent_k.webp -------------------------------------------------------------------------------- /agentkit_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/agentkit_banner.png -------------------------------------------------------------------------------- /assets/frameworks/eliza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/eliza.svg -------------------------------------------------------------------------------- /assets/frameworks/langchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/langchain.svg -------------------------------------------------------------------------------- /assets/frameworks/modelcontextprotocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/modelcontextprotocol.svg -------------------------------------------------------------------------------- /assets/frameworks/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/openai.svg -------------------------------------------------------------------------------- /assets/frameworks/strands-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/strands-logo.svg -------------------------------------------------------------------------------- /assets/frameworks/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/frameworks/vercel.svg -------------------------------------------------------------------------------- /assets/networks/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/networks/base.svg -------------------------------------------------------------------------------- /assets/networks/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/networks/ethereum.svg -------------------------------------------------------------------------------- /assets/networks/solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/networks/solana.svg -------------------------------------------------------------------------------- /assets/protocols/aerodrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/aerodrome.svg -------------------------------------------------------------------------------- /assets/protocols/alchemy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/alchemy.svg -------------------------------------------------------------------------------- /assets/protocols/allora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/allora.svg -------------------------------------------------------------------------------- /assets/protocols/compound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/compound.svg -------------------------------------------------------------------------------- /assets/protocols/defillama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/defillama.svg -------------------------------------------------------------------------------- /assets/protocols/farcaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/farcaster.svg -------------------------------------------------------------------------------- /assets/protocols/hyperbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/hyperbolic.svg -------------------------------------------------------------------------------- /assets/protocols/jupiter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/jupiter.svg -------------------------------------------------------------------------------- /assets/protocols/moonwell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/moonwell.svg -------------------------------------------------------------------------------- /assets/protocols/morpho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/morpho.svg -------------------------------------------------------------------------------- /assets/protocols/opensea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/opensea.svg -------------------------------------------------------------------------------- /assets/protocols/pyth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/pyth.svg -------------------------------------------------------------------------------- /assets/protocols/superfluid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/superfluid.svg -------------------------------------------------------------------------------- /assets/protocols/zora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/protocols/zora.svg -------------------------------------------------------------------------------- /assets/wallets/coinbase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/wallets/coinbase.svg -------------------------------------------------------------------------------- /assets/wallets/privy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/wallets/privy.svg -------------------------------------------------------------------------------- /assets/wallets/viem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/assets/wallets/viem.svg -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/README.md -------------------------------------------------------------------------------- /python/coinbase-agentkit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/CHANGELOG.md -------------------------------------------------------------------------------- /python/coinbase-agentkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/Makefile -------------------------------------------------------------------------------- /python/coinbase-agentkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/README.md -------------------------------------------------------------------------------- /python/coinbase-agentkit/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/changelog.d/add-aave-action-provider.feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/changelog.d/add-aave-action-provider.feature.md -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/__init__.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.7.4" 2 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/action_providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/action_providers/__init__.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/action_providers/aave/__init__.py: -------------------------------------------------------------------------------- 1 | """Aave action provider for lending and borrowing.""" 2 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/action_providers/nillion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/action_providers/superfluid/__init__.py: -------------------------------------------------------------------------------- 1 | """Superfluid action provider for streaming payments.""" 2 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/action_providers/wow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/action_providers/wow/utils.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/agentkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/agentkit.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/analytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/analytics/__init__.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/network.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/network/__init__.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/network/chain_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/network/chain_definitions.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/network/network.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/validators/__init__.py: -------------------------------------------------------------------------------- 1 | """Schema validators for AgentKit.""" 2 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/validators/eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/validators/eth.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/coinbase_agentkit/wallet_providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/coinbase_agentkit/wallet_providers/__init__.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/Makefile -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.cdp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.cdp.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.wow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.action_providers.wow.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.analytics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.analytics.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.network.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.validators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.validators.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/coinbase_agentkit.wallet_providers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/coinbase_agentkit.wallet_providers.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/conf.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/index.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/make.bat -------------------------------------------------------------------------------- /python/coinbase-agentkit/docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/docs/modules.rst -------------------------------------------------------------------------------- /python/coinbase-agentkit/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/pyproject.toml -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/aave/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/aave/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/aave/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/aave/test_aave_supply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/aave/test_aave_supply.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/basename/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/basename/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/basename/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/cdp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/cdp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/cdp/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/compound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/compound/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/compound/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/erc20/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/erc20/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/erc20/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/erc721/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/erc721/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/erc721/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/ai/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/ai/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/billing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/billing/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/marketplace/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/settings/e2e/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/hyperboliclabs/test_hyperbolic_action_provider.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/morpho/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/nillion/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/nillion/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/onramp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/onramp/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/onramp/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/pyth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_add_host_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_add_host_key.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_connection.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_disconnect.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_download.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_execute.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_keys.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_params.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_remote_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_remote_shell.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_sftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_sftp.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_ssh_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_ssh_connect.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_status.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/ssh/test_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/ssh/test_upload.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/twitter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/twitter/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/twitter/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wallet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wallet/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/wallet/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/weth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/weth/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/weth/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/weth/test_wrap_eth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/weth/test_wrap_eth.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wow/test_buy_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/wow/test_buy_token.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wow/test_create_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/wow/test_create_token.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/wow/test_sell_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/wow/test_sell_token.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/x402/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/action_providers/x402/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/action_providers/x402/conftest.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/cdp_evm_server_wallet_provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/cdp_evm_smart_wallet_provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/cdp_solana_wallet_provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/eth_account_wallet_provider/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/coinbase-agentkit/tests/wallet_providers/test_wallet_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/tests/wallet_providers/test_wallet_provider.py -------------------------------------------------------------------------------- /python/coinbase-agentkit/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/coinbase-agentkit/uv.lock -------------------------------------------------------------------------------- /python/create-onchain-agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/CHANGELOG.md -------------------------------------------------------------------------------- /python/create-onchain-agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/Makefile -------------------------------------------------------------------------------- /python/create-onchain-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/README.md -------------------------------------------------------------------------------- /python/create-onchain-agent/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /python/create-onchain-agent/create_onchain_agent/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/create_onchain_agent/cli.py -------------------------------------------------------------------------------- /python/create-onchain-agent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/pyproject.toml -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/.env.local.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/.env.local.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/.gitignore -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/README.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/README.md.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/chatbot.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/chatbot.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/copier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/copier.yml -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/initialize_agent.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/initialize_agent.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/pyproject.toml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/pyproject.toml.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/beginner/setup.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/beginner/setup.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/.env.local.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/.env.local.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/.gitignore -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/README.md.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/README.md.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/chatbot.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/chatbot.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/copier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/copier.yml -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/initialize_agent.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/initialize_agent.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/pyproject.toml.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/pyproject.toml.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/templates/chatbot/setup.py.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/templates/chatbot/setup.py.jinja -------------------------------------------------------------------------------- /python/create-onchain-agent/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/create-onchain-agent/uv.lock -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/autogen-cdp-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/autogen-cdp-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/README.md -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot-with-amazon-bedrock/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot-with-amazon-bedrock/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-cdp-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-cdp-smart-wallet-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-smart-wallet-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-cdp-solana-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-cdp-solana-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-eth-account-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-eth-account-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-nillion-secretvault-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-nillion-secretvault-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/langchain-twitter-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/langchain-twitter-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/main.py -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/my_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/my_workflow.py -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-cdp-voice-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-cdp-voice-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/openai-agents-sdk-smart-wallet-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/openai-agents-sdk-smart-wallet-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/initialize_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/initialize_agent.py -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/setup.py -------------------------------------------------------------------------------- /python/examples/pydantic-ai-cdp-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/pydantic-ai-cdp-chatbot/uv.lock -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/.env.local -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/Makefile -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/README.md -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/chatbot.py -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/pyproject.toml -------------------------------------------------------------------------------- /python/examples/strands-agents-cdp-server-chatbot/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/examples/strands-agents-cdp-server-chatbot/uv.lock -------------------------------------------------------------------------------- /python/framework-extensions/autogen/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/CHANGELOG.md -------------------------------------------------------------------------------- /python/framework-extensions/autogen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/autogen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/README.md -------------------------------------------------------------------------------- /python/framework-extensions/autogen/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /python/framework-extensions/autogen/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/pyproject.toml -------------------------------------------------------------------------------- /python/framework-extensions/autogen/tests/autogen_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/framework-extensions/autogen/tests/autogen_tools/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/tests/autogen_tools/conftest.py -------------------------------------------------------------------------------- /python/framework-extensions/autogen/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/tests/conftest.py -------------------------------------------------------------------------------- /python/framework-extensions/autogen/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/autogen/uv.lock -------------------------------------------------------------------------------- /python/framework-extensions/langchain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/CHANGELOG.md -------------------------------------------------------------------------------- /python/framework-extensions/langchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/langchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/README.md -------------------------------------------------------------------------------- /python/framework-extensions/langchain/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /python/framework-extensions/langchain/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/docs/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/langchain/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/docs/conf.py -------------------------------------------------------------------------------- /python/framework-extensions/langchain/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/docs/index.rst -------------------------------------------------------------------------------- /python/framework-extensions/langchain/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/docs/make.bat -------------------------------------------------------------------------------- /python/framework-extensions/langchain/docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/docs/modules.rst -------------------------------------------------------------------------------- /python/framework-extensions/langchain/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/pyproject.toml -------------------------------------------------------------------------------- /python/framework-extensions/langchain/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/langchain/uv.lock -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/README.md -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/pyproject.toml -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/tests/conftest.py -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/tests/openai_agents_sdk_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/framework-extensions/openai-agents-sdk/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/openai-agents-sdk/uv.lock -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/CHANGELOG.md -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/README.md -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/changelog.d/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/pyproject.toml -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/tests/conftest.py -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/tests/pydantic_ai_tools/__init__.py: -------------------------------------------------------------------------------- 1 | """Test package for PydanticAI tools.""" 2 | -------------------------------------------------------------------------------- /python/framework-extensions/pydantic-ai/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/pydantic-ai/uv.lock -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/CHANGELOG.md -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/README.md -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/docs/Makefile -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/docs/conf.py -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/docs/index.rst -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/docs/make.bat -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/docs/modules.rst -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/pyproject.toml -------------------------------------------------------------------------------- /python/framework-extensions/strands-agents/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/framework-extensions/strands-agents/uv.lock -------------------------------------------------------------------------------- /python/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/README.md -------------------------------------------------------------------------------- /python/scripts/get_packages_to_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/get_packages_to_tag.py -------------------------------------------------------------------------------- /python/scripts/sync_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/sync_examples.sh -------------------------------------------------------------------------------- /python/scripts/sync_framework_extensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/sync_framework_extensions.sh -------------------------------------------------------------------------------- /python/scripts/test/test_phase_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/test/test_phase_1.sh -------------------------------------------------------------------------------- /python/scripts/test/test_phase_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/test/test_phase_2.sh -------------------------------------------------------------------------------- /python/scripts/test/test_phase_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/test/test_phase_3.sh -------------------------------------------------------------------------------- /python/scripts/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/__init__.py -------------------------------------------------------------------------------- /python/scripts/utils/calculate_dependency_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/calculate_dependency_range.py -------------------------------------------------------------------------------- /python/scripts/utils/dependency_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/dependency_version.py -------------------------------------------------------------------------------- /python/scripts/utils/detect_new_version_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/detect_new_version_type.py -------------------------------------------------------------------------------- /python/scripts/utils/determine_new_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/determine_new_version.py -------------------------------------------------------------------------------- /python/scripts/utils/package_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/package_definitions.py -------------------------------------------------------------------------------- /python/scripts/utils/process_package_dependency_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/process_package_dependency_versions.py -------------------------------------------------------------------------------- /python/scripts/utils/process_package_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/process_package_versions.py -------------------------------------------------------------------------------- /python/scripts/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/utils/version.py -------------------------------------------------------------------------------- /python/scripts/version_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_core.py -------------------------------------------------------------------------------- /python/scripts/version_frameworks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_frameworks.py -------------------------------------------------------------------------------- /python/scripts/version_frameworks_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_frameworks_dependencies.py -------------------------------------------------------------------------------- /python/scripts/version_phase_1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_phase_1.sh -------------------------------------------------------------------------------- /python/scripts/version_phase_2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_phase_2.sh -------------------------------------------------------------------------------- /python/scripts/version_phase_3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_phase_3.sh -------------------------------------------------------------------------------- /python/scripts/version_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_utilities.py -------------------------------------------------------------------------------- /python/scripts/version_utilities_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/python/scripts/version_utilities_dependencies.py -------------------------------------------------------------------------------- /typescript/.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/README.md -------------------------------------------------------------------------------- /typescript/.changeset/bitter-pugs-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/bitter-pugs-flow.md -------------------------------------------------------------------------------- /typescript/.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/config.json -------------------------------------------------------------------------------- /typescript/.changeset/cute-grapes-lie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/cute-grapes-lie.md -------------------------------------------------------------------------------- /typescript/.changeset/hungry-loops-hang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/hungry-loops-hang.md -------------------------------------------------------------------------------- /typescript/.changeset/red-goats-camp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.changeset/red-goats-camp.md -------------------------------------------------------------------------------- /typescript/.eslintrc.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.eslintrc.base.json -------------------------------------------------------------------------------- /typescript/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.prettierignore -------------------------------------------------------------------------------- /typescript/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/.prettierrc -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/agentkit/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/.eslintrc.json -------------------------------------------------------------------------------- /typescript/agentkit/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/.prettierignore -------------------------------------------------------------------------------- /typescript/agentkit/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/.prettierrc -------------------------------------------------------------------------------- /typescript/agentkit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/CHANGELOG.md -------------------------------------------------------------------------------- /typescript/agentkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/README.md -------------------------------------------------------------------------------- /typescript/agentkit/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/jest.config.cjs -------------------------------------------------------------------------------- /typescript/agentkit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/package.json -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/README.md -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/args.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/config.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/main.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/prompts.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/templates/schemas.ts.template: -------------------------------------------------------------------------------- 1 | {% include "schemas/default.ts.template" %} 2 | -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/scripts/generate-action-provider/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/scripts/generate-action-provider/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/setup-jest.js: -------------------------------------------------------------------------------- 1 | jest.mock("jose", () => ({})); 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/across/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/acrossActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/across/acrossActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/constants.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./acrossActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/across/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/across/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/across/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/actionDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/actionDecorator.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/actionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/actionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/alchemy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/alchemy/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/alchemy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/alchemy/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/alchemy/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/alchemy/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/allora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/allora/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/allora/alloraActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/allora/alloraActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/allora/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/allora/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/allora/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/allora/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/baseAccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/baseAccount/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/baseAccount/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/baseAccount/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/baseAccount/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/baseAccount/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/baseAccount/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/baseAccount/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/baseAccount/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/baseAccount/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/basename/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/basename/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/basename/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/basename/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/basename/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/basename/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/basename/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/basename/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp-legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp-legacy/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp-legacy/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp-legacy/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp-legacy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp-legacy/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp-legacy/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp-legacy/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/cdpApiActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/cdpApiActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/faucetUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/faucetUtils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/spendPermissionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/spendPermissionUtils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/cdp/swapUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/cdp/swapUtils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/clanker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/clanker/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/clanker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/clanker/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/clanker/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/clanker/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/clanker/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/clanker/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/compound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/compound/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/compound/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/compound/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/compound/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./compoundActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/compound/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/compound/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/compound/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/compound/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/customActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/customActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./defillamaActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/utils.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/defillama/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/defillama/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/enso/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/enso/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/ensoActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/enso/ensoActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/ensoActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/enso/ensoActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ensoActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/enso/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/enso/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc20/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc20/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/erc20ActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc20/erc20ActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./erc20ActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc20/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc20/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc20/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc721/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc721/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc721/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc721/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc721/erc721ActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc721/erc721ActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc721/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./erc721ActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/erc721/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/erc721/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/farcaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/farcaster/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/farcaster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/farcaster/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/farcaster/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/farcaster/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/client_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/client_utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/metadata_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/metadata_utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/swap_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/swap_utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/flaunch/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/flaunch/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/jupiter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/jupiter/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/jupiter/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./jupiterActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/jupiter/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/jupiter/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/messari/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/messari/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/moonwell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/moonwell/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/moonwell/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/moonwell/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/moonwell/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/moonwell/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/moonwell/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/moonwell/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/morpho/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/morpho/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/morpho/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/morpho/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/morpho/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/morpho/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/morpho/morphoActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/morpho/morphoActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/morpho/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/morpho/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/onrampActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/onrampActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/onramp/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/onramp/version.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/opensea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/opensea/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/opensea/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./openseaActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/opensea/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/opensea/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/opensea/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/opensea/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/pyth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/pyth/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/pyth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/pyth/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/pyth/pythActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/pyth/pythActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/pyth/pythActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/pyth/pythActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/pyth/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/pyth/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/spl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/spl/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/spl/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./splActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/spl/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/spl/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/spl/splActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/spl/splActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/spl/splActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/spl/splActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/superfluid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/superfluid/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/superfluid/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/superfluid/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/superfluid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/superfluid/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/superfluid/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/superfluid/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/superfluid/utils/parseLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/superfluid/utils/parseLogs.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/sushi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/sushi/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/sushi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/sushi/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/sushi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/sushi/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/sushi/sushiDataSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/sushi/sushiDataSchemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/sushi/sushiRouterSchemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/sushi/sushiRouterSchemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/truemarkets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/truemarkets/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/truemarkets/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/truemarkets/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/truemarkets/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./truemarketsActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/truemarkets/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/truemarkets/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/truemarkets/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/truemarkets/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/twitter/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/twitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/twitter/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/twitter/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/twitter/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/api/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/api/actions.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/api/historicalData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/api/historicalData.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/api/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/api/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/api/vaults.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/vaultsfyi/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/vaultsfyi/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wallet/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wallet/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./walletActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wallet/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wallet/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wallet/walletActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wallet/walletActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/weth/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/weth/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./wethActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/weth/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/wethActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/weth/wethActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/weth/wethActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/weth/wethActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/uniswap/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/uniswap/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/uniswap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/uniswap/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/wowActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/wowActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/wow/wowActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/wow/wowActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/x402/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./x402ActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/x402/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/x402/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/x402ActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/x402/x402ActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/x402/x402ActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/x402/x402ActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/constants.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/yelay/yelayActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/yelay/yelayActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/constants.ts: -------------------------------------------------------------------------------- 1 | export const ZERION_V1_BASE_URL = "https://api.zerion.io/v1"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerion/zerionActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerion/zerionActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zeroX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zeroX/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zeroX/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./zeroXActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zeroX/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zeroX/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zeroX/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zeroX/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zeroX/zeroXActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zeroX/zeroXActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerodev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerodev/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerodev/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./zeroDevWalletActionProvider"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zerodev/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zerodev/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/README.md -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/schemas.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/zoraActionProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/zoraActionProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/action-providers/zora/zoraActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/action-providers/zora/zoraActionProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/agentkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/agentkit.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/analytics/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./sendAnalyticsEvent"; 2 | -------------------------------------------------------------------------------- /typescript/agentkit/src/analytics/sendAnalyticsEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/analytics/sendAnalyticsEvent.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/network/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/network/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/network/network.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/network/svm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/network/svm.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/network/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/network/types.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/utils.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/utils.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpEvmWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpEvmWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpEvmWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpEvmWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpShared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpShared.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpSmartWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpSmartWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpSmartWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpSmartWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpSolanaWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpSolanaWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/cdpSolanaWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/cdpSolanaWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/evmWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/evmWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/evmWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/evmWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/index.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/legacyCdpSmartWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/legacyCdpSmartWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/legacyCdpWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/legacyCdpWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/legacyCdpWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/legacyCdpWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privyEvmWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privyEvmWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privyEvmWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privyEvmWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privyShared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privyShared.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privySvmWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privySvmWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privySvmWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privySvmWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privyWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privyWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/privyWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/privyWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/solanaKeypairWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/solanaKeypairWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/svmWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/svmWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/svmWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/svmWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/viemWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/viemWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/viemWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/viemWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/walletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/walletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/walletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/walletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/zeroDevWalletProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/zeroDevWalletProvider.test.ts -------------------------------------------------------------------------------- /typescript/agentkit/src/wallet-providers/zeroDevWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/src/wallet-providers/zeroDevWalletProvider.ts -------------------------------------------------------------------------------- /typescript/agentkit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/agentkit/tsconfig.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/.eslintrc.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/.npmignore: -------------------------------------------------------------------------------- 1 | # Source 2 | src/** 3 | ./node_modules/ 4 | __tests__/** -------------------------------------------------------------------------------- /typescript/create-onchain-agent/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/.prettierignore -------------------------------------------------------------------------------- /typescript/create-onchain-agent/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/.prettierrc -------------------------------------------------------------------------------- /typescript/create-onchain-agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/CHANGELOG.md -------------------------------------------------------------------------------- /typescript/create-onchain-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/README.md -------------------------------------------------------------------------------- /typescript/create-onchain-agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/package.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/actions/createActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/actions/createActionProvider.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/actions/createAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/actions/createAgent.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/actions/createWalletProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/actions/createWalletProvider.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/actions/initProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/actions/initProject.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/actions/prepareAgentkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/actions/prepareAgentkit.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/common/constants.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/common/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/common/fileSystem.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/common/types.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/common/utils.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/create.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/src/generate.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/actionProvider/schema.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/actionProvider/schema.njk -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | build -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/README.md -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env* 3 | build -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/package.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/src/getAgentKit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/src/getAgentKit.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/src/index.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/tsconfig.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/mcp/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/mcp/tsup.config.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/.eslintrc.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/.gitignore -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/.yarnrc.yml -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/README.md -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/_gitignore -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/app/globals.css -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/app/hooks/useAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/app/hooks/useAgent.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/app/layout.tsx -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/app/page.tsx -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/app/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/app/types/api.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/next.config.js -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/package.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/postcss.config.mjs -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/tailwind.config.ts -------------------------------------------------------------------------------- /typescript/create-onchain-agent/templates/next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/templates/next/tsconfig.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/tsconfig.build.json -------------------------------------------------------------------------------- /typescript/create-onchain-agent/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/create-onchain-agent/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-cdp-smart-wallet-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-cdp-smart-wallet-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-farcaster-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-farcaster-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-legacy-cdp-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-legacy-cdp-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-privy-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-privy-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-solana-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-solana-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-twitter-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-twitter-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/.gitignore: -------------------------------------------------------------------------------- 1 | xmtp*.db3* 2 | .data -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/scripts/generate-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/scripts/generate-keys.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-xmtp-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-xmtp-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/langchain-zerodev-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/langchain-zerodev-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.env-local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.env-local -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.eslintrc.json -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.prettierignore -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/.prettierrc -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/README.md -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/chatbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/chatbot.ts -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/package.json -------------------------------------------------------------------------------- /typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/examples/vercel-ai-sdk-smart-wallet-chatbot/tsconfig.json -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/.eslintrc.json -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/.prettierignore -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/.prettierrc -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/CHANGELOG.md -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/README.md -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/jest.config.cjs -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/package.json -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/setup-jest.js: -------------------------------------------------------------------------------- 1 | jest.mock("jose", () => ({})); 2 | -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/src/index.test.ts -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/src/index.ts -------------------------------------------------------------------------------- /typescript/framework-extensions/langchain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/langchain/tsconfig.json -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/.eslintrc.json -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/.prettierignore -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/.prettierrc -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/CHANGELOG.md -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/README.md -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/jest.config.cjs -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/package.json -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/setup-jest.js: -------------------------------------------------------------------------------- 1 | jest.mock("jose", () => ({})); 2 | -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/src/index.ts -------------------------------------------------------------------------------- /typescript/framework-extensions/model-context-protocol/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/model-context-protocol/tsconfig.json -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/.eslintrc.json -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/.prettierignore -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/.prettierrc -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/CHANGELOG.md -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/README.md -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/jest.config.cjs -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/package.json -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/setup-jest.js: -------------------------------------------------------------------------------- 1 | jest.mock("jose", () => ({})); 2 | -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/src/getVercelAiTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/src/getVercelAiTools.ts -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./getVercelAiTools"; 2 | -------------------------------------------------------------------------------- /typescript/framework-extensions/vercel-ai-sdk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/framework-extensions/vercel-ai-sdk/tsconfig.json -------------------------------------------------------------------------------- /typescript/jest.config.base.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/jest.config.base.cjs -------------------------------------------------------------------------------- /typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/package.json -------------------------------------------------------------------------------- /typescript/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/pnpm-lock.yaml -------------------------------------------------------------------------------- /typescript/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/pnpm-workspace.yaml -------------------------------------------------------------------------------- /typescript/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/tsconfig.base.json -------------------------------------------------------------------------------- /typescript/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coinbase/agentkit/HEAD/typescript/turbo.json --------------------------------------------------------------------------------