-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix bug causing incorrect Short balance to show #212
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
836d843
Move getPoolConfig to own file
DannyDelott da2b62b
Move getPoolInfo to own file
DannyDelott 8c2a42a
Export getPoolConfig and getPoolInfo utils
DannyDelott be8f600
Refactor to use new getCurrentFixedAPRQuery method
DannyDelott 8c06517
Fix bug causing incorrect Short balance to show
DannyDelott File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
8 changes: 5 additions & 3 deletions
8
...ui/hyperdrive/longs/hooks/useFixedAPR.tsx → ...rdrive/longs/hooks/useCurrentFixedAPR.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { | ||
PublicClient, | ||
Address, | ||
Transport, | ||
Chain, | ||
ContractFunctionResult, | ||
} from "viem"; | ||
import { HyperdriveABI } from "src/abis/Hyperdrive"; | ||
import { QueryObserverOptions } from "@tanstack/query-core"; | ||
|
||
interface GetPoolConfigOptions { | ||
hyperdriveAddress: Address; | ||
publicClient: PublicClient<Transport, Chain>; | ||
} | ||
|
||
export async function getPoolConfig({ | ||
publicClient, | ||
hyperdriveAddress, | ||
}: GetPoolConfigOptions): Promise< | ||
ContractFunctionResult<typeof HyperdriveABI, "getPoolConfig"> | ||
> { | ||
return await publicClient.readContract({ | ||
address: hyperdriveAddress, | ||
abi: HyperdriveABI, | ||
functionName: "getPoolConfig", | ||
}); | ||
} | ||
|
||
export function getPoolConfigQuery({ | ||
hyperdriveAddress, | ||
publicClient, | ||
}: Partial<GetPoolConfigOptions>): QueryObserverOptions< | ||
Awaited<ReturnType<typeof getPoolConfig>> | ||
> { | ||
const queryEnabled = !!hyperdriveAddress && !!publicClient; | ||
|
||
return { | ||
enabled: queryEnabled, | ||
queryKey: ["@hyperdrive/core", "getPoolConfig", { hyperdriveAddress }], | ||
queryFn: queryEnabled | ||
? async () => | ||
getPoolConfig({ | ||
hyperdriveAddress, | ||
publicClient, | ||
}) | ||
: undefined, | ||
// pool config is static constants, so it never needs to be refreshed | ||
staleTime: Infinity, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { | ||
PublicClient, | ||
Transport, | ||
Chain, | ||
Address, | ||
ContractFunctionResult, | ||
} from "viem"; | ||
import { HyperdriveABI } from "src/abis/Hyperdrive"; | ||
import { QueryObserverOptions } from "@tanstack/query-core"; | ||
|
||
interface GetPoolInfoOptions { | ||
hyperdriveAddress: Address; | ||
publicClient: PublicClient<Transport, Chain>; | ||
} | ||
|
||
export async function getPoolInfo({ | ||
publicClient, | ||
hyperdriveAddress, | ||
}: GetPoolInfoOptions): Promise< | ||
ContractFunctionResult<typeof HyperdriveABI, "getPoolInfo"> | ||
> { | ||
return publicClient.readContract({ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above, although this one is not being awaited. |
||
address: hyperdriveAddress, | ||
abi: HyperdriveABI, | ||
functionName: "getPoolInfo", | ||
}); | ||
} | ||
|
||
export function getPoolInfoQuery({ | ||
hyperdriveAddress, | ||
publicClient, | ||
}: Partial<GetPoolInfoOptions>): QueryObserverOptions< | ||
Awaited<ReturnType<typeof getPoolInfo>> | ||
> { | ||
const queryEnabled = !!hyperdriveAddress && !!publicClient; | ||
|
||
return { | ||
enabled: queryEnabled, | ||
queryKey: ["@hyperdrive/core", "getPoolInfo", { hyperdriveAddress }], | ||
queryFn: queryEnabled | ||
? async () => | ||
getPoolInfo({ | ||
hyperdriveAddress, | ||
publicClient, | ||
}) | ||
: undefined, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens if readContract fails here? Maybe add some error handling.