Simple Smart Account
To implement the Simple Smart Account, you can use the toSimpleSmartAccount module from permissionless.js
Install
Usage
// @filename: owner.ts
import { privateKeyToAccount } from 'viem/accounts'
export const owner = privateKeyToAccount('0x...')
// @filename: example.ts
// ---cut---
import { toSimpleSmartAccount } from 'permissionless/accounts'
import { client } from './client.js'
import { owner } from './owner.js'
const account = await toSimpleSmartAccount({
client,
owners: [owner],
}) Returns
SmartAccount<SimpleSmartAccountImplementation>