truffle
Here are 1,591 public repositories matching this topic...
-
Updated
Sep 14, 2021 - JavaScript
-
Updated
Nov 17, 2021 - Ruby
-
Updated
Nov 12, 2021 - JavaScript
We should add explicit runtime errors that stop CLI execution when an obvious version mismatch is detected. No one (me neither) checks peer dependency-related errors from a package manager.
TC should bail if:
- ether target has detected too low ethers version detected
- tc core package is too low to support given target package
Each target package should be able to define custom conditions
-
Updated
Oct 7, 2020 - Go
-
Updated
Nov 17, 2021 - JavaScript
-
Updated
Feb 8, 2018 - JavaScript
-
Updated
Nov 4, 2021 - JavaScript
When a lot of data has been added, it might be annoying to find the data you want to refund/report. It would be good to have an easy way to search for the events.
Search params can be put into the customFilter function that is passed to handleAddedData.
.env
Hi, Patrick
Can you please only leave the .env.example file and delete the .env one?
Us newbies might end up leaving our mneumonic exposed, because .gitignore does not ignore files that are already there on github.
Thanks for all the top-notch teaching.
-
Updated
May 14, 2021 - Shell
It would be nice if truffle-flattener added the package version of the imported library in the comments of the output file.
For example:
// File: zeppelin-solidity/contracts/ownership/Ownable.sol Package: zeppelin-solidity@v1.7.0
-
Updated
Nov 30, 2020 - Solidity
Current if I have 30 solidity contracts, I need to key in one by one
Currently
truffle run verify ContractA --network rinkeby
truffle run verify ContractB --network rinkeby
truffle run verify ContractC --network rinkeby
Is that any I could run something like that, then it will eventually verify all my contracts?
truffle run verify all --network rinkeby
thanks buddies
-
Updated
Sep 2, 2021 - TypeScript
When bailing out with an error, print where in source error occurred. We already set source section in ast visitor but do not print it in error cases.
Decide if early or lazy loading is better for graalphp.
- pro for eager: we may implement phpdoc semantics into parsing (types)
- however, new versions of php support type hints and dont have to rely on comments
- i think for now we lazy loa
-
Updated
Nov 12, 2021
See TODOs in ClipboardExtendedPlugin.java.
-
Updated
Sep 2, 2021 - JavaScript
-
Updated
Aug 23, 2021 - JavaScript
-
Updated
Aug 10, 2021 - JavaScript
-
Updated
Apr 7, 2018 - TypeScript
-
Updated
Oct 29, 2021 - JavaScript
Improve this page
Add a description, image, and links to the truffle topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the truffle topic, visit your repo's landing page and select "manage topics."
Issue
Vyper handles unmapped instructions differently from Solidity. In Solidity, unmapped instructions are given a file index of -1. When attempting to show the source for such an instruction, we instead just show
1: // No source code found..However, in Vyper, such instructions are not given a file index of -1, but are given a start and length of 0. So when we show the source for t