Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 7cc874c

Browse files
authored
Add initial version of Pyth price pusher on Evm networks (#28)
* Add initial version of Pyth price pusher on Evm networks * Minor code improvement * Fix pre-commit error * Fix non-trading status price update logic
1 parent 867e6e5 commit 7cc874c

File tree

11 files changed

+19828
-0
lines changed

11 files changed

+19828
-0
lines changed

pyth-evm-price-pusher/.eslintrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
root: true,
3+
parser: "@typescript-eslint/parser",
4+
plugins: ["@typescript-eslint"],
5+
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
6+
rules: {
7+
"@typescript-eslint/no-explicit-any": "off",
8+
"@typescript-eslint/no-non-null-assertion": "off",
9+
},
10+
};

pyth-evm-price-pusher/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Pyth price pusher on EVM networks

pyth-evm-price-pusher/jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2+
module.exports = {
3+
preset: "ts-jest",
4+
testEnvironment: "node",
5+
};

0 commit comments

Comments
 (0)