All Projects → ethjs → ethjs-signer

ethjs / ethjs-signer

Licence: MIT license
A simple module for signing Ethereum transactions.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ethjs-signer

rakered
The open source components from rake.red
Stars: ✭ 28 (+3.7%)
Mutual labels:  accounts, account
PasTerm
Genera combos a base de Keywords con Termux
Stars: ✭ 36 (+33.33%)
Mutual labels:  accounts, account
FreeGen
Code source du premier générateur d'Europe de 2016 à 2021. Fermé en 2021 par Lukas et TRH pour raisons personelles.
Stars: ✭ 18 (-33.33%)
Mutual labels:  accounts, account
FirebaseAuthExample
Example Sign In, Sign Up with Email, Facebook, Twitter using Firebase combine with BaseMVP (https://github.com/derohimat/android-base-mvp)
Stars: ✭ 20 (-25.93%)
Mutual labels:  sign
logSys
PHP Secure, Advanced Login System
Stars: ✭ 80 (+196.3%)
Mutual labels:  accounts
JNI RSA Sign
通过JNI实现验证App签名获取公钥
Stars: ✭ 86 (+218.52%)
Mutual labels:  sign
MeteorCandy-meteor-admin-dashboard-devtool
The Fast, Secure and Scalable Admin Panel / Dashboard for Meteor.js
Stars: ✭ 50 (+85.19%)
Mutual labels:  accounts
crypto
Aplus Framework Crypto Library
Stars: ✭ 20 (-25.93%)
Mutual labels:  sign
chaoxing
Make Github to help u for signing on Superstar Xuexitong every 5 minutes, base on github actions.
Stars: ✭ 58 (+114.81%)
Mutual labels:  sign
spotify-account-generator
Instantly generates new free Spotify accounts with random credentials
Stars: ✭ 83 (+207.41%)
Mutual labels:  account
Oculess
Removes account requirements and telemetry from Oculus Quest devices
Stars: ✭ 1,551 (+5644.44%)
Mutual labels:  account
qd-templates
基于开源新版签到框架站发布的公共har模板库,整理自用 qiandao 框架可用的各种网站和App的 Har 模板,仅供学习参考。
Stars: ✭ 77 (+185.19%)
Mutual labels:  sign
HotSalesPOS
No description or website provided.
Stars: ✭ 14 (-48.15%)
Mutual labels:  sign
ethjs-contract
A simple contract object for the Ethereum RPC layer.
Stars: ✭ 21 (-22.22%)
Mutual labels:  ethjs
cassh
SSH CA administration via CLI and GUI
Stars: ✭ 66 (+144.44%)
Mutual labels:  sign
flask-apiSign-demo
Api签名验证样例
Stars: ✭ 28 (+3.7%)
Mutual labels:  sign
examples
This repository provides examples on how to use the @accounts-js packages.
Stars: ✭ 15 (-44.44%)
Mutual labels:  accounts
pyas2-lib
AS2 Library for building and parsing Messages and MDNs
Stars: ✭ 33 (+22.22%)
Mutual labels:  sign
DOHA
📢 Database Of Hacked Accounts: Public database of hacked Minecraft accounts.
Stars: ✭ 34 (+25.93%)
Mutual labels:  accounts
swarm-cli
Manage your Bee node and interact with the Swarm network via the CLI
Stars: ✭ 36 (+33.33%)
Mutual labels:  sign

ethjs-signer


A simple Ethereum signing and recovery utility.

WARNING: This module does not have EIP155 replay protection, do not use until it is upgraded.

Install

npm install --save ethjs-signer

Usage

const HttpProvider = require('ethjs-provider-http');
const Eth = require('ethjs-query');
const eth = new Eth(new HttpProvider('http://localhost:8545'));
const sign = require('ethjs-signer').sign;
const BN = require('bignumber.js');

const address = '0x0F6af8F8D7AAD198a7607C96fb74Ffa02C5eD86B';
const privateKey = '0xecbcd9838f7f2afa6e809df8d7cdae69aa5dfc14d563ee98e97effd3f6a652f2';

eth.getTransactionCount(address).then((nonce) => {
  eth.sendRawTransaction(sign({
    to: '0xce31a19193d4b23f4e9d6163d7247243bAF801c3',
    value: 300000,
    gas: new BN('43092000'),
    // when sending a raw transactions it's necessary to set the gas price, currently 0.00000002 ETH
    gasPrice: new BN('20000000000'),
    nonce: nonce,
  }, privateKey)).then((txHash) => {
    console.log('Transaction Hash', txHash);
  });
});

Note, that address and private key are a valid address and private key. Only use this example address for local testing and setup. You will loose your Ether if you send it to this address.

About

This module is meant to help sign and recover Ethereum transactions. You can either sign the transaction and have it return a serilized hex payload (the default), or return the raw array of Buffer values.

Method API

sign     <Function  (Object, String [, Boolean]) : (String|Array)>
recover  <Function  (Object|String, Number, Object, Object) : (Object)>

Contributing

Please help better the ecosystem by submitting issues and pull requests to ethjs-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-signer and tailoring it to your needs in our guides:

  • User guide - Usage, configuration, FAQ and complementary tools.
  • Developer guide - Contributing to ethjs-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-signer better, and pull requests to show us how your idea works.
  • Add new tests to absolutely anything.
  • Create or contribute to ecosystem tools.
  • 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 (MIT)
 
Copyright (c) 2016 Nick Dodson
Copyright (c) 2014 Richard Moore
 
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].