Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

169
Vistas
React web3 contract events removing listener is not possible

I am trying to create a custom hook which listens to my web3 contract events and unbinds when I change my account or network. Nonetheless it executes twice when I switch my account back and forth. Except this it works fine but for any reasons it does not remove the listener.

I have also tried removing the listener before I add it but still it will only be added and so on execute more then once.

const EVENT_OPTIONS = {
    fromBlock: "latest",
};

export const useEvent = (event, handler) => {
    useEffect(() => {
        if (!event) return;
        event(EVENT_OPTIONS).addListener("data", handler);

        return () => {
            //This gets executed but the event will not be removed
            // (Executed when the metamask network changes)
            event(EVENT_OPTIONS).removeListener("data", handler);
        }
    }, [event])
}

// ----- Example for useEvent:

export const useOnNewRound = (callback) => {
    const contract = useContractWSS(); // returns websocket contract
    
    const sortData = useCallback((data) => {
        // do something with data...
        callback(data)
    }, [])
     
    useEvent(contract?.events.NewRound, sortData); //Pass event and handler function
}
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda