|
| 1 | +# Agentkit Core |
| 2 | +Core primitives and framework agnostic tools that are meant to be composable and used via Agentkit framework extensions. |
| 3 | + |
| 4 | +## Developing |
| 5 | +- Agentkit uses `poetry` for package management and tooling |
| 6 | + - [Poetry Installation Instructions](https://python-poetry.org/docs/#installation) |
| 7 | + - Run `poetry install` to install `cdp-agentkit-core` dependencies |
| 8 | + - Run `poetry shell` to activate the virtual environment |
| 9 | + |
| 10 | +### Formatting |
| 11 | +`make format` |
| 12 | + |
| 13 | +### Linting |
| 14 | +- Check linter |
| 15 | +`make lint` |
| 16 | + |
| 17 | +- Fix linter errors |
| 18 | +`make lint-fix` |
| 19 | + |
| 20 | +### Unit Testing |
| 21 | +- Run unit tests |
| 22 | +`make test` |
| 23 | + |
| 24 | +## Contributing Agentic Actions |
| 25 | +- Actions are defined in `./cdp_agentkit_core/actions` module. See `./cdp_agentkit_core/actions/mint_nft.py` for an example. |
| 26 | + |
| 27 | +### Components of an Agentic Action |
| 28 | +Each action will define and export 3 components: |
| 29 | +- Prompt - A string that will provide the AI Agent with context on what the function does and a natural language description of the input. |
| 30 | + - E.g. |
| 31 | +```python |
| 32 | +MINT_NFT_PROMPT = """ |
| 33 | +This tool will mint an NFT (ERC-721) to a specified destination address onchain via a contract invocation. It takes the contract address of the NFT onchain and the destination address onchain that will receive the NFT as inputs.""" |
| 34 | +``` |
| 35 | +- ArgSchema - A Pydantic Model that defines the input argument schema for the action. |
| 36 | + - E.g. |
| 37 | +```python |
| 38 | +class MintNftInput(BaseModel): |
| 39 | + """Input argument schema for mint NFT action.""" |
| 40 | + |
| 41 | + contract_address: str = Field( |
| 42 | + ..., |
| 43 | + description="The contract address of the NFT (ERC-721) to mint, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`", |
| 44 | + ) |
| 45 | + destination: str = Field( |
| 46 | + ..., |
| 47 | + description="The destination address that will receieve the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`", |
| 48 | + ) |
| 49 | +``` |
| 50 | +- Action Callable - A function (or Callable class) that executes the action. |
| 51 | + - E.g. |
| 52 | +```python |
| 53 | +def mint_nft(wallet: Wallet, contract_address: str, destination: str) -> str: |
| 54 | + """Mint an NFT (ERC-721) to a specified destination address onchain via a contract invocation. |
| 55 | +
|
| 56 | + Args: |
| 57 | + wallet (Wallet): The wallet to trade the asset from. |
| 58 | + contract_address (str): The contract address of the NFT (ERC-721) to mint, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`. |
| 59 | + destination (str): The destination address that will receieve the NFT onchain, e.g. `0x036CbD53842c5426634e7929541eC2318f3dCF7e`. |
| 60 | +
|
| 61 | + Returns: |
| 62 | + str: A message containing the NFT mint details. |
| 63 | +
|
| 64 | + """ |
| 65 | + mint_args = {"to": destination, "quantity": "1"} |
| 66 | + |
| 67 | + mint_invocation = wallet.invoke_contract( |
| 68 | + contract_address=contract_address, method="mint", args=mint_args |
| 69 | + ).wait() |
| 70 | + |
| 71 | + return f"Minted NFT from contract {contract_address} to address {destination} on network {wallet.network_id}.\nTransaction hash for the mint: {mint_invocation.transaction.transaction_hash}\nTransaction link for the mint: {mint_invocation.transaction.transaction_link}" |
| 72 | +``` |
0 commit comments