We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cb559f commit 1cc64d5Copy full SHA for 1cc64d5
lazer/contracts/evm/src/PythLazerLib.sol
@@ -15,7 +15,7 @@ library PythLazerLib {
15
16
enum Channel {
17
Invalid,
18
- FixedRate1,
+ RealTime,
19
FixedRate50,
20
FixedRate200
21
}
lazer/sdk/js/src/protocol.ts
@@ -7,7 +7,7 @@ export type PriceFeedProperty =
7
| "bestAskPrice"
8
| "exponent"
9
| "publisherCount";
10
-export type Channel = "fixed_rate@1ms" | "fixed_rate@50ms" | "fixed_rate@200ms";
+export type Channel = "real_time" | "fixed_rate@50ms" | "fixed_rate@200ms";
11
12
export type Request =
13
| {
0 commit comments