Skip to content

Commit c1c98b5

Browse files
committed
@Smooth fixes, add library example
1 parent bafb4f8 commit c1c98b5

File tree

16 files changed

+111
-37
lines changed

16 files changed

+111
-37
lines changed

cli/start/mod.ts

+7-23
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ArkiverMetadata } from '../../src/arkiver/arkive-metadata.ts'
1010
import { createManifestHandlers } from './logger.ts'
1111
import { colors, mongoose, SchemaComposer } from '../../src/deps.ts'
1212
import { logger } from '../../src/logger.ts'
13-
import { supportedChains } from '../../src/chains.ts'
13+
import { collectRpcUrls } from '../utils.ts'
1414

1515

1616
export const action = async (
@@ -115,29 +115,13 @@ export const action = async (
115115
...loggers,
116116
},
117117
})
118-
119-
if(options.rpcUrl && !Array.isArray(options.rpcUrl)){
120-
options.rpcUrl = [options.rpcUrl]
121-
}
122-
123-
const getEnv = (key: string, defaultValue?: string): string => {
124-
const value = Deno.env.get(key)
125-
if (!value && !defaultValue) {
126-
throw new Error(`Missing environment variable: ${key}`)
127-
}
128-
return value || defaultValue || ''
129-
}
130-
131-
const collectRpcUrls = () => {
132-
const rpcUrls: Record<string, string> = {}
133-
for (const chain of Object.keys(supportedChains)) {
134-
try {
135-
rpcUrls[chain] = getEnv(`${chain.toUpperCase()}_RPC_URL`)
136-
} catch (e) {}
137-
}
138-
return rpcUrls
139-
}
140118

