diff --git a/packages/common/src/allo/backends/allo-v2.ts b/packages/common/src/allo/backends/allo-v2.ts index 399f9a680f..1f9603081e 100644 --- a/packages/common/src/allo/backends/allo-v2.ts +++ b/packages/common/src/allo/backends/allo-v2.ts @@ -198,10 +198,6 @@ export class AlloV2 implements Allo { 60_000, publicClient ); - await this.waitUntilIndexerSynced({ - chainId: this.chainId, - blockNumber: receipt.blockNumber, - }); return receipt; } else { throw tx.error; @@ -696,13 +692,11 @@ export class AlloV2 implements Allo { throw new AlloError("DirectGrants is not supported yet!"); } - const strategyInstance = new DonationVotingMerkleDistributionStrategy( - { - chain: this.chainId, - poolId: BigInt(args.roundId), - address: args.strategyAddress, - } - ); + const strategyInstance = new DonationVotingMerkleDistributionStrategy({ + chain: this.chainId, + poolId: BigInt(args.roundId), + address: args.strategyAddress, + }); const totalApplications = await strategyInstance.recipientsCounter(); diff --git a/packages/grant-explorer/src/features/round/ViewProjectDetails.tsx b/packages/grant-explorer/src/features/round/ViewProjectDetails.tsx index 5fa6062139..f0f5fb65d1 100644 --- a/packages/grant-explorer/src/features/round/ViewProjectDetails.tsx +++ b/packages/grant-explorer/src/features/round/ViewProjectDetails.tsx @@ -550,7 +550,7 @@ export function ProjectStats() { (isInfiniteDate(round.roundEndTime) || round.roundEndTime > new Date()); return ( -
+