The developer tools you reach for every day, all in one place.

Converters, formatters, hashes, validators, and the small utilities you keep reopening stay together instead of getting lost across tabs.

GitHub

/ Tools

/ Tool Finder
109 tools
/ CREATE2 Address Predictor
The address that will call CREATE2 to deploy the contract
Enter a number (e.g., 0, 1, 123) or full 32-byte hex value
Full contract creation bytecode (constructor code + runtime code)
/ Selected Tool

CREATE2 Address Predictor

Predict contract addresses using CREATE2 and find vanity addresses

01

What is CREATE2?

CREATE2 is an Ethereum opcode that allows you to deploy smart contracts to deterministic addresses. Unlike CREATE (which generates addresses based on sender and nonce), CREATE2 generates addresses based on the deployer…

02

How does it work?

The CREATE2 address is calculated using the formula: address = keccak256(0xff ++ deployer ++ salt ++ keccak256(initCode))[12:] 0xff - Constant prefix to distinguish from CREATE deployer - Address of the factory contract…

03

Sample Cases

Covers Minimal Empty Contract, Using Full Bytecode, and Vanity Address Search so you can compare common inputs and outputs quickly.

/ Code

/ Integration

Source code from the selected tool, shown here alongside the live version on the right.

/ Source Code
TypeScript
typescript
// npm install viem

import { keccak256, encodePacked, getAddress } from 'viem';

// Calculate CREATE2 address
function getCreate2Address(
  deployerAddress: string,
  salt: string,
  initCodeHash: string
): string {
Buidl Now icon

Keep every utility in one place and stay inside the build flow.

Pick a tool, finish the check, copy what you need, and get back to the actual product work.

Developer tools for builders who ship fast.© 2026 Buidl Now. All rights reserved.