Alexander Vtyurin
Alexander Vtyurin
Please add `crates.io` link into readme.
Hey @ImDolfin ! Sorry for such a long delay. To run this library with Android you first need to compile libwirehair to your ABI. Roughly speaking you need: 1. download...
I just made a couple of functions like ```typescript export function setWalletConnected(value: keyof Connectors | null) { localStorage.setItem('__WALLET_CONNECTED', JSON.stringify(value)); } export function isWalletConnected(): keyof Connectors | null { const val...
Is it possible to make this work gradually? Each procedural macros like: `init`, `query` or `update` could write to some file when they are invoked. I mean... for example: *...
Hey! About range. Yes, I'm working on `Iter` trait implementation for all collections right now. This is on the nearest roadmap, I expect this feature to be added this month....
Yes, looks like your solution is incorrect. Your `PartialEq` and `PartialOrd` should be implemented by comparing `principals` of users, but as I understood, you want to compare timestamps. This won't...
Hmm... but now I realized, you won't be able to do this either, since stable vectors don't support removing an element from the middle of the collection for now. This...
I'll let you know when it's ready!
I've implemented iters for all collections in `0.4.0-rc1`, but I don't know yet if `iter().skip()` would work automatically. Gonna keep this issue closed in case it is not.
New version has powerful iterators which allow pagination