diff --git a/components/explorer/inspectorButton.tsx b/components/explorer/inspectorButton.tsx index 7d13c6e2c..8351884b1 100644 --- a/components/explorer/inspectorButton.tsx +++ b/components/explorer/inspectorButton.tsx @@ -44,7 +44,7 @@ export default function InspectorButton({ inspectUrl = await getExplorerInspectorUrl(connection, result.transaction) } else { try { - const recentActivity = await connection.current.getConfirmedSignaturesForAddress2( + const recentActivity = await connection.current.getSignaturesForAddress( proposalInstruction.pubkey, { limit: 5, diff --git a/hooks/useAccountActivity.ts b/hooks/useAccountActivity.ts index 90f3a4df7..c26c7c20c 100644 --- a/hooks/useAccountActivity.ts +++ b/hooks/useAccountActivity.ts @@ -24,7 +24,7 @@ async function getInfo( } return connection - .getConfirmedSignaturesForAddress2( + .getSignaturesForAddress( new PublicKey(address), { limit: 10, diff --git a/stores/useTreasuryAccountStore.tsx b/stores/useTreasuryAccountStore.tsx index 8f5398731..6e59e953c 100644 --- a/stores/useTreasuryAccountStore.tsx +++ b/stores/useTreasuryAccountStore.tsx @@ -61,7 +61,7 @@ const useTreasuryAccountStore = create((set, _get) => ({ let recentActivity = [] const address = account.extensions.transferAddress try { - recentActivity = await connection.current.getConfirmedSignaturesForAddress2( + recentActivity = await connection.current.getSignaturesForAddress( address, { limit: 5,