├── .env.example ├── .github ├── CODEOWNERS └── workflows │ ├── benchmarks.yaml │ ├── cd.dev-agent.yaml │ ├── cd.prod-agent.yaml │ ├── cd.pypi.yaml │ └── ci.yaml ├── .gitignore ├── API.md ├── Biconomy.md ├── Dockerfile ├── LICENSE ├── README.md ├── autotx ├── AutoTx.py ├── __init__.py ├── agents │ ├── DelegateResearchTokensAgent.py │ ├── ExampleAgent.py │ ├── ResearchTokensAgent.py │ ├── SendTokensAgent.py │ ├── SwapTokensAgent.py │ └── __init__.py ├── autotx_agent.py ├── autotx_tool.py ├── build_check.py ├── chain_fork.py ├── cli.py ├── db.py ├── eth_address.py ├── get_env_vars.py ├── helper_agents │ ├── __init__.py │ ├── clarifier.py │ ├── manager.py │ └── user_proxy.py ├── intents.py ├── load_tokens.py ├── models.py ├── server.py ├── setup.py ├── smart_account_api.py ├── smart_accounts │ ├── api_smart_account.py │ ├── local_biconomy_smart_account.py │ ├── safe_smart_account.py │ └── smart_account.py ├── task_logs.py ├── tests │ ├── agents │ │ ├── regression │ │ │ └── token │ │ │ │ └── test_tokens_regression.py │ │ └── token │ │ │ ├── research │ │ │ ├── test_advanced.py │ │ │ ├── test_research.py │ │ │ ├── test_research_and_swap.py │ │ │ └── test_research_swap_and_send.py │ │ │ ├── send │ │ │ └── test_send.py │ │ │ ├── test_swap.py │ │ │ └── test_swap_and_send.py │ ├── api │ │ ├── test_connect.py │ │ ├── test_send_transactions.py │ │ └── test_tasks.py │ ├── conftest.py │ └── integration │ │ └── test_swap.py ├── token.py ├── transactions.py └── utils │ ├── LlamaClient.py │ ├── __init__.py │ ├── color.py │ ├── configuration.py │ ├── constants.py │ ├── dump_pydantic_list.py │ ├── ethereum │ ├── SafeManager.py │ ├── __init__.py │ ├── agent_account.py │ ├── build_approve_erc20.py │ ├── build_transfer_erc20.py │ ├── build_transfer_native.py │ ├── cache.py │ ├── cached_safe_address.py │ ├── chain_short_names.py │ ├── constants.py │ ├── deploy_multicall.py │ ├── deploy_safe_with_create2.py │ ├── erc20_abi.py │ ├── get_erc20_balance.py │ ├── get_erc20_info.py │ ├── get_native_balance.py │ ├── helpers │ │ ├── fill_dev_account_with_tokens.py │ │ ├── get_dev_account.py │ │ ├── get_native_token_symbol.py │ │ ├── show_address_balances.py │ │ ├── swap_from_eoa.py │ │ └── token_list.py │ ├── is_valid_safe.py │ ├── lifi │ │ ├── __init__.py │ │ └── swap.py │ ├── networks.py │ ├── send_native.py │ ├── send_tx.py │ ├── transfer_erc20.py │ └── weth_abi.py │ ├── format_amount.py │ ├── is_dev_env.py │ └── logging │ ├── IOSilent.py │ ├── Logger.py │ └── TeeStream.py ├── benchmarks.json ├── benchmarks.py ├── docs └── img │ ├── banner.png │ ├── demo-multi-step.gif │ └── diagram.png ├── fork.Dockerfile ├── poetry.lock ├── pyproject.toml ├── smart-account-api.Dockerfile ├── smart_account_api ├── .nvmrc ├── package.json ├── src │ ├── account-abstraction.ts │ ├── constants.ts │ ├── index.ts │ └── networks.ts ├── tsconfig.json └── yarn.lock └── supabase ├── .gitignore ├── config.toml ├── migrations ├── 20240606183512_init.sql ├── 20240611191742_task-error.sql ├── 20240614104522_intents.sql ├── 20240617165316_submitting-txs.sql ├── 20240626194330_errors-and-logs.sql └── 20240702110412_feedback.sql └── seed.sql /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | cbrzn 2 | nerfZael 3 | dOrgJelli 4 | namesty 5 | -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.github/workflows/benchmarks.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.dev-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.github/workflows/cd.dev-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.prod-agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.github/workflows/cd.prod-agent.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.github/workflows/cd.pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/API.md -------------------------------------------------------------------------------- /Biconomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/Biconomy.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/README.md -------------------------------------------------------------------------------- /autotx/AutoTx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/AutoTx.py -------------------------------------------------------------------------------- /autotx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/__init__.py -------------------------------------------------------------------------------- /autotx/agents/DelegateResearchTokensAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/agents/DelegateResearchTokensAgent.py -------------------------------------------------------------------------------- /autotx/agents/ExampleAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/agents/ExampleAgent.py -------------------------------------------------------------------------------- /autotx/agents/ResearchTokensAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/agents/ResearchTokensAgent.py -------------------------------------------------------------------------------- /autotx/agents/SendTokensAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/agents/SendTokensAgent.py -------------------------------------------------------------------------------- /autotx/agents/SwapTokensAgent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/agents/SwapTokensAgent.py -------------------------------------------------------------------------------- /autotx/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotx/autotx_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/autotx_agent.py -------------------------------------------------------------------------------- /autotx/autotx_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/autotx_tool.py -------------------------------------------------------------------------------- /autotx/build_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/build_check.py -------------------------------------------------------------------------------- /autotx/chain_fork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/chain_fork.py -------------------------------------------------------------------------------- /autotx/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/cli.py -------------------------------------------------------------------------------- /autotx/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/db.py -------------------------------------------------------------------------------- /autotx/eth_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/eth_address.py -------------------------------------------------------------------------------- /autotx/get_env_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/get_env_vars.py -------------------------------------------------------------------------------- /autotx/helper_agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotx/helper_agents/clarifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/helper_agents/clarifier.py -------------------------------------------------------------------------------- /autotx/helper_agents/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/helper_agents/manager.py -------------------------------------------------------------------------------- /autotx/helper_agents/user_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/helper_agents/user_proxy.py -------------------------------------------------------------------------------- /autotx/intents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/intents.py -------------------------------------------------------------------------------- /autotx/load_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/load_tokens.py -------------------------------------------------------------------------------- /autotx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/models.py -------------------------------------------------------------------------------- /autotx/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/server.py -------------------------------------------------------------------------------- /autotx/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/setup.py -------------------------------------------------------------------------------- /autotx/smart_account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/smart_account_api.py -------------------------------------------------------------------------------- /autotx/smart_accounts/api_smart_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/smart_accounts/api_smart_account.py -------------------------------------------------------------------------------- /autotx/smart_accounts/local_biconomy_smart_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/smart_accounts/local_biconomy_smart_account.py -------------------------------------------------------------------------------- /autotx/smart_accounts/safe_smart_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/smart_accounts/safe_smart_account.py -------------------------------------------------------------------------------- /autotx/smart_accounts/smart_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/smart_accounts/smart_account.py -------------------------------------------------------------------------------- /autotx/task_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/task_logs.py -------------------------------------------------------------------------------- /autotx/tests/agents/regression/token/test_tokens_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/regression/token/test_tokens_regression.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/research/test_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/research/test_advanced.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/research/test_research.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/research/test_research.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/research/test_research_and_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/research/test_research_and_swap.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/research/test_research_swap_and_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/research/test_research_swap_and_send.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/send/test_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/send/test_send.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/test_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/test_swap.py -------------------------------------------------------------------------------- /autotx/tests/agents/token/test_swap_and_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/agents/token/test_swap_and_send.py -------------------------------------------------------------------------------- /autotx/tests/api/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/api/test_connect.py -------------------------------------------------------------------------------- /autotx/tests/api/test_send_transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/api/test_send_transactions.py -------------------------------------------------------------------------------- /autotx/tests/api/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/api/test_tasks.py -------------------------------------------------------------------------------- /autotx/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/conftest.py -------------------------------------------------------------------------------- /autotx/tests/integration/test_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/tests/integration/test_swap.py -------------------------------------------------------------------------------- /autotx/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/token.py -------------------------------------------------------------------------------- /autotx/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/transactions.py -------------------------------------------------------------------------------- /autotx/utils/LlamaClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/LlamaClient.py -------------------------------------------------------------------------------- /autotx/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotx/utils/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/color.py -------------------------------------------------------------------------------- /autotx/utils/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/configuration.py -------------------------------------------------------------------------------- /autotx/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/constants.py -------------------------------------------------------------------------------- /autotx/utils/dump_pydantic_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/dump_pydantic_list.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/SafeManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/SafeManager.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/__init__.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/agent_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/agent_account.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/build_approve_erc20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/build_approve_erc20.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/build_transfer_erc20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/build_transfer_erc20.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/build_transfer_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/build_transfer_native.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/cache.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/cached_safe_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/cached_safe_address.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/chain_short_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/chain_short_names.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/constants.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/deploy_multicall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/deploy_multicall.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/deploy_safe_with_create2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/deploy_safe_with_create2.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/erc20_abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/erc20_abi.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/get_erc20_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/get_erc20_balance.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/get_erc20_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/get_erc20_info.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/get_native_balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/get_native_balance.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/fill_dev_account_with_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/fill_dev_account_with_tokens.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/get_dev_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/get_dev_account.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/get_native_token_symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/get_native_token_symbol.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/show_address_balances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/show_address_balances.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/swap_from_eoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/swap_from_eoa.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/helpers/token_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/helpers/token_list.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/is_valid_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/is_valid_safe.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/lifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/lifi/__init__.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/lifi/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/lifi/swap.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/networks.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/send_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/send_native.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/send_tx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/send_tx.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/transfer_erc20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/transfer_erc20.py -------------------------------------------------------------------------------- /autotx/utils/ethereum/weth_abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/ethereum/weth_abi.py -------------------------------------------------------------------------------- /autotx/utils/format_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/format_amount.py -------------------------------------------------------------------------------- /autotx/utils/is_dev_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/is_dev_env.py -------------------------------------------------------------------------------- /autotx/utils/logging/IOSilent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/logging/IOSilent.py -------------------------------------------------------------------------------- /autotx/utils/logging/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/logging/Logger.py -------------------------------------------------------------------------------- /autotx/utils/logging/TeeStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/autotx/utils/logging/TeeStream.py -------------------------------------------------------------------------------- /benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/benchmarks.json -------------------------------------------------------------------------------- /benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/benchmarks.py -------------------------------------------------------------------------------- /docs/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/docs/img/banner.png -------------------------------------------------------------------------------- /docs/img/demo-multi-step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/docs/img/demo-multi-step.gif -------------------------------------------------------------------------------- /docs/img/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/docs/img/diagram.png -------------------------------------------------------------------------------- /fork.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/fork.Dockerfile -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smart-account-api.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart-account-api.Dockerfile -------------------------------------------------------------------------------- /smart_account_api/.nvmrc: -------------------------------------------------------------------------------- 1 | v20.10 -------------------------------------------------------------------------------- /smart_account_api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/package.json -------------------------------------------------------------------------------- /smart_account_api/src/account-abstraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/src/account-abstraction.ts -------------------------------------------------------------------------------- /smart_account_api/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/src/constants.ts -------------------------------------------------------------------------------- /smart_account_api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/src/index.ts -------------------------------------------------------------------------------- /smart_account_api/src/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/src/networks.ts -------------------------------------------------------------------------------- /smart_account_api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/tsconfig.json -------------------------------------------------------------------------------- /smart_account_api/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/smart_account_api/yarn.lock -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- 1 | # Supabase 2 | .branches 3 | .temp 4 | .env 5 | -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /supabase/migrations/20240606183512_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/migrations/20240606183512_init.sql -------------------------------------------------------------------------------- /supabase/migrations/20240611191742_task-error.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."tasks" add column "error" text; 2 | 3 | 4 | -------------------------------------------------------------------------------- /supabase/migrations/20240614104522_intents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/migrations/20240614104522_intents.sql -------------------------------------------------------------------------------- /supabase/migrations/20240617165316_submitting-txs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/migrations/20240617165316_submitting-txs.sql -------------------------------------------------------------------------------- /supabase/migrations/20240626194330_errors-and-logs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/migrations/20240626194330_errors-and-logs.sql -------------------------------------------------------------------------------- /supabase/migrations/20240702110412_feedback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcoinorg/AutoTx/HEAD/supabase/migrations/20240702110412_feedback.sql -------------------------------------------------------------------------------- /supabase/seed.sql: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------