You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example demonstrates how to use GOAT to **mint an NFT on EVM** using [Crossmint](https://www.crossmint.com/). It also includes the ability to create wallets for X/Twitter users and emails and drop NFTs into those wallets. This example uses **Ethereum Sepolia** but you can implement it with any other EVM network by changing the chain and RPC URL.
9
+
10
+
You can use this example with any other agent framework, chain, and wallet of your choice.
11
+
12
+
## Setup
13
+
1. Clone the repository:
14
+
```bash
15
+
git clone https://github.com/goat-sdk/goat.git
16
+
```
17
+
18
+
2. Go to the example directory:
19
+
```bash
20
+
cd python/examples/by-use-case/evm-mint-nft
21
+
```
22
+
23
+
3. Copy the `.env.template` and populate with your values:
24
+
```bash
25
+
cp .env.template .env
26
+
```
27
+
-`OPENAI_API_KEY`
28
+
-`WALLET_PRIVATE_KEY`
29
+
-`RPC_PROVIDER_URL`
30
+
-`CROSSMINT_API_KEY` - Use staging key for development, production key for mainnet
31
+
32
+
4. Install dependencies:
33
+
```bash
34
+
poetry install
35
+
```
36
+
37
+
## Usage
38
+
1. Run the interactive CLI:
39
+
```bash
40
+
poetry run python index.py
41
+
```
42
+
43
+
2. Chat with the agent:
44
+
- Create a wallet for an X/Twitter user or email
45
+
- Mint an NFT to the wallet
46
+
47
+
3. To use the production key, set the `CROSSMINT_API_KEY` environment variable to your production key and change the chain to a mainnet chain.
48
+
49
+
## Using in production
50
+
In production, developers require advanced wallet setups that utilize [smart wallets](https://docs.goat-sdk.com/concepts/smart-wallets), which allow them to:
51
+
1.**Increase security** by setting programmable permissions (e.g. limiting fund amounts, restricting contract interactions, and defining required signatures)
52
+
2.**Maintain regulatory compliance** by ensuring agent wallets are non-custodial. This means that:
53
+
- Launchpads, wallet providers, or agent platforms never have access to agents' wallets.
54
+
- Agent platforms do not require money transmitter licenses.
55
+
56
+
### Agent Wallets
57
+
[Crossmint](https://docs.crossmint.com/wallets/quickstarts/agent-wallets) offers one of the most advanced solutions for agent developers and launchpads: [Agent Wallets](https://docs.crossmint.com/wallets/quickstarts/agent-wallets).
58
+
59
+
To integrate Agent Wallets with GOAT, check out the following quickstarts:
0 commit comments