All Projects → ethjs → Ethjs Provider Signer

ethjs / Ethjs Provider Signer

Licence: mit
A simple web3 standard provider that signs eth_sendTransaction payloads.

Programming Languages

javascript
184084 projects - #8 most used programming language
solidity
1140 projects

Projects that are alternatives of or similar to Ethjs Provider Signer

Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+546.15%)
Mutual labels:  ethereum, web3, transaction
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions on Ethereum network.
Stars: ✭ 462 (+610.77%)
Mutual labels:  ethereum, web3, transaction
Web3 By Example
Node.js with Web3 javascript examples for getting basic information (transactions, balances, network stats, and tokens) from the Ethereum blockchain.
Stars: ✭ 156 (+140%)
Mutual labels:  ethereum, web3, transaction
Etherchain Light
Lightweight Ethereum blockchain explorer
Stars: ✭ 550 (+746.15%)
Mutual labels:  ethereum, web3
Eattheblocks
Source code for Eat The Blocks, a screencast for Ethereum Dapp Developers
Stars: ✭ 431 (+563.08%)
Mutual labels:  ethereum, web3
Web3.php
A php interface for interacting with the Ethereum blockchain and ecosystem. Native ABI parsing and smart contract interactions.
Stars: ✭ 507 (+680%)
Mutual labels:  ethereum, web3
3box
The easiest way for Ethereum apps to manage user data.
Stars: ✭ 348 (+435.38%)
Mutual labels:  ethereum, web3
Web3 React
🧰 A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps
Stars: ✭ 788 (+1112.31%)
Mutual labels:  ethereum, web3
Ethjs
A highly optimised, light-weight JS utility for Ethereum.
Stars: ✭ 574 (+783.08%)
Mutual labels:  ethereum, web3
Multisignaturewallet
311 byte EIP712 Signing Compliant Delegate-Call Enabled MultiSignature Wallet for the Ethereum Virtual Machine
Stars: ✭ 16 (-75.38%)
Mutual labels:  ethereum, web3
Eth Scan
An efficient Ether and token balance scanner library
Stars: ✭ 35 (-46.15%)
Mutual labels:  ethereum, web3
Ethereum Etl
Python scripts for ETL (extract, transform and load) jobs for Ethereum blocks, transactions, ERC20 / ERC721 tokens, transfers, receipts, logs, contracts, internal transactions. Data is available in Google BigQuery https://goo.gl/oY5BCQ
Stars: ✭ 956 (+1370.77%)
Mutual labels:  ethereum, transaction
0x Tracker Client
React single page application which powers the frontend of 0x Tracker
Stars: ✭ 49 (-24.62%)
Mutual labels:  ethereum, web3
React Ethereum Dapp Example
A starter boilerplate for an Ethereum dapp using web3.js v1.0, truffle, react, and parity
Stars: ✭ 384 (+490.77%)
Mutual labels:  ethereum, web3
Rimble Ui
React components that implement Rimble's Design System.
Stars: ✭ 357 (+449.23%)
Mutual labels:  ethereum, web3
Typechain
🔌 TypeScript bindings for Ethereum smart contracts
Stars: ✭ 769 (+1083.08%)
Mutual labels:  ethereum, web3
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-20%)
Mutual labels:  ethereum, web3
Alpha
Follow the white rabbit 🐇
Stars: ✭ 304 (+367.69%)
Mutual labels:  ethereum, web3
Ethereum Php
PHP interface to Ethereum JSON-RPC API. Fully typed Web3 for PHP 7.X
Stars: ✭ 343 (+427.69%)
Mutual labels:  ethereum, web3
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (-73.85%)
Mutual labels:  ethereum, web3

ethjs-provider-signer


A simple web3 standard provider that signs sendTransaction payloads.

Install

npm install --save ethjs-provider-signer

Usage

const SignerProvider = require('ethjs-provider-signer');
const sign = require('ethjs-signer').sign;
const Eth = require('ethjs-query');
const provider = new SignerProvider('https://ropsten.infura.io', {
  signTransaction: (rawTx, cb) => cb(null, sign(rawTx, '0x...privateKey...')),
  accounts: (cb) => cb(null, ['0x407d73d8a49eeb85d32cf465507dd71d507100c1']),
});
const eth = new Eth(provider);

eth.sendTransaction({
  from: '0x407d73d8a49eeb85d32cf465507dd71d507100c1',
  gas: 300000,
  data: '0x...',
}, cb);

// results null 0x... (transaction hash)

About

A simple wrapper module for ethjs-provider-http which allows you to sign sendTransaction payloads. It simply takes the sendTransaction data, signs it, and changes the payload method from eth_sendTransaction to eth_sendRawTransaction, then sends the payload.

The signTransaction method is called everytime a payload must be signed. It provides the raw transaction data, a handy raw transaction signing method and a callback to be fired. The callback must return a single signed alphanumeric hex data payload of the signed raw transaction.

ethjs-provider-signer works well with ethjs-signer, a simple module for signing raw transactions. You may also bring your own signer from packages like ethereumjs-signer.

Note, the nonce and gasPrice get auto-filled by default (by using the getTransactionCount and gasPrice RPC calls). However, if these properties are specified in the raw tx object, the raw tx object props will override the default nonce and gasPrice values provided.

Contributing

Please help better the ecosystem by submitting issues and pull requests to ethjs-provider-signer. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard and the unix philosophy.

Guides

You'll find more detailed information on using ethjs-provider-signer and tailoring it to your needs in our guides:

  • User guide - Usage, configuration, FAQ and complementary tools.
  • Developer guide - Contributing to ethjs-provider-signer and writing your own code and coverage.

Help out

There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:

  • Create, enhance, and debug ethjs rules (see our guide to "Working on rules").
  • Improve documentation.
  • Chime in on any open issue or pull request.
  • Open new issues about your ideas for making ethjs-provider-signer better, and pull requests to show us how your idea works.
  • Add new tests to absolutely anything.
  • Create or contribute to ecosystem tools, like modules for encoding or contracts.
  • Spread the word.

Please consult our Code of Conduct docs before helping out.

We communicate via issues and pull requests.

Important documents

Licence

This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.

The MIT License

Copyright (c) 2016 Nick Dodson. nickdodson.com

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].