deno-web3
solc
TypeScript

💎 Solidity compiler bindings for Deno

Last updated Dec 9, 2025
72
Stars
2
Forks
2
Issues
0
Stars/day
Attention Score
29
Language breakdown
TypeScript 100.0%
Files click to expand
README

logo

solc

[![GitHub Workflow Status][gh-actions-img]][github-actions] [![Codecov][cov-badge-url]][cov-url] [![][code-quality-img]][code-quality]

Solidity bindings for Deno, based on solc-js.

Solidity 0.7+ is supported.

For a CLI and a higher level API you can use sol_build.

Docs

See solc-js README and Deno doc.

Example

import { wrapper } from '@deno-web3/solc'
import { Input } from '@deno-web3/solc/types'
import { download } from '@deno-web3/solc/download'
import { createRequire } from 'node:module'

// Download latest Solidity compiler await download()

const solc = wrapper(createRequire(import.meta.url)('./soljson.cjs'))

const MyToken = await Deno.readTextFile('./MyToken.sol') const ERC20 = await Deno.readTextFile('./ERC20.sol')

const input: Input = { language: 'Solidity', sources: { 'MyToken.sol': { content: MyToken, }, 'ERC20.sol': { content: ERC20, }, }, settings: { outputSelection: { '*': { '': [''], }, }, }, } console.log(JSON.parse(solc.compile(JSON.stringify(input))))

And then run with

deno run --allow-net --allow-read --allow-write mod.ts

[code-quality-img]: https://img.shields.io/codefactor/grade/github/deno-web3/solc?style=for-the-badge&color=626890& [code-quality]: https://www.codefactor.io/repository/github/deno-web3/solc [cov-badge-url]: https://img.shields.io/coveralls/github/deno-web3/solc?style=for-the-badge&color=626890& [cov-url]: https://coveralls.io/github/deno-web3/solc [github-actions]: https://github.com/tinyhttp/deno-web3/solc [gh-actions-img]: https://img.shields.io/github/actions/workflow/status/deno-web3/solc/main.yml?branch=master&style=for-the-badge&color=626890&label=&logo=github

© 2026 GitRepoTrend · deno-web3/solc · Updated daily from GitHub