Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for ERC-1151 standard for Ethereum #24

Open
wants to merge 2 commits into
base: anmol-gsoc2024
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ An npm package for seamless integration of all NFT related functionalities in We
- `/src/index.ts ` : Toolbox class, the single default export from the package
- `/src/classes` : Core classes of the package that implement functionalities
- `/src/helpers` : Helper classes that are used by core classes
- `src/chains` : Blockchain-specific implementations, adapters, and example scripts for various functionalities
- `/tests` : Tests for all core classes
- `/examples` : Example scripts for all functionalities
- `/docs` : Markdown documentation
- `/documentation` : Docusaurus project for documentation website

Expand Down Expand Up @@ -64,7 +64,7 @@ An npm package for seamless integration of all NFT related functionalities in We
To run an example script, update the required credentials in `examples/*.json` file and run

```
ts-node examples/generate.ts
ts-node src/chains/Ethereum/functions/generateEthereum.ts
```

To run Tests, update the required credentials in `tests/test_specs.json` file and run
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The following functionalities are currently supported :

## Workflows

![Project Workflows](/workflows.png)
![Project Workflows](../static/img/workflows.png)

## Installation and Usage

Expand Down
Loading