opengsn/gsn

ERROR: GET https://client-config.opengsn.org/3.0.0-beta.9/client-config.json 404

Opened this issue · 2 comments

Describe the bug
Static resource not found

Steps To Reproduce
Steps to reproduce the behavior:

  • I defined a method
import { RelayProvider } from '@opengsn/provider';
import {  Contract, Wallet } from 'ethers';
  const transfer = (
    from: string,
    to: string,
    amount: number,
    privateKey: string,
  )  => {
    const wallet = new Wallet(privateKey, this.provider);
    try {
      const { gsnSigner } = await RelayProvider.newEthersV5Provider({
        provider: wallet,
        config: {
          paymasterAddress: this.paymasterAddress,
          performDryRunViewRelayCall: false,
        },
      }).catch((_err) => {
        return {} as any;
      });

     // ...
     // ...
      const contract = new Contract(
        this.contractAddress,
        ERC20ContractABI,
        gsnSigner,
      );
      const transferTx = await contract.transferFrom(from, to, value, {
        gasPrice,
        gasLimit,
      });
      return transferTx;
    } catch (err) {
      return err;
    }
  }
  • I call
   transition = await web3Transfer.transfer(
        publicKey,
        address,
        +amount,
        privateKey!,
      );

Expected behavior
https://client-config.opengsn.org/3.0.0-beta.9/client-config.json can be found

Same problem here with v.3.0.0-beta.10

any updates on this one? I'm still seeing this on v3.0.0-beta.10