Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change to assert_tx_failed * Add staticcall opcode for constant function calls * Test constant external function calls * Remove repetitive assert_tx_failed * Create Viper VIP template * Add link to VIP template to the issue template * Improve rlp decoding gas estimation * Add VIP link to contributing docs * fix issue vyperlang#453 * use clamp constants for literals as well * fix num_min_literal parsing failure * fix test coverage * fix issue vyperlang#448: compile_lll.py: buggy translation of LLL operator `sha3_32` * add sha3_32 compilation test * Add checks preventing assigning values on defining types. * Fix gas estimation error * Fix repeat LLL with <= 0 iteration * Add test for repat lll * Add depth check to with "set" statement * Require function visibility declaration * Add tests for public decorator * Add public decorator to tests (vyperlang#474) * Document function visibility requirements * Clarifies expectation in error message This would have helped me when I saw this error learning Viper for the first time. * Note internal or public decorator requirement * Fixes test with for function visibility. * Add the install instructions for the Viper snap This requries vyperlang#445, and enabling the continuous delivery on https://build.snapcraft.io * Allow for gas estimation tests for constants * Add gas estimation for create_with_code_of * ad logs to company.v.py with tests * document event in structure of a contract * move events before global declarations * remove unused import * types.py: Remove duplicated method Fix vyperlang#488 * Adds support -f bytecode_runtime. * cleans up test_logs * Use revert opcode for assert statements * Show lineno of base_type_conversion error Fix vyperlang#498 * Show lineno of undeclared function visibility Fix vyperlang#489 * Adds basic test for bytecode_runtime generation. * add clamp_nonzero to modulo arithemetic * Add modulo tests and refactor simple auction example * Use `with` to decrease repetition * Change vipercoin from returning false to throwing * Add check to as_num256 to make sure number is greater than 0 * Improve contributing .rst - Fixes a link that wasn't displaying correctly. - Makes some instructions more concise. - Changes old `:ref:building-from-source`, to link to installation instructions. * Added testing and deployment doc * Fix augassignment checks * Test for in list invalids * Remove repetitive error and fix typo * Begin adding built in erc20 external call functionality * Add implied erc20 token abi fucntionality * Add on chain market maker example * Test implied erc20 abi functionality * Update on chain market maker and erc20 abi * Change @internal decorator to @Private decorator. * Add support for logging a variable of list type. * Adds tests for logging of list types. * Fix for log packing on list variable. * Add error if log has wrong number of arguments * Add log test and improve bytes as input * Improve variable naming / fix bytes as input * Clean up tests * Adds Fix vyperlang#531. Check return type of lists match. * Adds more tests for logging of lists. * Adds Fix vyperlang#504 for clamping decimal literals correctly. * Use revert for clamps * Fix exponents with units * Create a contract data type * Remove .python-version, update .gitignore * Improve vipercoin example: link out to resources describing attack vectors * Test the contract data type * Update version of ethereum * Improves gas estimate on internal call. * Removed suicide keyword * Carry over add_gas_estimate in optimizer. * Adds gas estimation for internal calls. * Added test for invalid keyword * not official a language > officially * Changing notes to be indented blocks starting on the line after .. note:: https://sublime-and-sphinx-guide.readthedocs.io/en/latest/notes_warnings.html * Adds storage list logging support. * Adds test to check list logging is of correct (sub)type. * Splitting comments over two lines where necessary to fit on the page on readthedocs * Update to use conftest; fix some incorrect tests * Update Safe Remote Purchases: line numbers, minor edits * Updates from code review * Add modulo math checks * Adds support for logging bytes from storage. * Adds exception to limit to 32 bytes of bytes type logging (restriction for the time being). * virtualenv -p /usr/local/lib/python3.6/bin/python3 > virtualenv -p python3.6 Related: vyperlang#558 * Add a note on how to fix `fatal error: openssl/aes.h: No such file or directory` in the `make` output * removed extraneous backtick ` * Minor edits with ``num`` type > with the ``num`` type crowdfunding period is over - as determined> crowdfunding period is over—as determined * Minor edits voting add a comma > to vote, and each add a comma > to vote, or * Adds basic single list argument call functionality. * Improve for loop error * Adds test for logging a decimal list. * :ref:`function-calls` > :ref:`Function-calls` * Minor edits types.rst * Fixes handling of static array in call. - Also adds tests for many mixed cases of calling with a list parameter. * Adds test for mixed bytes - list calling arguments. * Add length check to event topics * Fix and test logging with units * Improve type parsing error message * Add valid call keyword list to utils * Add length check to event topics * Partial fix for vyperlang#590. Adds check for a minimum of one return statement. * Fixes test that were missing return statements. * Adds example of return checker behaving incorrectly. * Adds if statement block scoping. * Add blockscoping to for loop. * Add blockscope tests. * Update dockerfile to use slim image base * Remove commented out directives * Reduce num256_add gas cost * Tag built image as viper * Add built-in function docs * Fix on chain market maker * Add comments to on chain market maker * Change badges from viper to vyper * Fix rlp decoding loop memory * Fix call data copy gas estimation * Implement continue Add `continue` to pseudo_opcodes, LLL, and viper. * Fix example ERC20 token Discovered that it doesn't compile by trying to compile all of the example contracts in `examples/`. This fixes ERC20.v.py by resolving compiler complaints. * Add internal call arg count check * cleaned up linter errors under tests/compiler * cleaned up imports and replaced boolean assertion under test_simple_auction * fixed linter errors in tests/examples/company * fixed linter errors on tests/examples/market_maker * fixed linter errors under tests/exmaples/safe_remote_purchase * cleaned up linter errors tests/examples/tokens * fixed linter errors on tests/examples/voting * fixed linter errors on tests/examples/wallets * fixed linter errors in tests/parsers/features * test_extract32.py: renamed first function to test_extract32_extraction * fixed linter errors * cleaned up linter errors tests/parser * Adds test for passing list from storage. * Make blockscopes use set() instead of list(). * specified flake8 script on travis to include tests/ * cleaned up exception block for test_test_bytes * cleaned up bare except under test_arbitration_code * cleaned up bare imports to handle ValueOutOfBounds exception in tests/parser/features/test_constructor.py * cleaned up bare imports test_raw_call * test_test_slice4: cleaned up test assertions for raised exceptions * cleaned up bare excepts in test_extract32 * fixed linter error tests/parser/features/test_internal_call.py * setup.cfg: set flake8 exclusion only for docs * Fixes vyperlang#547, correct handling of units for exponent notation. * Adds tests for unit exponents. * edited travis script for flake8 * Fix err msg for functions without enough arguments * Add an error message for calls to undefined top-level functions Previously, the compiler would error ungracefully if an undefined top-level function was called, due to an unhandled case in `Expr.call`. The compiler now also makes suggestions when a non-existent top-level function is mistakenly called instead of a contract method. * Add `.gitattributes` syntax highlighting trick * Add .gitattributes file * Prevent mixed list type from occuring. * Fixes test that contain mixed list types. * pep8 fixes * Remove num256 greater than 0 check for bytes32 * Bump version: 0.0.2 → 0.0.3
- Loading branch information