Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

conflux-web-core-method

Package Overview
Dependencies
Maintainers
3
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conflux-web-core-method

Creates the methods on the conflux-web modules. This is an internal package.

  • 1.2.2-alpha.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
increased by162.5%
Maintainers
3
Weekly downloads
 
Created
Source

conflux-web-core-method

This is a sub package of conflux-web

The Method package used within most conflux-web packages. Please read the documentation for more.

Installation

Node.js

npm install conflux-web-core-method

In the Browser

Build running the following in the conflux-web repository:

npm run-script build-all

Then include dist/conflux-web-core-method.js in your html file. This will expose the ConfluxWebMethod object on the window object.

Usage

// in node.js
var ConfluxWebMethod = require('conflux-web-core-method');

var method = new ConfluxWebMethod({
    name: 'sendTransaction',
    call: 'cfx_sendTransaction',
    params: 1,
    inputFormatter: [inputTransactionFormatter]
});
method.attachToObject(myCoolLib);

myCoolLib.sendTransaction({...}, function(){ ... });

FAQs

Package last updated on 27 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc