- 10 Jul, 2019 1 commit
-
-
satellitex authored
* add core gets ext_current_block and BlockNumber Types * add lang gets ext_current_block and BlockNumber Types * add model ext_current_block * Update lang/src/gen/build.rs Co-Authored-By:
Andrew Jones <ascjones@gmail.com> * add test_env current_block clear;
-
- 24 Jun, 2019 1 commit
-
-
Andrew Jones authored
* [model] Make EnvHandler generic over Env * [core] Remove api env functions * [core] Remove default srml types, separate EnvStorage trait * [core] Remove TryFrom bounds * [core, examples] Convert incrementer to use NodeRuntime types * [examples] Ignore duplicate wasm runtime lang items * [examples] Tidy up incrementer example * [core] Add Hash constraint for AccountId * [examples] Convert model ERC20 example * [lang, examples] Generate env type aliases, convert ERC20 example * [types] Add pre-baked node-runtime types lib * [examples] Convert core/incrementer to use node-runtime-types * [examples] Convert lang/erc20 to use node-runtime-types * [examples] Convert model/erc20 to use node-runtime-types * [types, examples] Rename node-runtime to node_runtime * [types] Add default contract environment types * [types] Rename type crates * [types, core] Move default types back to core * [examples] Convert flipper example to use default types * [core] Fix up test_env * [core] Fix syn Errors after merge * [core] Temporarily suppress unused errors in test_env * [tests] Fix up test compilation * [tests] Remove unused test code overrides * [core] Make SrmlEnvStorage enum * [core] Fix empty enum * Use Debug impl of AccountId * [model] Remove stray license template line * [lang] Replace Env type alias with explicit type * [core, tests] Store raw bytes in TestEnv data * [model] Fix tests * [examples] Add missing env import * [core] Remove Hash + Copy constraints * [core] Replace unwrap with expect * [core] Remove unused import * [lang] Fix missing Env type param for test-env * [examples] Construct AccountId in tests by decoding bytes * [examples] set_caller helper function * [core, examples] Extract TestEnv events, no type param required * [core, examples] Restore `r#return` api call * [examples] Use from impl for AccountId * [core. lang] Encode concrete env type in contract * [lang] Fix lang failure tests * [examples] Fix lang incrementer example * [lang] Fix up events test * [lang] Increase recursion limit for lang test * [lang] Encapsulate env types in module and use alias for ContractEnv * [lang] Fix remaining lang tests * [examples] Move node runtime types to separate repo * [lang] Make types public and prefix ContractEnv alias * [lang] Remove ContractEnv alias, inline type * [fix] Remove types/node_runtime from workspace * [lang] Use fully qualified ContractEnv, fix lang tests * [examples] Fix events lang example * [lang, examples] Convert erc20 example to use new ink-types-node-runtime * [docs, template, examples] Add missing EnvTypes declaration * [lang] Add super import to types mod * [examples] use DefaultSrmlTypes in erc20 example * [examples] Use ink-types-node-runtime lib * [examples] Use remote git dependency * [core] remove unused reexport * [core] update docs * [examples] Fix core incrementer example * [lang] Move 'env' type alias to test module * Revert "[lang] Move 'env' type alias to test module" This reverts commit 8f73f37b * [lang] use Env trait to allow calling methods from type alias * [lang] Fix lang codegen tests * [lang] Use inner attr for EnvTypes instead of type alias * [lang] Add some tests for parsing env types meta attr * [lang] Pass EnvHandler type to fix compile error after merge * [core] Add extra trait bounds to EnvTypes * [core] EnvTypes test-env feature * [examples] Reference master ink! in anticipation of merge * [core] Docs and pub(self) * [examples] Convert to AccountId::from * [lang] Revert recursion limit * [core] Make ContractEnv pub again * [lang] remove env type alias * [core] restore test env emitted_events method * [core] missing T * [core] emitted_events missing type parameter * [examples] update env usage in erc20 * [examples] update env usage in other lang examples * [examples] fix up core examples * [examples] fix up model examples * [core] fix import * [core] phantom marker grumble * [core] comment grumble * [core] return Iterator from emitted_events * [lang] remove commented out code * [core] remove redundant allow_unused * [examples] use DefaultSrmlTypes for erc20 example
-
- 23 May, 2019 1 commit
-
-
Hero Bird authored
* [ink] Update rust-toolchain from 2019-04-20 to 2019-05-21 * [core,lang] Update & fix Cargo information * [chores] Update rustfmt version to the current toolchain * [core] Clean up, fix some warnings * [core] Remove unneeded dependency * [core] Ignore return value of Key ops Fixes a warning * [core,model] Adjust warning level * [lang] Minor rustfmt run * [ink] Add topics to events For now, ink! will simply leave topics slice empty. * [core] Add ext_gas_left, ext_gas_price and ext_value_transferred bindings * [core] Clean up some code by dedup * [core] Further code clean up * [core] Simplify SrmlEnv::load impl
-
- 14 May, 2019 1 commit
-
-
Logan Saether authored
* Impl ext_now * Fix build * use read_scratch_buffer * remove examples
-
- 09 May, 2019 1 commit
-
-
Jordan Beauchamp authored
-
- 22 Apr, 2019 4 commits
-
-
Hero Bird authored
This should resolve confusions about Address and AccountId encoding/decoding.
-
Robin Freyler authored
-
Robin Freyler authored
-
Robin Freyler authored
-
- 20 Apr, 2019 1 commit
-
-
Robin Freyler authored
-
- 18 Apr, 2019 1 commit
-
-
* [core] Add `ext_deposit_event` runtime call bindings A litle bit of guessing how to integrate this into PDSL using the [commit for adding println](https://github.com/Robbepop/pdsl/commit/8517e0b9a97132e714cb9d894bab35daa9385e33) and [commit for ext_deposit_event](https://github.com/paritytech/substrate/commit/e748c33c8ef40bd51dc122b7f11fcf26b8354957) Right now, I have it so test_env prints the event data when it is called. Is this right? Is anything here right? * [core] Fix printing of vec for `deposit_event` * [core] Run cargo fmt * [core] Fix comment and Vec<u8> to &[u8] * [core] Add `events` storage in `test_env` This is pretty hacky until we have a more defined plan around types from `node-template` * [core] Fix mutability across events * [core] Fix comment * [core] Use `EventData` rather than `Vec<u8>` * [core] Add derive traits to event data * [core,model] Rename & add model api for `deposit_raw_event` * [core] Fix compilation issues and fmt * [core] Update function name to `deposit_raw_event` * [core] Fix cargo fmt
-
- 17 Apr, 2019 1 commit
-
-
- 11 Apr, 2019 1 commit
-
-
Robin Freyler authored
-
- 12 Mar, 2019 1 commit
-
-
Robin Freyler authored
-
- 06 Mar, 2019 1 commit
-
-
Robin Freyler authored
This splits ExecutionEnv into EnvHandler and State. Useful if users want to implement functionality as methods on the state to make them callable from other messages.
-
- 27 Feb, 2019 1 commit
-
-
Hero Bird authored
-
- 19 Feb, 2019 1 commit
-
-
Hero Bird authored
-
- 18 Feb, 2019 1 commit
-
-
Hero Bird authored
-
- 17 Feb, 2019 1 commit
-
-
Hero Bird authored
-
- 13 Feb, 2019 1 commit
-
-
Hero Bird authored
This is only implemented since we want to use it in a demo contract.
-
- 12 Feb, 2019 2 commits