Skip to content

Commit

Permalink
Merge pull request #72 from Satya191/patch-1
Browse files Browse the repository at this point in the history
fixing BiconomySmartAccount error, line 132
  • Loading branch information
Rahat-ch authored Sep 26, 2023
2 parents 6f5e224 + e2d93d8 commit 6a70a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/nextjs/sdkintegration.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ We're also going to add some state variables to the component along with their t
```typescript
const [address, setAddress] = useState<string>("")
const [loading, setLoading] = useState<boolean>(false);
const [smartAccount, setSmartAccount] = useState<BiconomySmartAccount | null>(null);
const [smartAccount, setSmartAccount] = useState<BiconomySmartAccountV2 | null>(null);
const [provider, setProvider] = useState<ethers.providers.Provider | null>(null)
```

Expand Down

0 comments on commit 6a70a90

Please sign in to comment.