Skip to content

Commit

Permalink
feat: dynamic Fingerprint Configuration (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
bowd authored Dec 20, 2024
1 parent 7bce3f4 commit f6164f3
Show file tree
Hide file tree
Showing 59 changed files with 4,902 additions and 3,520 deletions.
3 changes: 2 additions & 1 deletion .env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ export WS_RPC_PROVIDER_URL=wss://forno.celo.org/ws
export PRICE_SOURCES=$(cat devPriceSourcesConfig.txt)
export OVERRIDE_INDEX=1
export OVERRIDE_ORACLE_COUNT=3
export SSL_REGISTRY_ADDRESS=0x72d96b39d207c231a3b803f569f05118514673ac
export API_KEYS=$(cat devApiKeys.txt)
export MID_AGGREGATION_MAX_EXCHANGE_VOLUME_SHARE=1
export MID_AGGREGATION_MAX_EXCHANGE_VOLUME_SHARE=1
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: pnpm/action-setup@v3
with:
version: 8
version: 9

- name: Use Node.js 20.x
uses: actions/setup-node@v4
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ tsconfig.tsbuildinfo

# User specific
.env.dev
devPriceSourcesConfig.txt
devPriceSourcesConfig.txt
.tool-versions
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "celo-oracle",
"version": "2.0.15-beta",
"version": "2.0.16-beta",
"description": "Oracle application to aggregate and report exchange rates to the Celo network",
"author": "Celo",
"license": "Apache-2.0",
Expand Down Expand Up @@ -35,7 +35,8 @@
"web3": "1.10.4",
"web3-core": "1.10.4",
"web3-core-subscriptions": "1.10.4",
"web3-eth": "1.10.4"
"web3-eth": "1.10.4",
"web3-eth-contract": "1.10.4"
},
"devDependencies": {
"@celo/typescript": "^0.0.2",
Expand All @@ -44,6 +45,7 @@
"@types/jest": "29.5.12",
"@types/mathjs": "^6.0.5",
"@types/node-fetch": "^2.5.5",
"dotenv": "^16.4.5",
"jest": "29.7.0",
"prettier": "2.1.1",
"ts-jest": "^29.1.2",
Expand All @@ -53,5 +55,5 @@
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "5.4.2"
},
"packageManager": "pnpm@8.15.3"
}
"packageManager": "pnpm@9.15.0"
}
Loading

0 comments on commit f6164f3

Please sign in to comment.