包详细信息

@metamask/ethjs-format

MetaMask91.1kMIT0.2.9

A payload formatter for the Ethereum RPC layer.

ethereum, rpc, formatter, format

自述文件

ethjs-format


A payload formatter for the Ethereum RPC layer.

Install

npm install --save @metamask/ethjs-format

Usage

const format = require('@metamask/ethjs-format');

const inputPayload = format.formatInputs('eth_getBalance', ["0x407d73d8a49eeb85d32cf465507dd71d507100c1", 405938494]);

// result ['0x407d73d8a49eeb85d32cf465507dd71d507100c1', '0x1832213E']

const outputPayload = format.formatOutputs('eth_getBalance', "0x0234c8a3397aab58");

// result <BigNumber ...>
// result outputPayload.toString(10) 158972490234375000

About

A straight forward and complete RPC formatting layer for the Ethereum RPC spec.

Supported RPC Methods

web3_clientVersion
web3_sha3
net_version
net_peerCount
net_listening
eth_protocolVersion
eth_syncing
eth_coinbase
eth_mining
eth_hashrate
eth_gasPrice
eth_accounts
eth_blockNumber
eth_getBalance
eth_getStorageAt
eth_getTransactionCount
eth_getBlockTransactionCountByHash
eth_getBlockTransactionCountByNumber
eth_getUncleCountByBlockHash
eth_getUncleCountByBlockNumber
eth_getCode
eth_sign
eth_sendTransaction
eth_sendRawTransaction
eth_call
eth_estimateGas
eth_getBlockByHash
eth_getBlockByNumber
eth_getTransactionByHash
eth_getTransactionByBlockHashAndIndex
eth_getTransactionByBlockNumberAndIndex
eth_getTransactionReceipt
eth_getUncleByBlockHashAndIndex
eth_getUncleByBlockNumberAndIndex
eth_getCompilers
eth_compileLLL
eth_compileSolidity
eth_compileSerpent
eth_newFilter
eth_newBlockFilter
eth_newPendingTransactionFilter
eth_uninstallFilter
eth_getFilterChanges
eth_getFilterLogs
eth_getLogs
eth_getWork
eth_submitWork
eth_submitHashrate
db_putString
db_getString
db_putHex
db_getHex
shh_post
shh_version
shh_newIdentity
shh_hasIdentity
shh_newGroup
shh_addToGroup
shh_newFilter
shh_uninstallFilter
shh_getFilterChanges
shh_getMessages

Contributing

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

  • User guide - Usage, configuration, FAQ and complementary tools.
  • Developer guide - Contributing to ethjs-format 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-format 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.

更新日志

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Unreleased

0.2.9

Changed

  • Update from ethjs-util@0.1.3 to @metamask/ethjs-util@^0.2.0 (#11)

0.2.8

Changed

  • Rename package from ethjs-format to @metamask/ethjs-format (#4)
  • Deprecate nodejs < v8.17, npm < v6 (#8)

0.2.7

Changed

  • forced support quantity padding
    • QP 0 => 0x00
    • Q 0 => 0x0

0.2.0

Changed

  • no longer padds quantity values
    • Not sure why we ever did, maybe just logical assumptions...
    • Quantity "0" => "0x0"
           "1" => "0x1" etc.. no padding of hex quantity values in the format layer.
      

0.1.8

Added

  • added personal sign and recover

0.1.7

Changed

  • hex prefix
    • Updates number-to-bn

0.1.5

Changed

  • fixed block formatting
    • Spec down enforcement (not value up)
    • Tighter spec enforement
    • Schema update

0.1.4

Removed

  • Remove possibility of negative numbers on chain

0.1.3

Changed

  • less deps
    • New util with less dependencies
    • webpack config updates
    • build config updates

0.1.2

Changed

  • less dependencies
    • Removal of utf8 dependency
    • ethjs-util update
    • package config update

0.1.1

Changed

  • removal of BigNumber for BN
  • package fixes, removals

0.1.0

Changed

  • better coverage testing

0.0.9

Changed

  • more schema details for adding
    • Added additional data for the "latest" tag, flagged as: [0] inputs [1] outputs [2] minimum required input array length [3] if === 2 ? latest : ``

0.0.8

Added

  • Expose entire schema in exports for other modules to use

0.0.7

Changed

  • more schema updates
    • Define requirements further for length of calls like ssh_post etc.

0.0.6

Changed

  • handle BlockFilter and PendingTransactionFilter
    • Handle the bad design caveit of tx or FilterChange result

0.0.5

Fixed

  • Minor fix on eth_getCode, requires 1 not 2 param length

0.0.4

Fixed

  • Minor fix on eth_getTransactionCount, required 2 instead of 1..

0.0.3

Changed

  • Enforce input param requirements
  • Ethjs-util integration

0.0.2

Changed

  • Handle quantity floats with error (no floats on chain)
  • Switched all bignumbers from bn.js to bignumber.js
  • Enfore 20 and 32 byte lengths where required, throw if not alphanumeric

0.0.1

Added

  • ethjs-format
    • Basic testing
    • Basic docs
    • License