
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vapjs-signer
Advanced tools
A simple Vapory signing and recovery utility.
WARNING: This module does not have EIP155 replay protection, do not use until it is upgraded.
npm install --save vapjs-signer
const HttpProvider = require('vapjs-provider-http');
const Vap = require('vapjs-query');
const vap = new Vap(new HttpProvider('http://localhost:8545'));
const sign = require('vapjs-signer').sign;
const BN = require('bignumber.js');
const address = '0x0F6af8F8D7AAD198a7607C96fb74Ffa02C5eD86B';
const privateKey = '0xecbcd9838f7f2afa6e809df8d7cdae69aa5dfc14d563ee98e97effd3f6a652f2';
vap.getTransactionCount(address).then((nonce) => {
vap.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 VAP
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 Vaper if you send it to this address.
This module is meant to help sign and recover Vapory 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.
sign <Function (Object, String [, Boolean]) : (String|Array)>
recover <Function (Object|String, Number, Object, Object) : (Object)>
Please help better the ecosystem by submitting issues and pull requests to vapjs-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.
You'll find more detailed information on using vapjs-signer and tailoring it to your needs in our guides:
vapjs-signer and writing your own code and coverage.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:
vapjs-signer better, and pull requests to show us how your idea works.Please consult our Code of Conduct docs before helping out.
We communicate via issues and pull requests.
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.
FAQs
A simple module for signing Vapory transactions.
We found that vapjs-signer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.