import React from 'react' import { useWakuProposal } from '@status-waku-voting/proposal-hooks' import { Proposal } from '@status-waku-voting/proposal-components' import { TopBar, GlobalStyle } from '@status-waku-voting/react-components' import votingIcon from './assets/images/voting.svg' import styled from 'styled-components' import { blueTheme } from '@status-waku-voting/react-components/dist/esm/src/style/themes' import { DAppProvider, ChainId, useEthers } from '@usedapp/core' import { DEFAULT_CONFIG } from '@usedapp/core/dist/cjs/src/model/config/default' const config = { readOnlyChainId: ChainId.Ropsten, readOnlyUrls: { [ChainId.Ropsten]: 'https://ropsten.infura.io/v3/b4451d780cc64a078ccf2181e872cfcf', }, multicallAddresses: { ...DEFAULT_CONFIG.multicallAddresses, 1337: process.env.GANACHE_MULTICALL_CONTRACT ?? '0x0000000000000000000000000000000000000000', }, supportedChains: [...DEFAULT_CONFIG.supportedChains, 1337], notifications: { checkInterval: 500, expirationPeriod: 50000, }, } function Proposals() { const { account, library, activateBrowserWallet, deactivate } = useEthers() const waku = useWakuProposal() return ( {waku && } ) } export function ProposalPage() { return ( ) } const Wrapper = styled.div` height: 100%; width: 100%; `