Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update binance + okx certs + bump version #274

Merged
merged 1 commit into from
Nov 6, 2024
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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "celo-oracle",
"version": "2.0.13-beta",
"version": "2.0.14-beta",
"description": "Oracle application to aggregate and report exchange rates to the Celo network",
"author": "Celo",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/exchange_adapters/binance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class BinanceAdapter extends BaseExchangeAdapter implements ExchangeAdapt
readonly _exchangeName: Exchange = Exchange.BINANCE
// GeoTrust RSA CA 2018 - validity not after: 06/11/2027, 09:23:45 GMT-3
_certFingerprint256 =
'BF:8A:69:02:7B:CC:8D:2D:42:A6:E6:D2:5B:DD:48:73:F6:A3:4B:8F:90:ED:F0:7E:86:C5:D6:91:6D:A0:B9:33'
'15:A7:30:98:0D:FB:5B:1D:81:EC:A5:98:77:FF:39:5B:6C:5F:F7:18:66:9C:71:CF:CC:2A:64:DF:A3:9D:D5:9C'

private static readonly tokenSymbolMap = BinanceAdapter.standardTokenSymbolMap

Expand Down
2 changes: 1 addition & 1 deletion src/exchange_adapters/okx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class OKXAdapter extends BaseExchangeAdapter implements ExchangeAdapter {
readonly _exchangeName = Exchange.OKX

readonly _certFingerprint256 =
'5F:1A:2A:BA:2B:4A:7B:AA:35:0D:A2:C9:3B:A1:40:AC:F4:83:38:1F:1E:87:A9:93:60:5A:CA:0C:F8:14:34:DD'
'73:8D:5A:C5:72:43:A1:85:7D:F6:DE:37:5E:D4:3B:AF:16:EC:EF:D7:97:DE:D1:A6:98:6B:87:55:D2:EE:00:4E'

private static readonly tokenSymbolMap = OKXAdapter.standardTokenSymbolMap

Expand Down