import axios from "axios"; import React from "react"; import { withRouter } from "next/router"; import Button from "../inputs/Button"; import StackableContainer from "../layout/StackableContainer"; import Input from "../inputs/Input"; class FindMultisigForm extends React.Component { constructor(props) { super(props); this.state = { address: "", keyError: "", processing: false, }; } handleChange = (e) => { this.setState({ [e.target.name]: e.target.value, }); }; handleSearch = async () => { this.setState({ processing: true }); this.props.router.push(`/multi/${this.state.address}`); }; render() { return (

Already have a multisig address? Enter it below. If it’s a valid address, you will be able to view its transactions and create new ones.