File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ There are two modes to create a snapshot.
9
9
2 . ** EVENT** Requires no special node. Collects balance from transfer events.
10
10
Works with Infura free plan.
11
11
12
- ## Running the application
12
+ ## Install with Homebrew
13
+ ` brew install OpenFuturePlatform/tap/token-snapshot `
14
+
15
+ Test running ` token-snapshot -h ` command
16
+
17
+ ## Clone and run
13
18
Run from the command line ` token-snapshot ` script.
14
19
15
20
Input arguments:
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- if [ -z " $TOKEN_SNAPSHOT_PATH " ]; then
4
- export TOKEN_SNAPSHOT_PATH=$PWD
5
- fi
6
-
7
3
# BUILD CHECK
8
- BUILD_JAR_PATH=$TOKEN_SNAPSHOT_PATH /build/libs/snapshot-0.0.1-SNAPSHOT.jar
4
+ BUILD_JAR_PATH=$PWD /build/libs/snapshot-0.0.1-SNAPSHOT.jar
9
5
if [ ! -f " $BUILD_JAR_PATH " ]; then
10
- " $TOKEN_SNAPSHOT_PATH " /gradlew build
6
+ " $PWD " /gradlew build
11
7
fi
12
8
13
9
# RUN
You can’t perform that action at this time.
0 commit comments