Skip to content

Commit 714ca28

Browse files
authored
Merge branch 'main' into feat/add-staked-amount-in-view-project-details
2 parents 9a00c81 + 9b462d7 commit 714ca28

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

packages/common/src/allo/backends/allo-v2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class AlloV2 implements Allo {
170170
abi: MRC_ABI,
171171
functionName: "allocate",
172172
args: [poolIds, amounts, data],
173-
value: nativeTokenAmount,
173+
value: nativeTokenAmount + (directAllocation?.amount ?? BigInt(0)),
174174
},
175175
this.chainId
176176
);

packages/data-layer/src/data-layer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ export class DataLayer {
250250
);
251251

252252
if (response.projects.length === 0) return null;
253-
console.log("response.projects", response.projects);
254253

255254
const project = mergeCanonicalAndLinkedProjects(response.projects)[0];
256255

packages/grant-explorer/public/index.html

Lines changed: 9 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)