diff --git a/src/storage/blockchain/state.ts b/src/storage/blockchain/state.ts index b27d685e..60a52eda 100644 --- a/src/storage/blockchain/state.ts +++ b/src/storage/blockchain/state.ts @@ -251,7 +251,7 @@ export class EthStateStorage implements IStateStorage { const config = this.networkByChainId(chainId); const provider = new JsonRpcProvider(config.url); - const stateContract = new Contract(config.contractAddress, abi, this.provider); + const stateContract = new Contract(config.contractAddress, abi, provider); return { stateContract, provider }; }