- 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>
113 lines
3.8 KiB
TypeScript
113 lines
3.8 KiB
TypeScript
import type { Abi } from 'abitype'
|
|
|
|
import type { Account } from '../../accounts/types.js'
|
|
import type { DeployContractParameters as DeployContractParameters_ } from '../../actions/wallet/deployContract.js'
|
|
import type { Client } from '../../clients/createClient.js'
|
|
import type { Transport } from '../../clients/transports/createTransport.js'
|
|
import type { ErrorType } from '../../errors/utils.js'
|
|
import type { ContractConstructorArgs } from '../../types/contract.js'
|
|
import type { Hash, Hex } from '../../types/misc.js'
|
|
import {
|
|
contract2FactoryAddress,
|
|
contractDeployerAddress,
|
|
} from '../constants/address.js'
|
|
import type { ChainEIP712 } from '../types/chain.js'
|
|
import type { ContractDeploymentType } from '../types/contract.js'
|
|
import {
|
|
type EncodeDeployDataErrorType,
|
|
encodeDeployData,
|
|
} from '../utils/abi/encodeDeployData.js'
|
|
import {
|
|
type SendEip712TransactionErrorType,
|
|
type SendEip712TransactionParameters,
|
|
type SendEip712TransactionReturnType,
|
|
sendEip712Transaction,
|
|
} from './sendEip712Transaction.js'
|
|
|
|
export type DeployContractParameters<
|
|
abi extends Abi | readonly unknown[] = Abi,
|
|
chain extends ChainEIP712 | undefined = ChainEIP712 | undefined,
|
|
account extends Account | undefined = Account | undefined,
|
|
chainOverride extends ChainEIP712 | undefined = ChainEIP712 | undefined,
|
|
allArgs = ContractConstructorArgs<abi>,
|
|
> = DeployContractParameters_<abi, chain, account, chainOverride, allArgs> & {
|
|
deploymentType?: ContractDeploymentType | undefined
|
|
factoryDeps?: Hex[] | undefined
|
|
salt?: Hash | undefined
|
|
}
|
|
|
|
export type DeployContractReturnType = SendEip712TransactionReturnType
|
|
|
|
export type DeployContractErrorType =
|
|
| EncodeDeployDataErrorType
|
|
| SendEip712TransactionErrorType
|
|
| ErrorType
|
|
|
|
/**
|
|
* Deploys a contract to the network, given bytecode and constructor arguments using EIP712 transaction.
|
|
*
|
|
* - Docs: https://viem.sh/docs/contract/deployContract
|
|
*
|
|
* @param walletClient - Client to use
|
|
* @param parameters - {@link DeployContractParameters}
|
|
* @returns The [Transaction](https://viem.sh/docs/glossary/terms#transaction) hash. {@link DeployContractReturnType}
|
|
*
|
|
* @example
|
|
* import { createWalletClient, custom } from 'viem'
|
|
* import { privateKeyToAccount } from 'viem/accounts'
|
|
* import { zksync } from 'viem/chains'
|
|
* import { deployContract } from 'viem/zksync'
|
|
*
|
|
* const client = createWalletClient({
|
|
* account: privateKeyToAccount('0x…'),
|
|
* chain: zksync,
|
|
* transport: custom(provider),
|
|
* })
|
|
* const hash = await deployContract(client, {
|
|
* abi: [],
|
|
* account: '0x…,
|
|
* deploymentType: 'create',
|
|
* bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
|
|
* factoryDeps: ['0x608060405260405161083e38038061083e833981016040819052610...'],
|
|
* gasPerPubdata: 50000n
|
|
* })
|
|
*/
|
|
export function deployContract<
|
|
const abi extends Abi | readonly unknown[],
|
|
chain extends ChainEIP712 | undefined,
|
|
account extends Account | undefined,
|
|
chainOverride extends ChainEIP712 | undefined,
|
|
>(
|
|
walletClient: Client<Transport, chain, account>,
|
|
parameters: DeployContractParameters<abi, chain, account, chainOverride>,
|
|
): Promise<DeployContractReturnType> {
|
|
const { abi, args, bytecode, deploymentType, salt, ...request } =
|
|
parameters as DeployContractParameters
|
|
|
|
const data = encodeDeployData({
|
|
abi,
|
|
args,
|
|
bytecode,
|
|
deploymentType,
|
|
salt,
|
|
})
|
|
|
|
// Add the bytecode to the factoryDeps if it's not already there
|
|
request.factoryDeps = request.factoryDeps || []
|
|
if (!request.factoryDeps.includes(bytecode))
|
|
request.factoryDeps.push(bytecode)
|
|
|
|
return sendEip712Transaction(walletClient, {
|
|
...request,
|
|
data,
|
|
to:
|
|
deploymentType === 'create2' || deploymentType === 'create2Account'
|
|
? contract2FactoryAddress
|
|
: contractDeployerAddress,
|
|
} as unknown as SendEip712TransactionParameters<
|
|
chain,
|
|
account,
|
|
chainOverride
|
|
>)
|
|
}
|