Skip to content
/ viem Public
forked from wevm/viem

TypeScript Interface for Ethereum

License

Notifications You must be signed in to change notification settings

uF4No/viem

This branch is 1513 commits behind wevm/viem:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0309572 · Apr 3, 2024
Apr 3, 2024
Mar 26, 2024
Mar 26, 2024
Jan 17, 2024
Mar 29, 2024
Jan 3, 2024
Jan 3, 2024
Apr 3, 2024
Apr 3, 2024
Mar 24, 2024
Mar 11, 2024
Jan 9, 2024
Mar 11, 2024
Feb 9, 2023
Jan 30, 2023
Mar 7, 2024
Jan 30, 2024
Sep 24, 2023
Sep 24, 2023
Mar 26, 2024
Mar 11, 2024
Feb 21, 2024
Apr 1, 2024
Mar 24, 2024
Mar 17, 2024
Sep 12, 2023
Oct 10, 2023
Jan 28, 2024

Repository files navigation


viem logo

TypeScript Interface for Ethereum

Version Code coverage MIT License Downloads per month Best of JS


Features

  • Abstractions over the JSON-RPC API to make your life easier
  • First-class APIs for interacting with Smart Contracts
  • Language closely aligned to official Ethereum terminology
  • Import your Browser Extension, WalletConnect or Private Key Wallet
  • Browser native BigInt, instead of large BigNumber libraries
  • Utilities for working with ABIs (encoding/decoding/inspection)
  • TypeScript ready (infer types from ABIs and EIP-712 Typed Data)
  • First-class support for Anvil, Hardhat & Ganache
  • Test suite running against forked Ethereum network

... and a lot lot more.

Overview

// 1. Import modules.
import { createPublicClient, http } from 'viem';
import { mainnet } from 'viem/chains';

// 2. Set up your client with desired chain & transport.
const client = createPublicClient({
  chain: mainnet,
  transport: http(),
});

// 3. Consume an action!
const blockNumber = await client.getBlockNumber();

Documentation

Head to the documentation to read and learn more about viem.

Community

Check out the following places for more viem-related content:

Support

Sponsors

paradigm logo
family logo context logo WalletConnect logo zksync logo PartyDAO logo Dynamic logo Sushi logo Stripe logo Privy logo Spruce logo rollup.id logo pancake logo celo logo pimlico logo zora logo lattice logo supa logo syndicate logo

Contributing

If you're interested in contributing, please read the contributing docs before submitting a pull request.

Authors

License

MIT License

About

TypeScript Interface for Ethereum

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 90.5%
  • Solidity 7.3%
  • MDX 2.2%
  • JavaScript 0.0%
  • Svelte 0.0%
  • HTML 0.0%