0.1.32 • Published 4 years ago

truffle-solidity-loader v0.1.32

Weekly downloads
47
License
MIT
Repository
github
Last release
4 years ago

truffle-solidity-loader

A Webpack loader allows importing a solidity contract that return a truffle artifact json object. This allows you to develop your contracts with Hot Reloading support, and have your migrations automatically re-run on change. When you run a production build, the contracts will be bundled into your main bundle for easy deployment.

Example

var provider = new Web3.providers.HttpProvider("http://localhost:8545");
var contract = require("truffle-contract");

// Instead of including a built json file
import myContract_artifacts from '../build/contracts/MyContract.json'
var MyContract = contract(myContract_artifacts)

//You can import the solidity contract directly
import myContract_artifacts from '../contracts/MyContract.sol'
var MyContract = contract(myContract_artifacts)

MyContract.setProvider(provider);

You can see this plugin in operation in the Truffle+Webpack Demo App. The demo is for Truffle 4.0 & Webpack 4.

This pacakge will re-run the migration script whenever a solidity file is modified. If you have multiple solidity files, the entire project will be overridden.

Installation

$ npm install --save-dev truffle-solidity-loader

Add the appropriate config to your loaders section of your Webpack 4 config:

{
  test: /\.sol/,
  use: [
    {
      loader: 'json-loader'
    },
    {
      loader: 'truffle-solidity-loader',
      options: {
        network: 'ganache',
      }
    }
  ]
}

Webpack applies loaders right to left, therefore the output of truffle-solidity-loader goes into json-loader.

truffle.js integration

The loader will auto detect a truffle.js (or truffle-config.js for Windows users) config file in your project and use that for configuration.

Loader options

  • migrations_directory: The path truffle migration scripts
  • network: A network name to use
  • contracts_build_directory: path to directory of truffle JSON artifacts
{
  test: /\.sol/,
  use: [
    {
      loader: 'json-loader'
    },
    {
      loader: 'truffle-solidity-loader',
      options: {
        network: 'ganache',
        migrations_directory: path.resolve(__dirname, './migrations'),
        contracts_build_directory: path.resolve(__dirname, '../build/contracts')
      }
    }
  ]
}

Contributing

  • Write issue in the Issue Tracker.
  • Submit PRs.
  • Respect the project coding style: StandardJS.

js-standard-style

License

Copyright (c) Consensys LLC, and authors.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.0.11

4 years ago

0.0.10

5 years ago

0.1.32

5 years ago

0.1.31

5 years ago

0.1.30

5 years ago

0.1.27-ens.1

5 years ago

0.1.29

5 years ago

0.1.28

5 years ago

0.1.27

5 years ago

0.1.27-ens.0

5 years ago

0.1.26

5 years ago

0.1.25

5 years ago

0.1.24

5 years ago

0.1.23

5 years ago

0.1.22

5 years ago

0.1.21

5 years ago

0.1.20

5 years ago

0.1.19

5 years ago

0.1.18-alpha.1

5 years ago

0.1.18

5 years ago

0.1.18-beta.1

5 years ago

0.1.18-beta.0

5 years ago

0.1.18-alpha.0

5 years ago

0.1.17

5 years ago

0.1.16

5 years ago

0.1.15

5 years ago

0.1.14

5 years ago

0.1.13

5 years ago

0.1.12

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0-beta.2

5 years ago

0.1.0-beta.1

6 years ago

0.1.0

6 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago