We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a42c4c + 4f58f0d commit 991c476Copy full SHA for 991c476
packages/contracts-sdk/src/lib/contracts-sdk.ts
@@ -415,12 +415,12 @@ export class LitContracts {
415
}
416
417
this.log('Your Signer:', this.signer);
418
- this.log('Your Provider:', this.provider.connection);
+ this.log('Your Provider:', this.provider?.connection!);
419
420
if (!this.provider) {
421
this.log('No provider found. Will try to use the one from the signer.');
422
this.provider = this.signer.provider;
423
- this.log('Your Provider(from signer):', this.provider.connection);
+ this.log('Your Provider(from signer):', this.provider?.connection!);
424
425
426
const addresses: any = await LitContracts.getContractAddresses(
0 commit comments