Skip to content

Commit c154f58

Browse files
authored
chore: fix typos (#214)
* Fix typos Signed-off-by: chloefeal <[email protected]> * Fix typos Signed-off-by: chloefeal <[email protected]> --------- Signed-off-by: chloefeal <[email protected]>
1 parent cce0404 commit c154f58

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ GOAT solves this by providing an open-source, provider-agnostic framework that a
2222

2323
- **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.
2424

25-
- **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.
25+
- **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.
2626

2727
### Key features
2828
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.

docs/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ For developers without blockchain expertise, finding clear instructions to perfo
1818
GOAT solves this by providing an open-source, provider-agnostic framework that abstracts away all these combinations.
1919

2020
- **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.
21-
- **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.
21+
- **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.
2222

2323
### Key features
2424
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.

typescript/packages/core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For developers without blockchain expertise, finding clear instructions to perfo
2121
GOAT solves this by providing an open-source, provider-agnostic framework that abstracts away all these combinations.
2222

2323
- **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.
24-
- **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.
24+
- **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.
2525

2626
### Key features
2727
1. **Works Everywhere**: Compatible with Langchain, Vercel’s AI SDK, Eliza, and more.

typescript/packages/plugins/crossmint-headless-checkout/src/parameters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function getCreateAndPayOrderParameters(callDataSchema: z.ZodSchema) {
2323
.object({
2424
method: z
2525
.enum(["ethereum", "ethereum-sepolia", "base", "base-sepolia", "polygon", "polygon-amoy", "solana"])
26-
.describe("The blockchain network to use for the transaction"), // TOOD: This is not the full list of methods
26+
.describe("The blockchain network to use for the transaction"), // TODO: This is not the full list of methods
2727
currency: z.enum(["usdc"]).describe("The currency to use for payment"), // TODO: This is not the full list of currencies
2828
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
2929
receiptEmail: z.string().optional().describe("Optional email to send payment receipt to"),

0 commit comments

Comments
 (0)