Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions python/coinbase-agentkit/changelog.d/882.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fixed polygon network details
1 change: 1 addition & 0 deletions python/coinbase-agentkit/changelog.d/922.bugfix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added pre-registration of x402 services
2 changes: 2 additions & 0 deletions python/coinbase-agentkit/coinbase_agentkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from .action_providers import (
Action,
ActionProvider,
X402Config,
aave_action_provider,
basename_action_provider,
cdp_api_action_provider,
Expand Down Expand Up @@ -75,6 +76,7 @@
"weth_action_provider",
"wow_action_provider",
"x402_action_provider",
"X402Config",
"aave_action_provider",
"__version__",
]
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
from .wallet.wallet_action_provider import WalletActionProvider, wallet_action_provider
from .weth.weth_action_provider import WethActionProvider, weth_action_provider
from .wow.wow_action_provider import WowActionProvider, wow_action_provider
from .x402.schemas import X402Config
from .x402.x402_action_provider import x402_action_provider, x402ActionProvider

__all__ = [
Expand Down Expand Up @@ -82,4 +83,5 @@
"wow_action_provider",
"x402ActionProvider",
"x402_action_provider",
"X402Config",
]
Loading