- 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>
154 lines
4.7 KiB
TypeScript
154 lines
4.7 KiB
TypeScript
import type { Account } from '../../accounts/types.js'
|
|
import { parseAccount } from '../../accounts/utils/parseAccount.js'
|
|
import { getChainId } from '../../actions/public/getChainId.js'
|
|
import type {
|
|
SignTransactionErrorType,
|
|
SignTransactionReturnType,
|
|
} from '../../actions/wallet/signTransaction.js'
|
|
import { signTypedData } from '../../actions/wallet/signTypedData.js'
|
|
import type { Client } from '../../clients/createClient.js'
|
|
import type { Transport } from '../../clients/transports/createTransport.js'
|
|
import { AccountNotFoundError } from '../../errors/account.js'
|
|
import { BaseError } from '../../errors/base.js'
|
|
import type { GetAccountParameter } from '../../types/account.js'
|
|
import type {
|
|
ExtractChainFormatterParameters,
|
|
GetChainParameter,
|
|
} from '../../types/chain.js'
|
|
import type { UnionOmit } from '../../types/utils.js'
|
|
import { assertCurrentChain } from '../../utils/chain/assertCurrentChain.js'
|
|
import { getAction } from '../../utils/getAction.js'
|
|
import type { ChainEIP712 } from '../types/chain.js'
|
|
import type { TransactionRequestEIP712 } from '../types/transaction.js'
|
|
import {
|
|
type AssertEip712RequestParameters,
|
|
assertEip712Request,
|
|
} from '../utils/assertEip712Request.js'
|
|
|
|
type FormattedTransactionRequest<
|
|
chain extends ChainEIP712 | undefined = ChainEIP712 | undefined,
|
|
> = ExtractChainFormatterParameters<
|
|
chain,
|
|
'transactionRequest',
|
|
TransactionRequestEIP712
|
|
>
|
|
|
|
export type SignEip712TransactionParameters<
|
|
chain extends ChainEIP712 | undefined = ChainEIP712 | undefined,
|
|
account extends Account | undefined = Account | undefined,
|
|
chainOverride extends ChainEIP712 | undefined = ChainEIP712 | undefined,
|
|
> = UnionOmit<
|
|
FormattedTransactionRequest<
|
|
chainOverride extends ChainEIP712 ? chainOverride : chain
|
|
>,
|
|
'from'
|
|
> &
|
|
GetAccountParameter<account> &
|
|
GetChainParameter<chain, chainOverride>
|
|
|
|
export type SignEip712TransactionReturnType = SignTransactionReturnType
|
|
|
|
export type SignEip712TransactionErrorType = SignTransactionErrorType
|
|
|
|
/**
|
|
* Signs an EIP712 transaction.
|
|
*
|
|
*
|
|
* @param client - Client to use
|
|
* @param args - {@link SignTransactionParameters}
|
|
* @returns The signed serialized transaction. {@link SignTransactionReturnType}
|
|
*
|
|
* @example
|
|
* import { createWalletClient, custom } from 'viem'
|
|
* import { zksync } from 'viem/chains'
|
|
* import { signEip712Transaction } from 'viem/zksync'
|
|
*
|
|
* const client = createWalletClient({
|
|
* chain: zksync,
|
|
* transport: custom(window.ethereum),
|
|
* })
|
|
* const signature = await signEip712Transaction(client, {
|
|
* account: '0xA0Cf798816D4b9b9866b5330EEa46a18382f251e',
|
|
* to: '0x0000000000000000000000000000000000000000',
|
|
* value: 1n,
|
|
* })
|
|
*
|
|
* @example
|
|
* // Account Hoisting
|
|
* import { createWalletClient, http } from 'viem'
|
|
* import { privateKeyToAccount } from 'viem/accounts'
|
|
* import { zksync } from 'viem/chains'
|
|
* import { signEip712Transaction } from 'viem/zksync'
|
|
*
|
|
* const client = createWalletClient({
|
|
* account: privateKeyToAccount('0x…'),
|
|
* chain: zksync,
|
|
* transport: custom(window.ethereum),
|
|
* })
|
|
* const signature = await signEip712Transaction(client, {
|
|
* to: '0x0000000000000000000000000000000000000000',
|
|
* value: 1n,
|
|
* })
|
|
*/
|
|
export async function signEip712Transaction<
|
|
chain extends ChainEIP712 | undefined,
|
|
account extends Account | undefined,
|
|
chainOverride extends ChainEIP712 | undefined,
|
|
>(
|
|
client: Client<Transport, chain, account>,
|
|
args: SignEip712TransactionParameters<chain, account, chainOverride>,
|
|
): Promise<SignEip712TransactionReturnType> {
|
|
const {
|
|
account: account_ = client.account,
|
|
chain = client.chain,
|
|
...transaction
|
|
} = args
|
|
|
|
const account = account_ ? parseAccount(account_) : client.account
|
|
|
|
if (!account)
|
|
throw new AccountNotFoundError({
|
|
docsPath: '/docs/actions/wallet/signTransaction',
|
|
})
|
|
|
|
assertEip712Request({
|
|
account,
|
|
chain,
|
|
...(args as AssertEip712RequestParameters),
|
|
})
|
|
|
|
if (!chain?.custom?.getEip712Domain)
|
|
throw new BaseError('`getEip712Domain` not found on chain.')
|
|
if (!chain?.serializers?.transaction)
|
|
throw new BaseError('transaction serializer not found on chain.')
|
|
|
|
const chainId = await getAction(client, getChainId, 'getChainId')({})
|
|
if (chain !== null)
|
|
assertCurrentChain({
|
|
currentChainId: chainId,
|
|
chain: chain,
|
|
})
|
|
|
|
const eip712Domain = chain?.custom.getEip712Domain({
|
|
...transaction,
|
|
chainId,
|
|
from: account.address,
|
|
type: 'eip712',
|
|
})
|
|
|
|
const customSignature = await signTypedData(client, {
|
|
...eip712Domain,
|
|
account,
|
|
})
|
|
|
|
return chain?.serializers?.transaction(
|
|
{
|
|
chainId,
|
|
...transaction,
|
|
customSignature,
|
|
type: 'eip712' as any,
|
|
},
|
|
{ r: '0x0', s: '0x0', v: 0n },
|
|
) as SignEip712TransactionReturnType
|
|
}
|