Psilon

Results 148 comments of Psilon

I have reread the `derive` subcrate source code. It seems that json generation should be moved to `build.rs` to make serde build-time dependency. It looks like `eth_abi` macro voliates SRP...

But it currently makes `serde_json` runtime dependency. As i have shown it doesn't allow user to use serde in the contract. If you have other ideas i'd like to try...

So any progress on this? I also wonder if it works on windows, since I'm struggling with `solc.exe` right now - it fails with ``` '--solc-module=C:/Solidity/solc-076.exe', ``` ... ``` Error:...

Well, it's a bit underwhelming. Anyway, thanks for a quick answer I won't waste my time on trying to figure out what's wrong - I though it should be my...

Any progess/suggestion on that? I feel it really hard to move a contract with several fields (some of which are variable-sized) on wasm. I'm trying to adopt [this code](https://github.com/paritytech/pwasm-repo-contract/blob/master/contract/src/lib.rs), but...

Some progress is done [here](https://github.com/orbita-center/pwasm-abstractions/tree/feature/development). Now it support arrays (with nesting!), but interface is really fragile. So it's working, but it worth to hide it under some kind of attribute,...

I managed to emulate an array, but I only could save ony fixed-sizd items smaller than 32 bytes. It won't work for string or any arbitrary-sized type. Stuck with that...

Hello again. I've just checked HTTP spec: https://datatracker.ietf.org/doc/html/rfc2068 It says: > > For definitive information on URL syntax and semantics, see [RFC 1738](https://datatracker.ietf.org/doc/html/rfc1738) > [[4](https://datatracker.ietf.org/doc/html/rfc2068#ref-4)] and [RFC 1808](https://datatracker.ietf.org/doc/html/rfc1808) [[11](https://datatracker.ietf.org/doc/html/rfc2068#ref-11)]. The...

See https://github.com/rust-lang/rfcs/pull/1303