Skip to content

Commit dd1eace

Browse files
authored
Merge pull request #27 from Blobscan/jwt-auth
Add JWT authorization + Fixes
2 parents 0d7880f + 7416d53 commit dd1eace

19 files changed

+840
-392
lines changed

.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
SECRET_KEY=
2+
13
# Optional variables
24
BLOBSCAN_API_ENDPOINT=
35
EXECUTION_NODE_URL=
46
BEACON_NODE_RPC=
5-
LOGGER=

.vscode/launch.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug executable 'blob-indexer'",
11+
"cargo": {
12+
"args": [
13+
"build",
14+
"--bin=blob-indexer",
15+
"--package=blob-indexer"
16+
],
17+
"filter": {
18+
"name": "blob-indexer",
19+
"kind": "bin"
20+
}
21+
},
22+
"args": [],
23+
"cwd": "${workspaceFolder}"
24+
},
25+
{
26+
"type": "lldb",
27+
"request": "launch",
28+
"name": "Debug unit tests in executable 'blob-indexer'",
29+
"cargo": {
30+
"args": [
31+
"test",
32+
"--no-run",
33+
"--bin=blob-indexer",
34+
"--package=blob-indexer"
35+
],
36+
"filter": {
37+
"name": "blob-indexer",
38+
"kind": "bin"
39+
}
40+
},
41+
"args": [],
42+
"cwd": "${workspaceFolder}"
43+
}
44+
]
45+
}

0 commit comments

Comments
 (0)