eosfactory icon indicating copy to clipboard operation
eosfactory copied to clipboard

Python-based EOS smart-contract development & testing framework

Results 12 eosfactory issues
Sort by recently updated
recently updated
newest added

**My Environment:** OSX 10.14.6 eosio 2.0.3 eosio.cdt 1.7.0 Python 3.7.4 EOSFactory v3.4.0 **Backstory:** The code used to produce this error can be found at https://github.com/flair-app/smart-contract. It was working when I...

Are people still working on this ?

* When i run: ```shell python3 tests/hello_world.py ``` ```result ### SCENARIO: Create a contract from template, then build and deploy it. Removing testnet cache for prefix `_127_0_0_1_8888_` Testnet cache successfully...

* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) Bug fix * **What is the current behavior?** (You can also link to an open...

* **What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) https://github.com/tokenika/eosfactory/blob/master/docs/tutorials/05.InteractingWithPublicTestnet.md The test did not work from documentation above `python3 tests/tic_tac_toe.py mykylin ` and failing...

When compiling throuigh eosfactory.build certain compiler warnings are not being displayed: This command is missing the compiler warnings: ``` $ python3 -m eosfactory.build `pwd`/.. ######## command line: eosio-cpp -o /Users/trj/projects/freeu/eos/contracts/fupm/build/fupm.wasm...

When creating an existing account through new_account, it will go restored, But at this time, the account object is returned, there is no public or private key information. ``` //...

For the eosio object type, you also need the push_action method, because you need to initialize the system contract. Currently have to use cleos directly ``` cleos.PushAction( eosio, "init", '[0,...

Running `./install.sh` within a virtualenv I get the following: `ERROR: Can not perform a '--user' install. User site-packages are not visible in this virtualenv.` Removing the `--user` flag resolves the...

Is it possible to compile multiple contracts in the same project? It appears only the first .cpp file is taken into account at the moment. EDIT: Just want to expand...