npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

contract-viewer

v0.1.11

Published

A solidity contract viewer with syntax highlight and beautify

Downloads

25

Readme

Solidity Contract Viewer

This module simplifies the process of showing a Solidity Contract in a webpage beautified with syntax highlight and code indentation. Dynamic changes on the underline contract properties are reflected imediatly in the contract code shown on the webpage.

It uses a modified version of highlight-js adapted to handle solidity code.

As in the highlight-js library, different styles can be applied by simple adding the desired style in the main html file. Styles can be downloaded from here.

IMPORTANT WARNING

Because of a limitation in React, the react version used in this library (0.12.2) should matches the version used in your project! Otherwise, you will get the message below when running your code:

EventPluginRegistry: Cannot inject event plugin ordering more than once. You are likely 
trying to load more than one copy of React.

As the message says, if you run two distinct version for your code and for this library, the React library will be loaded twice in your app and you will get the message above.

Install

To install this module globally, just type sudo npm install contract-viewer -g.

Usage example

This module works using contract templates. You basically have define a contract template as a js module, as in:

var mycontracttemplate = '\n\
contract ui_contract_name {\n\
    bytes32 ui_string1_name = "ui_string1_value";\n\
    function ui_function1_name(bytes32 value) {\n\
        ui_string1_name = value;\n\
    }\n\
}';
module.exports = mycontracttemplate;

After defining your contract template, you require it in the react component where you are using the contractviewer. You will notice that there are some placeholders in the contract template. In our case, all words starting with ui_ is a placeholder. these are the dynamic parts of the contract. When you use the contractviewer, you link these placeholders using state variables of the react component so that whenever the state change, the contract is automatically updated in the webpage. See example below:

var MyTemplate     = require('../data/MyContractTemplate.sol.js');
var ContractViewer = require('contract-viewer');

var myapp = react.createclass({
    getinitialstate: function() {
        return {
            contractName : 'MyContract',
            string1Name  : 'customerName',
            string1Value : 'Satoshi Nakamoto',
            function1Name: 'setCustomerName'
        };
    },
    onChangeCode: function(contractCode) {
        // Result contract code is stored on param 'contractCode'
    },
    render: function() {
        return 
            <ContractViewer
                contract          = {MyTemplate}
                onChange          = {this.onChangeCode}
                ui_contract_name  = {this.state.contractName}
                ui_string1_name   = {this.state.string1Name}
                ui_string1_value  = {this.state.string1Value}
                ui_function1_name = {this.state.function1Name}
            />;
    }
});

To show the resulting contract code, you need to add the desired style in the html file where the code is shown. For instance, if you want to use the railscasts style, you should download it from this place and add it to the header section of your page, as in:

<head>
  <link href='/css/railscasts.css' rel='stylesheet'>
  ...
</head>

The code above using the railscasts style will look like this:

So, any changes in the state variables of the React component will be reflected imediatly in the contract being shown.