encodeFunctionData โ
Encodes the function name and parameters into an ABI encoded value (4 byte selector & arguments).
Install โ
ts
import { encodeFunctionData } from 'viem'
Usage โ
Below is a very basic example of how to encode a function to calldata.
ts
import { encodeFunctionData } from 'viem'
const data = encodeFunctionData({
abi: wagmiAbi,
functionName: 'totalSupply'
})
ts
export const wagmiAbi = [
...
{
inputs: [],
name: "totalSupply",
outputs: [{ name: "", type: "uint256" }],
stateMutability: "view",
type: "function",
},
...
] as const;
ts
import { createPublicClient, http } from 'viem'
import { mainnet } from 'viem/chains'
export const publicClient = createPublicClient({
chain: mainnet,
transport: http()
})
Passing Arguments โ
If your function requires argument(s), you can pass them through with the args
attribute.
TypeScript types for args
will be inferred from the function name & ABI, to guard you from inserting the wrong values.
For example, the balanceOf
function name below requires an address argument, and it is typed as ["0x${string}"]
.
ts
import { encodeFunctionData } from 'viem'
import { publicClient } from './client'
import { wagmiAbi } from './abi'
const data = encodeFunctionData({
abi: wagmiAbi,
functionName: 'balanceOf',
args: ['0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC']
})
ts
export const wagmiAbi = [
...
{
inputs: [{ name: "owner", type: "address" }],
name: "balanceOf",
outputs: [{ name: "", type: "uint256" }],
stateMutability: "view",
type: "function",
},
...
] as const;
ts
import { createPublicClient, http } from 'viem'
import { mainnet } from 'viem/chains'
export const publicClient = createPublicClient({
chain: mainnet,
transport: http()
})
Return Value โ
ABI encoded data (4byte function selector & arguments).
Parameters โ
abi โ
- Type:
Abi
The contract's ABI.
ts
const data = encodeFunctionData({
abi: wagmiAbi,
functionName: 'totalSupply',
})
functionName โ
- Type:
string
The function to encode from the ABI.
ts
const data = encodeFunctionData({
abi: wagmiAbi,
functionName: 'totalSupply',
})
args (optional) โ
- Type: Inferred from ABI.
Arguments to pass to function call.
ts
const data = encodeFunctionData({
abi: wagmiAbi,
functionName: 'balanceOf',
args: ['0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC']
})