Skip to content
On this page

deployContract

Deploys a contract to the network, given bytecode & constructor arguments.

Usage

ts
import { wagmiAbi } from './abi'
import { walletClient } from './client'

const account = getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266')

await walletClient.deployContract({
  abi,
  account,
  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'

const account = getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266')

await walletClient.deployContract({
  abi,
  account,
  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

The contract's ABI.

ts
await walletClient.deployContract({
  abi: wagmiAbi, 
  account: getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'),
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
})

account

  • Type: Account

The Account to deploy the contract from. Read more.

ts
await walletClient.deployContract({
  abi: wagmiAbi, 
  account: getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'), 
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
})

bytecode

The contract's bytecode.

ts
await walletClient.deployContract({
  abi: wagmiAbi,
  account: getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'),
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...', 
})

args (if required)

  • Type: Inferred from ABI.

Constructor arguments to call upon deployment.

ts
await walletClient.deployContract({
  abi: wagmiAbi,
  account: getAccount('0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266'),
  bytecode: '0x608060405260405161083e38038061083e833981016040819052610...',
  args: [69] 
})

Live Example

Check out the usage of deployContract in the live Deploying Contracts Example below.

Released under the MIT License.