Michał Papierski
Michał Papierski
This project looks unmaintained. I made some fixes in my fork to use this with Django 1.6+. Here is short TODO: - [x] url patterns new style - [X] md5...
Do you mind adding proper open source license?
This PR adds support for `NonZero` types from the standard library. I needed a way to perform some basic validation of a user input and ensure that the passed value...
For each exec() call in the test suite, this PR attaches instrumentation data that will uniquely identify a given run, together with duration, gas_cost, and error and save this data...
This massive PR adds an MVP new smart contract execution engine based on wasmer. This aims to address some long-standing issues with the current engine as well as improve developers'...
Closes #2103 This PR removes unchecked arithmetic operations. Although nearly impossible this is for correctness reason to avoid using unchecked math even on large numbers.
We should remove unchecked operators such as Add, Sub, Div, etc., from Gas and Motes types. Subtle and hard to detect bugs can happen with uncareful use of this. All...
As it turns out, `runtime::get_call_stack` is an essential function call for smart contract security purposes. But unfortunately, it is a costly one: it calls 2 host functions, deserializes the whole...