Questions tagged [parity-io]

Parity is an Ethereum client, written from the ground-up for correctness-verifiability, modularization, low-footprint, and high-performance. To this end, it utilizes the Rust language, a hybrid imperative/object-orientated/functional language with an emphasis on efficiency.

It is professionally developed by Parity Technologies, a VC-funded UK-based company that aims to have all important logic 100% unit-tested, all public APIs 100% documented, all code reviewed by multiple peers and follows a pipelined 7-ish-week release cycle similar to the Rust compiler.

Parity comes with an extensive, in-built Ethereum Wallet and DApp environment. It includes:

  • Account, address-book and multi-sig management.
  • Key creation, importing and exporting.
  • Web3 ÐApp browser.
  • Hardware and electronic cold-wallet support.
  • Name registry support.
  • Contract development, deployment, and interaction environment.

Parity is actively developed as an open source project on Github.

41 questions
1
vote
1 answer

POA chain on parity mining transaction even when there is no consensus

Hi I am running a POA chain on parity with 3 validators . All 3 validators are sealing blocks which I have verified by getting the block details . Now the issue is that when 2 of the validators go down, the 3rd one still continues sealing which…
1
vote
1 answer

Parity syncing pauses for long periods

I've been having issues with my parity instance freezing up while syncing. Given enough time it'll generally pick up again but sometimes it will stay where it is for hours. Restarting the instance temporarily solves the problem and it will…
1
vote
2 answers

Setting up a high-capacity Ethereum client

I'm looking to set up a server (or collection of servers) that can act as an Ethereum node to which I can send a large number of requests, looking at up to 100 per second, to get data from the blockchain such as account balances, transactions etc…
1
vote
1 answer

Cannot unmarshal non-string into Go struct field SendTxArgs.from of type common.Address

I'm learning ethereum blockchain with Ruby and using this library: https://github.com/EthWorks/ethereum.rb I follow the guide and use the file greeter.sol here:…
1
vote
1 answer

Parity POA: the validator's are not getting paid in ETH for sealing blocks

I am working on creating Parity private Blockchain, however,the validator's are not getting paid in ETH for sealing blocks. I use this command line to check the balance: curl -X POST -H "Content-Type: application/json" --data…
1
vote
1 answer

Unsupported Hardware or Paper Wallet with Parity

Given the vulnerability of all but hardware and paper wallets would anyone know how to use an unsupported hardware or paper wallet with Parity? I simply want to be able to manually enter an address generated outside of Parity and fully expect to…
MikeTheCat
  • 11
  • 3
0
votes
1 answer

Why does Total Issuance (balances pallet) go down when making a transaction?

So I am starting a chain with the intention that it would have a fixed number of tokens, and the way I went about doing it is to configure one endowed_account: Alice with a set number of tokens in the genesis configuration. Alice so happens to also…
RequireKeys
  • 466
  • 4
  • 15
0
votes
1 answer

Filtering substrate logs

When running a substrate node, how can I filter log lines according to a word or pattern present in a line of the logs ? I've tried running: RUST_LOG=runtime=debug cargo run -- --dev | grep 'INFO' However that still gives me all the lines of the…
Nicolas Marshall
  • 4,186
  • 9
  • 36
  • 54
0
votes
1 answer

Accessing chain id and genesis hash from the Substrate runtime during extrinsic execution

I am using Substrate's latest stable pre-v2.0-3e65111 I wanted to access the chain id or genesis hash from the Substrate runtime while processing an extrinsic (I am accepting signed payloads and trying to ensure the payloads were targeted to the…
lovesh
  • 5,235
  • 9
  • 62
  • 93
0
votes
1 answer

In the oo7 Substrate UI, Alice has zero funds

In the Substrate-UI using the Bonds library (oo7), it shows that "Alice" has zero funds on a development chain. I also notice that some accounts are labeled as ed25519 and other are sr25519. How can I repair this and gain access to the correct…
Shawn Tabrizi
  • 12,206
  • 1
  • 38
  • 69
0
votes
1 answer

Calling a public method in smart contract with Web3.js version: '1.0.0-beta.46'

I started first steps into ethereum blockchain with parity on a private network. I was able to configure parity and perform the deployment of smart contract on a dev mode chain on my private network through Parity UI which also is able to call…
Hassaan
  • 3
  • 1
  • 2
1 2
3