Files
FrenoCorp/node_modules/viem/zksync/accounts/toSinglesigSmartAccount.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-25 00:08:01 -04:00

31 lines
946 B
TypeScript

import type { Address } from 'abitype'
import { sign } from '../../accounts/utils/sign.js'
import type { Hex } from '../../types/misc.js'
import type { ZksyncSmartAccount } from '../types/account.js'
import { toSmartAccount } from './toSmartAccount.js'
export type ToSinglesigSmartAccountParameters = {
/** Address of the deployed Account's Contract implementation. */
address: Address
/** Private Key of the owner. */
privateKey: Hex
}
/**
* Creates a [ZKsync Smart Account](https://docs.zksync.io/build/developer-reference/account-abstraction/building-smart-accounts)
* from a Contract Address and a Private Key belonging to the owner.
*/
export function toSinglesigSmartAccount(
parameters: ToSinglesigSmartAccountParameters,
): ZksyncSmartAccount {
const { address, privateKey } = parameters
return toSmartAccount({
address,
async sign({ hash }) {
return sign({ hash, privateKey, to: 'hex' })
},
})
}