diff --git a/apps/abclaunch/src/components/dao-steps/ConfigureAbc.tsx b/apps/abclaunch/src/components/dao-steps/ConfigureAbc.tsx
index cc9e305..1e81b4a 100644
--- a/apps/abclaunch/src/components/dao-steps/ConfigureAbc.tsx
+++ b/apps/abclaunch/src/components/dao-steps/ConfigureAbc.tsx
@@ -5,7 +5,7 @@ import { collateralTokenList, getCollateralTokenInfo } from "../../utils/token-i
import { BalanceInput } from "dao-utils";
import { Input } from 'commons-ui/src/components/Input';
import ABCGraph from "../charts/ABCGraph";
-import { useCollateralTokenAtom, useEntryTributeAtom, useReserveInitialBalanceAtom, useReserveRatioAtom } from "../../store";
+import { useCollateralTokenAtom, useEntryTributeAtom, useExitTributeAtom, useReserveInitialBalanceAtom, useReserveRatioAtom } from "../../store";
interface ConfigureABCProps {
abcHelper: () => JSX.Element;
@@ -18,7 +18,7 @@ export default function ConfigureAbc({abcHelper}: ConfigureABCProps) {
const [collateralToken, setCollateralToken] = useCollateralTokenAtom();
const [entryTribute, setEntryTribute] = useEntryTributeAtom();
- const [exitTribute, setExitTribute] = useEntryTributeAtom();
+ const [exitTribute, setExitTribute] = useExitTributeAtom();
const enoughBalance = reserveInitialBalanceIsEnough !== false;
diff --git a/apps/abclaunch/src/pages/ExistingDao.tsx b/apps/abclaunch/src/pages/ExistingDao.tsx
index 1e803a6..cc7ac9e 100644
--- a/apps/abclaunch/src/pages/ExistingDao.tsx
+++ b/apps/abclaunch/src/pages/ExistingDao.tsx
@@ -19,7 +19,7 @@ function ABCHelper() {
This is how the Initial Reserve Balance will be transferred:
In order to submit this vote, you must approve that the DAO can remove the amount specified in the Initial Reserve Balance from your wallet. These funds will not be moved unless the vote passes.
- When the DAO vote passes, the DAO will retrieve this amount from your wallet to sens to the Reserve Pool.
+ When the DAO vote passes, the DAO will retrieve this amount from your wallet to send to the Reserve Pool.
If the amount specified is no longer in your wallet, then the execution of the vote will fail and the ABC will not launch.
The Reserve Ratio is fixed for the life of the ABC and cannot be changed.
@@ -67,7 +67,7 @@ export default function ExistingDao({isInsideWizard}: AddAbcProps){
processTransactions("Submit for vote", undefined, txSteps, true, undefined, () => {
+ onComplete={() => processTransactions("Create vote on your DAO.", undefined, txSteps, true, undefined, () => {
setNewDaoIsCreated(true)
})}
blockingComponent={newDaoIsCreated ? : undefined}
diff --git a/apps/abcswap/src/pages/Home.tsx b/apps/abcswap/src/pages/Home.tsx
index 20cae1a..a0562d5 100644
--- a/apps/abcswap/src/pages/Home.tsx
+++ b/apps/abcswap/src/pages/Home.tsx
@@ -48,7 +48,7 @@ export default function Home() {
- Which token do you want to swap?
+ Enter DAO name to go to their swap page.
setDaoName(name)} requiredApp='augmented-bonding-curve.open.aragonpm.eth' isInvalid={!!errorMessage} />