Skip to content

Commit 1cc64d5

Browse files
committed
Retain real time
1 parent 5cb559f commit 1cc64d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lazer/contracts/evm/src/PythLazerLib.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ library PythLazerLib {
1515

1616
enum Channel {
1717
Invalid,
18-
FixedRate1,
18+
RealTime,
1919
FixedRate50,
2020
FixedRate200
2121
}

lazer/sdk/js/src/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type PriceFeedProperty =
77
| "bestAskPrice"
88
| "exponent"
99
| "publisherCount";
10-
export type Channel = "fixed_rate@1ms" | "fixed_rate@50ms" | "fixed_rate@200ms";
10+
export type Channel = "real_time" | "fixed_rate@50ms" | "fixed_rate@200ms";
1111

1212
export type Request =
1313
| {

0 commit comments

Comments
 (0)