Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed May 30, 2024
1 parent 6cd0453 commit b1ea875
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions packages/round-manager/src/app/wagmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import { infuraProvider } from "wagmi/providers/infura";
import { alchemyProvider } from "wagmi/providers/alchemy";
import { TChain, getChains } from "common";
import { zeroAddress } from "viem";
import { getConfig } from "common/src/config";

const config = getConfig();

const testnetChains = () => {
return getChains().filter((chain) => chain.type === "testnet");
Expand Down
2 changes: 1 addition & 1 deletion packages/round-manager/src/features/round/FundContract.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ export default function FundContract(props: {

const amount = ethers.utils.parseUnits(
amountToFund.toString(),
matchingFundPayoutToken.decimal
matchingFundPayoutToken.decimals
);

const alloVersion = props.round?.tags?.includes("allo-v2") ? "v2" : "v1";
Expand Down

0 comments on commit b1ea875

Please sign in to comment.