Skip to content

Commit 2719ec8

Browse files
authored
Merge pull request #247 from gnosisguild/chore_change_safe_endpint
chore: update deprecated transaction endpoint to multisig-transactions
2 parents 9e50b51 + bbb7e64 commit 2719ec8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/app/src/services/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,10 @@ export async function fetchSafeTransactions(
520520
const network = getNetworkExplorerInfo(chainId)
521521
if (!network) return []
522522

523-
const url = new URL(`api/v1/safes/${safeAddress}/transactions`, network.safeTransactionApi)
523+
const url = new URL(
524+
`api/v1/safes/${safeAddress}/multisig-transactions`,
525+
network.safeTransactionApi,
526+
)
524527

525528
Object.entries(params).forEach(([key, value]) => url.searchParams.set(key, value))
526529

0 commit comments

Comments
 (0)