You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/0_submitting_proofs.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,13 @@ The following proof systems are going to be added soon:
21
21
22
22
## 1. Import/Create Keystore file
23
23
24
-
If you already have a keystore file, you can ignore this section and start sending proofs. We give two examples of how to generate one. The first one using Foundry, and the second one using EigenLayerCLI
24
+
If you already have a keystore file, you can ignore this section and start sending proofs. We give two examples of how to generate one. The first one using Foundry, and the second one using EigenLayer CLI
25
25
26
26
### Alternative 1: With foundry
27
27
28
28
You need to have installed [Foundry](https://book.getfoundry.sh/getting-started/installation).
29
29
30
-
- If you are creating a new account. Create a private key with:
30
+
- If you are creating a new account, create a private key with:
31
31
32
32
```bash
33
33
cast wallet new-mnemonic --words 12
@@ -56,7 +56,7 @@ You need to have installed [Foundry](https://book.getfoundry.sh/getting-started/
56
56
57
57
This will create the ECDSA keystore file in`~/.aligned_keystore/keystore0`
58
58
59
-
### Alternative 2: With EigenlayerCLI
59
+
### Alternative 2: With EigenLayer CLI
60
60
61
61
- If you have the EigenLayer CLI installed, the keystore can be generated following [this](https://docs.eigenlayer.xyz/eigenlayer/operator-guides/operator-installation#import-keys) instructions. The key will be stored into `~/.eigenlayer/operator_keys`.
62
62
@@ -75,15 +75,16 @@ aligned deposit-to-batcher \
75
75
--amount 0.1ether
76
76
```
77
77
78
-
This commands allows the usage of the following flags:
78
+
These commands allows the usage of the following flags:
79
+
79
80
- `--batcher_addr` to specify the address of the Batcher Payment Service smart contract.
80
81
- `--rpc` to specify the rpc url to be used.
81
82
- `--chain` to specify the chain id to be used. Could be holesky or devnet.
82
83
- `--keystore_path` the path to the keystore.
83
84
- `--amount` the amount of ethers to transfer to the Batcher.
84
85
- Note: `--amount` flag parameter must be with the shown format. The amount followed by the `ether` keyword to specify how many ethers you wish to deposit to the Batcher.
85
86
86
-
After depositing funds, you can verify the Service has correctly received them, executing the following command:
87
+
After depositing funds, you can verify the Service has correctly received them by executing the following command:
87
88
88
89
```bash
89
90
aligned get-user-balance \
@@ -92,7 +93,8 @@ aligned get-user-balance \
92
93
--user_addr <user_addr>
93
94
```
94
95
95
-
This commands allows the usage of the following flags:
96
+
These commands allows the usage of the following flags:
97
+
96
98
- `--batcher_addr` to specify the address of the Batcher Payment Service smart contract.
97
99
- `--rpc` to specify the rpc url to be used.
98
100
- `--user_addr` the address of the user that funded the Batcher.
Copy file name to clipboardExpand all lines: docs/guides/1_SDK.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# Aligned SDK
2
2
3
3
The Aligned SDK aims to help developers interact with Aligned in a simple way.
4
-
Some of its functionalities include submitting and verify proofs through the Aligned batcher, as well as checks the inclusion of the verified proofs on-chain. This guide provides an overview of the SDK, its installation, usage, and API details.
4
+
Some of its functionalities include submitting and verifying proofs through the Aligned Batcher, as well as checking the inclusion of the verified proofs on-chain. This guide provides an overview of the SDK, its installation, usage, and API details.
5
5
6
6
You can check the list of supported verifiers [here](../architecture/0_supported_verifiers.md).
0 commit comments