Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ node_modules
coverage
.vscode
*.log
.turbo
.turbo
.gitignore
*.db3
*.db3-*
2 changes: 2 additions & 0 deletions docs/prompts/create-seller-if-needed.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Boson Protocol is the Decentralized Commerce Protocol lying on EVM blockchain, like Ethereum, Polygon, Base, Optimism, Arbitrum and their respective testnets.
Interacting with Boson Protocol allows to:

- create entities (seller, buyer, dispute resolver) for the current user, identified with their wallet
- create offers for seller or buyer
- commit to an offer
Expand All @@ -14,6 +15,7 @@ Interacting with Boson Protocol allows to:
- etc.

To interact with Boson Protocol, the flow requires 3 steps:

- call the specific tool depending on the requested action (for instance create-seller),
this tool will return the transaction data, including 2 fields "to" and "data".
- sign the transaction data ("to" and "data") with the current wallet.
Expand Down
1 change: 1 addition & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default [
"dist/",
"coverage/",
"eslint.config.mjs",
"scripts/",
],
},
// Type-aware linting setup
Expand Down
Loading