We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Static resource not found
Steps To Reproduce Steps to reproduce the behavior:
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; } }
transition = await web3Transfer.transfer( publicKey, address, +amount, privateKey!, );
The console then reports an error GET https://client-config.opengsn.org/3.0.0-beta.9/client-config.json 404
I find that the ‘https://client-config.opengsn.org/3.0.0-beta.8/client-config.json’ can be found。I guess the static resource configuration is not uploaded
Expected behavior https://client-config.opengsn.org/3.0.0-beta.9/client-config.json can be found
The text was updated successfully, but these errors were encountered:
Same problem here with v.3.0.0-beta.10
Sorry, something went wrong.
any updates on this one? I'm still seeing this on v3.0.0-beta.10
I am also seeing this issue on v3.0.0-beta.10
No branches or pull requests
Describe the bug
Static resource not found
Steps To Reproduce
Steps to reproduce the behavior:
The console then reports an error
GET https://client-config.opengsn.org/3.0.0-beta.9/client-config.json 404
I find that the ‘https://client-config.opengsn.org/3.0.0-beta.8/client-config.json’ can be found。I guess the static resource configuration is not uploaded
Expected behavior
https://client-config.opengsn.org/3.0.0-beta.9/client-config.json can be found
The text was updated successfully, but these errors were encountered: