-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bug causing incorrect Short balance to show (#212)
- Loading branch information
1 parent
6003446
commit 9bbfbd1
Showing
7 changed files
with
188 additions
and
48 deletions.
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({ | ||
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
9bbfbd1
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.
Successfully deployed to the following URLs:
hyperdrive-fixed-borrow – ./apps/fixed-borrow
hyperdrive-fixed-borrow.vercel.app
hyperdrive-fixed-borrow-delvtech.vercel.app
hyperdrive-fixed-borrow-git-main-delvtech.vercel.app
9bbfbd1
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.
Successfully deployed to the following URLs:
hyperdrive-monorepo-hyperdrive-trading – ./apps/hyperdrive-trading
hyperdrive-monorepo-hyperdrive-trading-git-main-delvtech.vercel.app
hyperdrive-monorepo-hyperdrive-trading-delvtech.vercel.app
hyperdrive-monorepo-hyperdrive-trading.vercel.app