Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,9 @@ Now, navigate to the project directory and install [`ethers`](https://docs.ether

```bash
yarn add ethers viem
yarn add -D @cartesi/rollups
yarn add -D @cartesi/rollups@1.4.3
```



## Define the ABIs

Let's write a configuration to generate the ABIs of the Cartesi Rollups Contracts.
Expand Down Expand Up @@ -108,14 +106,15 @@ This script will look for all specified `.sol` files and create a TypeScript fil

Now, let's make the script executable:

chmod +x generate_abis.sh

```bash
chmod +x generate_abis.sh
```

And run it:

./generate_abis.sh
```bash
./generate_abis.sh
```

## Building the Ether wallet

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Now, navigate to the project directory and install [`ethers`](https://docs.ether

```bash
yarn add ethers viem
yarn add -D @cartesi/rollups
yarn add -D @cartesi/rollups@1.4.3
```

## Define the ABIs
Expand Down Expand Up @@ -106,11 +106,15 @@ This script will look for all specified `.sol` files and create a TypeScript fil

Now, let's make the script executable:

chmod +x generate_abis.sh
```bash
chmod +x generate_abis.sh
```

And run it:

./generate_abis.sh
```bash
./generate_abis.sh
```

## Building the Ether wallet

Expand Down