119+
// An RPC for our Arkive is going to be assigned at some point.
120+
// The order of assignment is as follows:
121+
// 1. CLI command line option -r, --rpc-url
122+
// 2. Env variables such as {CHAIN}_RPC_URL
123+
// 3. RPC url defined in manifest
124+
// 4. Default RPC of Viem
141125
const rpcUrls = options.rpcUrl?.reduce((acc, rpc) => {
142126
const [name, url] = rpc.split('=')
143127
acc[name] = url

cli/utils.ts

+19
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { SUPABASE_ANON_PUBLIC_KEY, SUPABASE_URL } from './constants.ts'
22
import { createClient, Input, Secret, z } from './deps.ts'
33
import { login } from './login/mod.ts'
44
import { spinner } from './spinner.ts'
5+
import { supportedChains } from '../src/chains.ts'
56

67
export const getEmail = async () => {
78
const email = await Input.prompt('✉️ Email:')
@@ -127,3 +128,21 @@ export const craftEndpoint = (
127128
majorVersion ? majorVersion + '/' : ''
128129
}graphql`
129130
}
131+
132+
const getEnv = (key: string, defaultValue?: string): string => {
133+
const value = Deno.env.get(key)
134+
if (!value && !defaultValue) {
135+
throw new Error(`Missing environment variable: ${key}`)
136+
}
137+
return value || defaultValue || ''
138+
}
139+
140+
const collectRpcUrls = () => {
141+
const rpcUrls: Record<string, string> = {}
142+
for (const chain of Object.keys(supportedChains)) {
143+
try {
144+
rpcUrls[chain] = getEnv(`${chain.toUpperCase()}_RPC_URL`)
145+
} catch (e) {}
146+
}
147+
return rpcUrls
148+
}

examples/block-handler-vaults/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
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.
33
### Dependencies
44
* Docker
5-
* Historical RPC (Infura, Ankr, Alchemy, etc)
5+
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
66

77
### Arkive Usage
88

9-
First make sure scripts/.env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
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.
1010
> RPC_URL=mainnet=https://rpc.ankr.com/eth
1111
1212
All available tasks can been seen with

examples/block-handler-vaults/deno.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "arkiver start ./ -c mongodb://localhost:27017",
44
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
55
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6-
"reset": "scripts/resetdb.sh && arkiver start ./ -c mongodb://localhost:27017",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
77
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
88
"stopdb": "docker stop mongo",
99
"rmdb": "docker rm mongo",

examples/erc20-balance-history/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
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.
33
### Dependencies
44
* Docker
5-
* Historical RPC (Infura, Ankr, Alchemy, etc)
5+
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
66

77
### Arkive Usage
88

9-
First make sure scripts/.env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
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.
1010
> RPC_URL=mainnet=https://rpc.ankr.com/eth
1111
1212
All available tasks can been seen with

examples/erc20-balance-history/deno.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "arkiver start ./ -c mongodb://localhost:27017",
44
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
55
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6-
"reset": "scripts/resetdb.sh && arkiver start ./ -c mongodb://localhost:27017",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
77
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
88
"stopdb": "docker stop mongo",
99
"rmdb": "docker rm mongo",

examples/erc20-events/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
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.
33
### Dependencies
44
* Docker
5-
* Historical RPC (Infura, Ankr, Alchemy, etc)
5+
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
66

77
### Arkive Usage
88

9-
First make sure scripts/.env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
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.
1010
> RPC_URL=mainnet=https://rpc.ankr.com/eth
1111
1212
All available tasks can been seen with

examples/erc20-events/deno.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "arkiver start ./ -c mongodb://localhost:27017",
44
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
55
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6-
"reset": "scripts/resetdb.sh && arkiver start ./ -c mongodb://localhost:27017",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
77
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
88
"stopdb": "docker stop mongo",
99
"rmdb": "docker rm mongo",

examples/event-wildcard/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ In this example we are attaching to the Transfer event on all contracts. This me
1313
The event data is parsed into a human readable format and logged to the console.
1414
### Dependencies
1515
* Docker
16-
* Historical RPC (Infura, Ankr, Alchemy, etc)
16+
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
1717

1818
### Arkive Usage
1919

20-
First make sure scripts/.env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
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.
2121
> RPC_URL=mainnet=https://rpc.ankr.com/eth
2222
2323
All available tasks can been seen with

examples/event-wildcard/deno.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "arkiver start ./ -c mongodb://localhost:27017",
44
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
55
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6-
"reset": "scripts/resetdb.sh && arkiver start ./ -c mongodb://localhost:27017",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
77
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
88
"stopdb": "docker stop mongo",
99
"rmdb": "docker rm mongo",

examples/library/README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Simple Arkive
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+
### Dependencies
4+
* Docker
5+
* Full Arkive RPC (Infura, Ankr, Alchemy, etc)
6+
7+
### Arkive Usage
8+
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
11+
12+
All available tasks can been seen with
13+
> deno task
14+
15+
To start a new instance of the Arkive you can use `deno task` to run the `new` script with the following command
16+
> deno task new
17+
18+
To reset the database and resync the Arkive run `reset` task
19+
> deno task reset
20+
21+
### Using the GraphQL Explorer
22+
If Arkiver is running there should now be webpage avaiable at http://0.0.0.0:4000/graphql
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 to get the latest Balance entity for this Arkive.
25+
```
26+
query MyQuery {
27+
Balance(sort: _ID_DESC) {
28+
account
29+
amount
30+
token
31+
timestamp
32+
}
33+
}
34+
```

examples/library/deno.jsonc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"tasks": {
3+
"start": "arkiver start ./ -c mongodb://localhost:27017",
4+
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
5+
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
7+
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
8+
"stopdb": "docker stop mongo",
9+
"rmdb": "docker rm mongo",
10+
"startdb": "docker start mongo",
11+
"deploy": "arkiver deploy ./"
12+
}
13+
}

examples/library/deps.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export { formatUnits } from 'npm:viem'
2+
export {
3+
createEntity,
4+
type EventHandlerFor,
5+
Manifest
6+
} from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
7+
export {
8+
type Erc721Opts,
9+
Erc721Lib
10+
} from "https://deno.land/x/robo_arkiver@v0.4.19/libs.ts";

examples/library/manifest.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Manifest, Erc721Lib, type Erc721Opts } from './deps.ts'
2+
3+
const manifest = new Manifest('simple')
4+
5+
const opts: Erc721Opts = {
6+
contract: {"0xbd3531da5cf5857e7cfaa92426877b022e612cf8", 12876179},
7+
async: true
8+
}
9+
10+
manifest
11+
.addChain('mainnet', { blockRange: 100n })
12+
.use([Erc721Lib.create(opts)])
13+
14+
export default manifest.build()

examples/simple/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This arkive handles `Transfer` events. It keeps track of the `Balance` entity. B
66

77
### Arkive Usage
88

9-
First make sure scripts/.env is configured correctly with your RPC endpoint. In this example we are connecting the `mainnet` with the Ankr public ETH endpoint.
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.
1010
> RPC_URL=mainnet=https://rpc.ankr.com/eth
1111
1212
All available tasks can been seen with

examples/simple/deno.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"start": "arkiver start ./ -c mongodb://localhost:27017",
44
"new": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
55
"resetdb": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
6-
"reset": "scripts/resetdb.sh && arkiver start ./ -c mongodb://localhost:27017",
6+
"reset": "docker stop mongo && docker rm mongo && docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest && arkiver start ./ -c mongodb://localhost:27017",
77
"newdb": "docker run --name mongo -d -p 27017:27017 mongodb/mongodb-community-server:latest",
88
"stopdb": "docker stop mongo",
99
"rmdb": "docker rm mongo",

0 commit comments

Comments
 (0)