truffle
Here are 1,931 public repositories matching this topic...
-
Updated
Jun 1, 2022 - JavaScript
Ruby 3.0.2 allows a string for Process.euid=, and will (I assume) do a user lookup in that case:
# OS X
Process.euid = "test" # => can't find user for test (ArgumentError)
Process.euid = "dberger" # => "dberger"But using Truffleruby 22.0.0.2:
Process.euid = "test" # => undefined method `to_int' for "test":String
Process.euid = "dberger" # => undefined method `toI have some contracts using a library structure data storage, compiled using an older version of Solidity, but which throw an error asking me to make a report here.
In the libraryType.sol contract I have something like this:
library PersonLib {
struct Data {
bool isActive;
bytes hashOfData;
string handle;
}
function handle(Data stor-
Updated
Jun 2, 2022
-
Updated
Jun 2, 2022 - JavaScript
-
Updated
Oct 7, 2020 - Go
.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
Apr 28, 2022 - JavaScript
-
Updated
Feb 8, 2018 - 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.
Bug Description
A bug in the verfy.js prevents verifying Proxy smartcontrat. When I tried verifying a proxy smartcontract, It started verifying the implementation contract and failed with the message: "Invalid constructor arguments provided. Please verify that they are in ABI-encoded format". After debugging the process, I found that retrieved constructor argument parameters are different f
-
Updated
Apr 17, 2022 - JavaScript
-
Updated
Feb 11, 2022 - TypeScript
-
Updated
May 14, 2021 - Shell
-
Updated
Nov 30, 2020 - Solidity
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
See TODOs in ClipboardExtendedPlugin.java.
-
Updated
Jun 1, 2022 - JavaScript
-
Updated
Mar 27, 2022 - JavaScript
-
Updated
Aug 22, 2021 - JavaScript
-
Updated
Apr 7, 2018 - TypeScript
-
Updated
Feb 11, 2022 - JavaScript
-
Updated
Nov 20, 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."
Feature
Similar to #4461, it would be nice if people could
truffle exectypescript without needing to run a compilation step.Steps to Reproduce
Write a script for
truffle execin TypeScriptDesired Behavior
Truffle would use
ts-nodeto execute said scriptCurrent Behavior
Users must first compile said script, and
truffle execthe compilation output.