Skip to content

Commit

Permalink
chore: fix typos (#214)
Browse files Browse the repository at this point in the history
* Fix typos

Signed-off-by: chloefeal <[email protected]>

* Fix typos

Signed-off-by: chloefeal <[email protected]>

---------

Signed-off-by: chloefeal <[email protected]>
  • Loading branch information
chloefeal authored Jan 13, 2025
1 parent cce0404 commit c154f58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GOAT solves this by providing an open-source, provider-agnostic framework that a

- **For agent developers**: GOAT offers an always-growing catalog of ready made blockchain actions (sending tokens, using a DeFi protocol, ...) that can be imported as tools into your existing agent. It works with the most popular agent frameworks (Langchain, Vercel's AI SDK, Eliza, etc), Typescript and Python, 30+ blockchains (Solana, Base, Polygon, Mode, ...), and many wallet providers.

- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent develoment frameworks to access your service.
- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent development frameworks to access your service.

### Key features
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For developers without blockchain expertise, finding clear instructions to perfo
GOAT solves this by providing an open-source, provider-agnostic framework that abstracts away all these combinations.

- **For agent developers**: GOAT offers an always-growing catalog of ready made blockchain actions (sending tokens, using a DeFi protocol, ...) that can be imported as tools into your existing agent. It works with the most popular agent frameworks (Langchain, Vercel's AI SDK, Eliza, etc), Typescript and Python, 30+ blockchains (Solana, Base, Polygon, Mode, ...), and many wallet providers.
- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent develoment frameworks to access your service.
- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent development frameworks to access your service.

### Key features
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.
Expand Down
2 changes: 1 addition & 1 deletion typescript/packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ For developers without blockchain expertise, finding clear instructions to perfo
GOAT solves this by providing an open-source, provider-agnostic framework that abstracts away all these combinations.

- **For agent developers**: GOAT offers an always-growing catalog of ready made blockchain actions (sending tokens, using a DeFi protocol, ...) that can be imported as tools into your existing agent. It works with the most popular agent frameworks (Langchain, Vercel's AI SDK, Eliza, etc), Typescript and Python, 30+ blockchains (Solana, Base, Polygon, Mode, ...), and many wallet providers.
- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent develoment frameworks to access your service.
- **For dApp / smart contract developers**: develop a plug-in in GOAT, and allow agents built with any of the most popular agent development frameworks to access your service.

### Key features
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function getCreateAndPayOrderParameters(callDataSchema: z.ZodSchema) {
.object({
method: z
.enum(["ethereum", "ethereum-sepolia", "base", "base-sepolia", "polygon", "polygon-amoy", "solana"])
.describe("The blockchain network to use for the transaction"), // TOOD: This is not the full list of methods
.describe("The blockchain network to use for the transaction"), // TODO: This is not the full list of methods
currency: z.enum(["usdc"]).describe("The currency to use for payment"), // TODO: This is not the full list of currencies
payerAddress: z.string().describe("The address that will pay for the transaction"), // TODO: This required for now, as this will create and buy the order in 1 tool
receiptEmail: z.string().optional().describe("Optional email to send payment receipt to"),
Expand Down

0 comments on commit c154f58

Please sign in to comment.