Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ CONTRACT_LABEL="M3ters"
CHIRPSTACK_HOST="localhost"
MAINNET_RPC="https://sepolia.drpc.org"
PREFERRED_PROVER_NODE="http://prover.m3ter.ing"
STREAMR_STREAM_ID="0x123.../foo/ba"
STREAMR_STREAM_ID="0x567853282663b601bfdb9203819b1fbb3fe18926/m3tering/test"
ETHEREUM_PRIVATE_KEY="..."
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Pre-setup

- Make sure Public key is set on the M3ter contract
- Make sure the price for evergy as been set on the PriceContext contract
- Make sure the Console has been granted publish permission on the Streamr stream

## Quick Setup
Expand All @@ -26,7 +27,7 @@
CHIRPSTACK_HOST=localhost
MAINNET_RPC=https://sepolia.drpc.org
PREFERRED_PROVER_NODE=http://34.244.149.153
STREAMR_STREAM_ID="0x123.../foo/ba"
STREAMR_STREAM_ID="0x567853282663b601bfdb9203819b1fbb3fe18926/m3tering/test"
ETHEREUM_PRIVATE_KEY="..."
```

Expand Down
218 changes: 149 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
"express": "^4.19.1",
"express-handlebars": "^7.1.2",
"handlebars": "^4.7.8",
"mqtt": "^5.5.0"
"mqtt": "^5.5.0",
"ssh2": "^1.17.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
Expand All @@ -33,6 +35,7 @@
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.30",
"@types/ssh2": "^1.15.5",
"babel-jest": "^30.0.5",
"jest": "^30.0.5",
"nodemon": "^3.1.0",
Expand Down
Loading