Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c07319f
useCCTPBridgeStatus.ts
intls Feb 5, 2025
53770d5
useIsWalletConnected.ts
intls Feb 5, 2025
3e284e4
useProvenWithdrawl.ts
intls Feb 5, 2025
505b8b5
useWithdrawalStatus.ts
intls Feb 5, 2025
e116e3f
Merge branch 'master' into base-errors
intls Feb 5, 2025
662123c
Merge branch 'master' into base-errors
intls Feb 5, 2025
d3a4de6
Merge branch 'master' into base-errors
intls Feb 7, 2025
311ec1e
Merge branch 'master' into base-errors
intls Feb 7, 2025
44bf35f
Merge branch 'master' into base-errors
intls Feb 10, 2025
5ab4b10
Merge branch 'master' into base-errors
intls Feb 10, 2025
edbdcd2
Merge branch 'master' into base-errors
intls Feb 10, 2025
e5a2edb
Merge branch 'master' into base-errors
intls Feb 13, 2025
b77cb93
Merge branch 'master' into base-errors
intls Feb 14, 2025
3a29f34
Merge branch 'master' into base-errors
intls Feb 14, 2025
9322de0
Merge branch 'master' into base-errors
intls Feb 20, 2025
81b1a97
Merge branch 'master' into base-errors
intls Feb 20, 2025
ea1cc9d
Merge branch 'master' into base-errors
intls Feb 21, 2025
9e1c25d
Merge branch 'master' into base-errors
intls Feb 22, 2025
fb7122e
Merge branch 'master' into base-errors
intls Feb 25, 2025
befc3cd
Merge branch 'master' into base-errors
intls Feb 26, 2025
d5d4974
Merge branch 'master' into base-errors
intls Feb 27, 2025
1fc490c
Merge branch 'master' into base-errors
intls Feb 28, 2025
c224007
Merge branch 'master' into base-errors
intls Mar 1, 2025
e12cc6f
Merge branch 'master' into base-errors
intls Mar 3, 2025
a88c091
Merge branch 'master' into base-errors
intls Mar 5, 2025
cefaf01
Merge branch 'master' into base-errors
intls Mar 6, 2025
a2639e2
Merge branch 'master' into base-errors
intls Mar 6, 2025
7dd6a53
Merge branch 'master' into base-errors
intls Mar 6, 2025
ac928bb
Merge branch 'master' into base-errors
intls Mar 7, 2025
c6f56fe
Update useWithdrawalStatus.ts
intls Mar 7, 2025
2e1fa44
Merge branch 'master' into base-errors
intls Mar 7, 2025
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 apps/bridge/src/utils/hooks/useCCTPBridgeStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export function useCCTPBridgeStatus({
}
}, [bridgeAttestation, bridgeDirection, initiateTxReceipt, isDeposit, message, publicClient]);

// We need to be able to set the status from the FinzliaeCCTPBridgeButton, so we expose a setter.
// We need to be able to set the status from the FinalizeCCTPBridgeButton, so we expose a setter.
return {
status,
message,
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/utils/hooks/useIsWalletConnected.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useAccount } from 'wagmi';

export function useIsWalletConnected(): boolean {
// This is state because otherwise the app errors with
// "Hydration failed because the initial UI does not match what was rendered on the server.""
// "Hydration failed because the initial UI does not match what was rendered on the server."
const [isConnected, setIsConnected] = useState(false);
const { address } = useAccount();

Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/src/utils/hooks/useProvenWithdrawl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useContractRead } from 'wagmi';

const { publicRuntimeConfig } = getConfig();

export function useProvenWithdrawl(withdrawalHash: string | null) {
export function useProvenWithdrawal(withdrawalHash: string | null) {
const { data: provenWithdrawal } = useContractRead({
address: withdrawalHash ? publicRuntimeConfig.l1OptimismPortalProxyAddress : undefined,
abi: optimismPortalABI,
Expand Down
Loading