Questions tagged [consensys-truffle]

Development and testing framework with integrated asset pipeline for the virtual currency Ethereum

Development and testing framework with integrated asset pipeline for the virtual currency Ethereum

45 questions
0
votes
0 answers

ConsenSys. qubernetes tessera connect to different URL

I am trying to convert k8s objects available with this git repo to the Helm chart (with four node quorum network)on GKE. https://github.com/ConsenSys/qubernetes I tried changing the following config map blocks for peers "peer": [ {     "url":…
Ganesh Pol
  • 413
  • 1
  • 8
  • 29
0
votes
1 answer

How can I disable the 750 second timeout when migrating with truffle?

I'm trying to deploy my smart contract to the Ethereum Mainnet using truffle.js. When migrating with a low gas price, the transaction for deploying the contract sometimes takes longer than 750 seconds and causes truffle to timeout. Is there some way…
Mike Tromba
  • 88
  • 1
  • 7
0
votes
0 answers

I keep getting errors when trying to deploy smart contracts to my blockchain using truffle

I have a set of smart contracts that I have compiled and deployed to rinkeby test network. I now need to deploy the to a private goquorum blockchain that runs on the IBFT consensus. The blockchain was built with quorum-wizard. It starts when I run…
0
votes
2 answers

Error when migrating contracts using truffle

When using traffle deploying contracts it gives these errors: "Migrations" -- Unable to decode sender address from transaction: Incompatible EIP155-based V 38 and chain id 3. See the Common parameter of the Transaction constructor to set the chain…
hliu
  • 1,015
  • 8
  • 16
0
votes
2 answers

Blockchain truffle Migration Error

truffle migrate Using network 'development'. Running migration: 1_initial_migration.js Deploying Migrations... Error encountered, bailing. Network state unknown. Review successful transactions manually. Error: Migrations contract constructor…
tonybenny
  • 11
  • 3
0
votes
3 answers

Unable to connect Ganache with Truffle/Npm Dev server

I am able to work with Truffle and Ganache-cli. Have deployed the contract and can play with that using truffle console truffle(development)> Voting.deployed().then(function(contractInstance)…
user986508
  • 189
  • 2
  • 5
  • 14
0
votes
1 answer

Non-deterministic exceptions when running truffle tests

I have been writing automated tests to test my crowdsale functionality in Truffle using their test service (which I believe uses Mocha and Chai). I am having trouble understanding why the tests fail non-deterministically (i.e. they seem to fail at…
0
votes
1 answer

Truffle migrate fails, but only on main network.

I'm trying to deploy a contract to the main network ("1") that I succeeded in deploying to test-rpc and to the test network using the geth --dev flag. Here’s how my truffle.js file looks: module.exports = { networks: { development: { …
Matt Lally
  • 435
  • 1
  • 3
  • 13
0
votes
1 answer

Truffle solidity loader Not working with Truffle 3.2.1

I was using truffle-webpack-demo but started getting errors since I upgraded to truffle 3.2.1. I found the new branch of the same repo and copied config from there. Which should be working, but now npm start gives me the following error. Starting…
suneet
  • 400
  • 1
  • 5
  • 19
0
votes
1 answer

Running Testrpc and truffle from powershell not working

I was installing some modules/packages needed for Ethereum development and I previously installed truffle and testrpc, and I could run them fine from PowerShell. I am now suddenly unable to run either as it says 'testrpc' is not recognised as a…
Ahmed Hamadto
  • 15
  • 1
  • 7
0
votes
1 answer

Testrpc error: 'no loggers could be found for logger 'jsonrpc.manager'

I'm trying to run truffle init and get the sample contract running. I run truffle init, truffle compile, & truffle migrate. In a separate terminal window (same directory as the project), I run testrpc with no errors-- I get the 10 hashes I'm…
Joe
  • 378
  • 4
  • 14
0
votes
2 answers

Truffle migrate Server Error (on truffle init demo)

I'm a DAPP beginner, and am trying to get up and running with the Truffle framework. I've been walking through the Truffle docs, but it doesn't work out of the box for me. Create directory, cd into it, and run 'truffle init' Run 'truffle…
Joe
  • 378
  • 4
  • 14
0
votes
1 answer

Error with truffle deploy command

I want to deploy a smart contract to a private network. I start the network like this geth --datadir="~/truffle" --port 30303 --rpc --rpcport 8545 --rpcaddr localhost --networkid 27441 --rpccorsdomain="*" --minerthreads "1" --mine --rpcapi…
tiennv
  • 356
  • 5
  • 13
-1
votes
1 answer

Unexpected token issue in truffle on Windows

I am trying to install truffle on node version 8.9.0 and npm version 5.5.1. It got installed but am not able to do anything in that. every time I try any command, even try to unbox it shows an…
-1
votes
1 answer

Quorum quickstart Error - Docker compose: expected a mapping or list of mappings for merging, but found scalar

I'm trying to setup ConsenSys Quorum for the first time, and I run into an error while following the quickstart tutorial. I follow the following steps to generate the error: npx quorum-dev-quickstart Which Ethereum client would you like to run?…
n3n3
  • 288
  • 1
  • 7
1 2
3