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: examples/block-handler-vaults/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
This Arkive keeps an accurate historical record of the sharePrice of a given set of YearnV2 Abi Vaults. sharePrice increases as profits are distributed to the vaults, but may also decrease if loss is incurred. It may be valuable to track this information in case of incidents or in order to optimize the vaults for instance.
3
3
### Dependencies
4
4
* Docker
5
-
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
5
+
* Full Archive RPC (Infura, Ankr, Alchemy, etc)
6
6
7
7
### Arkive Usage
8
8
9
9
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
10
-
> RPC_URL=mainnet=https://rpc.ankr.com/eth
10
+
> MAINNET_RPC_URL=https://rpc.ankr.com/eth
11
11
12
12
All available tasks can been seen with
13
13
> deno task
@@ -21,7 +21,7 @@ To reset the database and resync the Arkive run `reset` task
21
21
### Using the GraphQL Explorer
22
22
If Arkiver is running there should now be webpage avaiable at http://0.0.0.0:4000/graphql
23
23
24
-
In the left side you can use the no-code explorer to pick and chose which Entities and what fields of the Entities you would like to look at. Here is an example query for this Arkive. This fetches the latest VaultSnapshot entity.
24
+
In the left side you can use the no-code explorer to pick and choose which Entities and what fields of the Entities you would like to look at. Here is an example query for this Arkive. This fetches the latest VaultSnapshot entity.
Copy file name to clipboardexpand all lines: examples/erc20-balance-history/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
This Arkive keeps an accurate historical record of the balance of an account of a given ERC20 token. It uses the Balance entity as a mutable variable updates as events are handled and is used to keep track of an accounts balance as we sync eventually reflecting true onchain balance. BalanceHistory is an unchanging entity which stores balance over time and is indexed by the `block` field.
3
3
### Dependencies
4
4
* Docker
5
-
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
5
+
* Full Archive RPC (Infura, Ankr, Alchemy, etc)
6
6
7
7
### Arkive Usage
8
8
9
9
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
Copy file name to clipboardexpand all lines: examples/erc20-events/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
This Arkive has two entities, Transfer and Approval. The Arkive also has two corresponding event handlers onTransfer and onApproval which are triggered when the `Transfer` and `Approval` events are emitted by the source contract which is configured to `WETH` in the manifest. When the handlers are triggered they parse the amount and store either an Approval or Transfer entity in the database.
3
3
### Dependencies
4
4
* Docker
5
-
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
5
+
* Full Archive RPC (Infura, Ankr, Alchemy, etc)
6
6
7
7
### Arkive Usage
8
8
9
9
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
Copy file name to clipboardexpand all lines: examples/event-wildcard/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,12 @@ In this example we are attaching to the Transfer event on all contracts. This me
13
13
The event data is parsed into a human readable format and logged to the console.
14
14
### Dependencies
15
15
* Docker
16
-
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
16
+
* Full Archive RPC (Infura, Ankr, Alchemy, etc)
17
17
18
18
### Arkive Usage
19
19
20
20
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
Copy file name to clipboardexpand all lines: examples/library/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
This arkive handles `Transfer` events. It keeps track of the `Balance` entity. Balance starts at zero and in increased and decreased according to the `Transfer` event.
3
3
### Dependencies
4
4
* Docker
5
-
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
5
+
* Full Archive RPC (Infura, Ankr, Alchemy, etc)
6
6
7
7
### Arkive Usage
8
8
9
9
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
Copy file name to clipboardexpand all lines: examples/simple/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
This arkive handles `Transfer` events. It keeps track of the `Balance` entity. Balance starts at zero and in increased and decreased according to the `Transfer` event.
3
3
### Dependencies
4
4
* Docker
5
-
*Historical RPC (Infura, Ankr, Alchemy, etc)
5
+
*Full Archive RPC (Infura, Ankr, Alchemy, etc)
6
6
7
7
### Arkive Usage
8
8
9
9
First make sure .env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
0 commit comments