diff --git a/background/services/island/index.ts b/background/services/island/index.ts index 740ecbc4f..56d02acaa 100644 --- a/background/services/island/index.ts +++ b/background/services/island/index.ts @@ -142,9 +142,10 @@ export default class IslandService extends BaseService { ) if (realmXpAsset !== undefined) { this.emitter.emit("monitoringTestnetAsset", realmXpAsset) - realmContract.on(realmContract.filters.XpDistributed(), () => { - this.checkXPDrop() - }) + // TODO: disabled because it causes `eth_getLogs` to spam the RPC node + // realmContract.on(realmContract.filters.XpDistributed(), () => { + // this.checkXPDrop() + // }) } }), )