Skip to content

Commit

Permalink
update info tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Rashmi-278 committed Apr 7, 2024
1 parent 7a32ed8 commit 6d34d45
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion daostar-website/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const config = createConfig(
alchemyId: alchemyId,
walletConnectProjectId: walletConnectId,
appName: "DAOstar",
chains: [mainnet,optimism,optimismSepolia,arbitrum,bscTestnet],
chains: [optimism,mainnet,optimismSepolia,arbitrum,bscTestnet],
})
);
let headers, stargaze_headers;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
const memberRole = await contract.MEMBER_ROLE();
const isMember = await contract.hasRole(memberRole, address);

if (!isMember) throw new Error("You have no authorization.");
if (!isMember) throw new Error("You have no authorization. Request (https://forms.gle/d8nGkfKbpnbPJa8J6) to get added to the schema allowlist");

const eas = new EAS("0x4200000000000000000000000000000000000021");
eas.connect(signer);
Expand Down Expand Up @@ -743,7 +743,7 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
<FormGroup label={
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }} >
DAO Network ID
<Tooltip2 content={"Network on which DAO Governance exists"}>
<Tooltip2 content={"Network on which DAO's governance contract/main treasury exists"}>
<Icon icon="info-sign" size={12} style={{ paddingBottom: '2px'}} />
</Tooltip2>
</div>
Expand All @@ -757,6 +757,9 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
{ label: "Ethereum", value: 1 },
{ label: "Optimism", value: 10 },
{ label: "Arbitrum", value: 42161 },
{ label: "Avalanche", value: 43114 },
{ label: "BNB", value: 56 },
{ label: "Polygon", value: 137 },
]}
/>
</FormGroup>
Expand All @@ -776,7 +779,7 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
<FormGroup label={
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }} >
DAO URI
<Tooltip2 content={"URI compliant with EIP-4824. Create DAO URI daostar.org/register by submitting DAO Registration form"}>
<Tooltip2 content={"URI compliant with EIP-4824. You can use daostar.org/register to create a daoURI"}>
<Icon icon="info-sign" size={12} style={{ paddingBottom: '2px'}} />
</Tooltip2>
</div>
Expand All @@ -795,7 +798,7 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
label={
<div style={{ display: 'flex', alignItems: 'center', gap: '6px' }} >
DAO Contract Address
<Tooltip2 content={"DAO Governance Contract Address"}>
<Tooltip2 content={"DAO's governance/main treasury contract address"}>
<Icon icon="info-sign" size={12} style={{ paddingBottom: '2px'}} />
</Tooltip2>
</div>
Expand Down Expand Up @@ -860,7 +863,7 @@ const RegistrationForm = ({ toggleRegScreen, setRegistrationData }) => {
}}
>
<AnchorButton
href={`https://docs.daostar.org/How%20To's/DifferentPaths`}
href={`https://docs.daostar.org/How%20To's/DifferentPaths#3-eas-attestations`}
target="_blank"
icon="link"
text="Get More Details"
Expand Down

0 comments on commit 6d34d45

Please sign in to comment.