Skip to content

Commit 298b044

Browse files
fix minor issues
1 parent d81d398 commit 298b044

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gator_versioned_docs/version-0.1.0/changelog/0.1.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The ⚠️ symbol denotes potentially breaking API changes. As per the [semantic
5353
+ import { erc7715ProviderActions } from '@metamask/smart-accounts-kit/actions'
5454
```
5555

56-
### ⚠️ Toolkit environemnt
56+
### ⚠️ Toolkit environment
5757

5858
- Renames the `DeleGatorEnvironment` type to `SmartAccountsEnvironment`.
5959
- Renames the `getDeleGatorEnvironment` function to `getSmartAccountsEnvironment`.

gator_versioned_docs/version-0.1.0/guides/smart-accounts/create-smart-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const owner = Address.fromPublicKey(publicKey);
168168
const smartAccount = await toMetaMaskSmartAccount({
169169
client: publicClient,
170170
implementation: Implementation.Hybrid,
171-
deployParams: [owner, [credential.id], [publicKey.x], [publicKey.y]],
171+
deployParams: [owner, [toHex(credential.id)], [publicKey.x], [publicKey.y]],
172172
deploySalt: "0x",
173173
signer: { webAuthnAccount, keyId: toHex(credential.id) },
174174
});

smart-accounts-kit/guides/smart-accounts/create-smart-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ const owner = Address.fromPublicKey(publicKey);
168168
const smartAccount = await toMetaMaskSmartAccount({
169169
client: publicClient,
170170
implementation: Implementation.Hybrid,
171-
deployParams: [owner, [credential.id], [publicKey.x], [publicKey.y]],
171+
deployParams: [owner, [toHex(credential.id)], [publicKey.x], [publicKey.y]],
172172
deploySalt: "0x",
173173
signer: { webAuthnAccount, keyId: toHex(credential.id) },
174174
});

0 commit comments

Comments
 (0)