Skip to content

Commit

Permalink
fix: v6 addresses (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishuagopian authored Feb 6, 2025
1 parent 0f59c09 commit 15cb774
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gondi",
"version": "0.17.0",
"version": "0.17.1",
"license": "MIT",
"type": "module",
"main": "dist/index.mjs",
Expand Down
8 changes: 6 additions & 2 deletions src/deploys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ export const getContracts = (chain: Pick<Chain, 'id'>): Contracts => {
'0x4A679253410272dd5232B3Ff7cF5dbB88f295319',
},
PurchaseBundler: {
v5: '0xTODO',
v6: '0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f',
v5:
ensureAddress(process.env.GONDI_PURCHASE_BUNDLER_V5) ??
'0xE6E340D132b5f46d1e472DebcD681B2aBc16e57E',
v6:
ensureAddress(process.env.GONDI_PURCHASE_BUNDLER_V6) ??
'0x7a2088a1bFc9d81c55368AE168C2C02570cB814F',
},
};
}
Expand Down

0 comments on commit 15cb774

Please sign in to comment.