TypeScript SDK
EngineAccountOptions
Options for creating an engine account.
type EngineAccountOptions = {  authToken: string;  engineUrl: string;  overrides?: {    accountAddress?: string;    accountFactoryAddress?: string;    accountSalt?: string;  };  walletAddress: string;};The auth token to use with the engine instance.
type authToken = string;The chain to use for signing messages and typed data (smart backend wallet only).
The URL of your engine instance.
type engineUrl = string;type overrides = {  accountAddress?: string;  accountFactoryAddress?: string;  accountSalt?: string;};The backend wallet to use for sending transactions inside engine.
type walletAddress = string;