@pythnetwork/price-pusher 4.1.1 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,9 +46,12 @@ You can get the list of available price feeds from
|
|
|
46
46
|
To run the price pusher, please run the following commands, replacing the command line arguments as necessary:
|
|
47
47
|
|
|
48
48
|
```sh
|
|
49
|
-
#
|
|
49
|
+
# Please run the two following commands once from the root of the repo to build the code.
|
|
50
50
|
npm install
|
|
51
|
-
npx lerna run build
|
|
51
|
+
npx lerna run build --scope @pythnetwork/price-pusher --include-dependencies
|
|
52
|
+
|
|
53
|
+
# Navigate to the price_pusher folder
|
|
54
|
+
cd price_pusher
|
|
52
55
|
|
|
53
56
|
# For EVM
|
|
54
57
|
npm run start -- evm --endpoint wss://example-rpc.com \
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pythnetwork/price-pusher",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
4
4
|
"description": "Pyth Price Pusher",
|
|
5
5
|
"homepage": "https://pyth.network",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"yaml": "^2.1.1",
|
|
62
62
|
"yargs": "^17.5.1"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "61a66eecaa8c6480509e32df56d826ee484eefae"
|
|
65
65
|
}
|