solcjs-core

v0.7.0
solcjs core
ethereum solidity compiler browser web abi bytecode

solcjs core

Travis codecovnpm downloads Dependency Status

Install

npm install solcjs-core

Usage

const solcjsCore = require('solcjs-core');
  • getVersion
let version = await solcjsCore.getVersion();
let version = await solcjsCore.getVersion('v0.5.1-stable-2018.12.03');
  • solc
let compiler = await solcjsCore.solc();
const sourceCode = `
pragma solidity >0.4.99 <0.6.0;

library OldLibrary {
  function someFunction(uint8 a) public returns(bool);
}

contract NewContract {
  function f(uint8 a) public returns (bool) {
      return OldLibrary.someFunction(a);
  }
}
`;
let output = await compiler(sourceCode);

License

MIT © alincode

npm i solcjs-core

Metadata

  • MIT
  • Whatever
  • alincode
  • released 1/25/2020

Downloads

Maintainers