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
14 changes: 13 additions & 1 deletion abi/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
# ABI folder

This is a dedicated folder for ABI files. Place you contract ABI here and generate facade classes for type-safe decoding of the event, function data and contract state queries with
This is a dedicated folder for ABI files. Place you contract ABI here and generate facade classes for type-safe decoding
of the event, function data and contract state queries with

```sh
sqd typegen
```

This `typegen` command is defined in `commands.json`.

## Note:

Use lowercase filenames to avoid problems with generated code.

```
Vyper_contract > vyper-contract
OETHVault > oeth-vault
OETH > oeth
BaseRewardPool > base-reward-pool
```
Loading