deployContract
Deploys a contract to the network, given bytecode & constructor arguments.
Usage
ts
import { wagmiAbi } from './abi'
import { walletClient } from './client'
await walletClient.deployContract({
  abi,
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
})
ts
export const wagmiAbi = [
  ...
  {
    inputs: [],
    stateMutability: "nonpayable",
    type: "constructor",
  },
  ...
] as const;
ts
import { createWalletClient, custom } from 'viem'
import { mainnet } from 'viem/chains'
export const walletClient = createWalletClient({
  chain: mainnet,
  transport: custom(window.ethereum)
})
Deploying with Constructor Args
ts
import { deployContract } from 'viem'
import { wagmiAbi } from './abi'
import { walletClient } from './client'
await walletClient.deployContract({
  abi,
  args: [69420],
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
})
ts
export const wagmiAbi = [
  ...
  {
    inputs: [{ name: "x", type: "uint32" }],
    stateMutability: "nonpayable",
    type: "constructor",
  },
  ...
] as const;
ts
import { createWalletClient, custom } from 'viem'
import { mainnet } from 'viem/chains'
export const walletClient = createWalletClient({
  chain: mainnet,
  transport: custom(window.ethereum)
})
Parameters
abi
- Type: 
Abi 
The contract's ABI.
ts
await walletClient.deployContract({
  abi: wagmiAbi, 
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
})
bytecode
- Type: 
Hex 
The contract's bytecode.
ts
await walletClient.deployContract({
  abi: wagmiAbi,
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...', 
})
args (if required)
- Type: Inferred from ABI.
 
Constructor arguments to call upon deployment.
ts
await walletClient.deployContract({
  abi: wagmiAbi,
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
  args: [69] 
})
Live Example
Check out the usage of deployContract in the live Deploying Contracts Example below.