diff --git a/src/modules/creator/token/etherlink/steps/Ownership.tsx b/src/modules/creator/token/etherlink/steps/Ownership.tsx index eb09f319..53d46855 100644 --- a/src/modules/creator/token/etherlink/steps/Ownership.tsx +++ b/src/modules/creator/token/etherlink/steps/Ownership.tsx @@ -35,7 +35,7 @@ export const Ownership: React.FC = () => { - This would be an FA2-compatible token contract that will serve to assign voting weight based on + This would be an ERC20-compatible token contract that will serve to assign voting weight based on ownership. diff --git a/src/modules/creator/token/router.tsx b/src/modules/creator/token/router.tsx index dd0e299d..1b950b26 100644 --- a/src/modules/creator/token/router.tsx +++ b/src/modules/creator/token/router.tsx @@ -9,6 +9,7 @@ import { Success as TezosSuccess } from "./tezos/steps/Success" import { Success as EtherlinkSuccess } from "./etherlink/steps/Success" import { EtherlinkTokenDeployment } from "./etherlink" import { useTezos } from "services/beacon/hooks/useTezos" +import { Ownership as EtherlinkOwnership } from "./etherlink/steps/Ownership" import { DeploymentProvider as EtherlinkDeploymentProvider } from "./etherlink/state/context" import { DeploymentProvider as TezosDeploymentProvider } from "./tezos/state/context" @@ -24,9 +25,13 @@ export const TokenDeploymentRouter = (): JSX.Element => { + + + + )