Elina

Results 255 comments of Elina

@vlad20012 The scope of this issue is really to allow writing the kind of plugin that you mentioned in https://github.com/yewstack/yew/pull/2972#issuecomment-1324830781 At the moment, we have to no way to hook...

I tried to look into it a while back but couldn't find any documentation on where to get started. LALRPOP plugin seems to be something else though. It adds language...

`addPermittedAction` tries to decode CID as base58: https://github.com/LIT-Protocol/js-sdk/blob/412264bb37ec586785d389fc9a9416f422b91c7f/packages/contracts-sdk/src/lib/contracts-sdk.ts#L1495 https://github.com/LIT-Protocol/js-sdk/blob/412264bb37ec586785d389fc9a9416f422b91c7f/packages/contracts-sdk/src/lib/contracts-sdk.ts#L1709-L1713 This is wrong: [Only v0 CIDs are guaranteed base58](https://docs.ipfs.tech/concepts/content-addressing/#version-0-v0) (which explains why the ipfs-only-hash library works). V1 CIDs _may_ be base58...

[multiformats](https://github.com/multiformats/js-multiformats) library can be used to properly implement `getBytesFromMultihash` function. `CID` class from this library provides a way to get the CID as bytes

The gloo examples are to be used with trunk, which is the defacto build tool for rust/wasm frontend frameworks. The index.html is read by trunk. I think we should clarify...

Yew 0.21 introduced some breaking changes that the examples have not been updated for. I would be happy to have a look at any PRs updating the examples

@cs2dsb apologies for the late response. #488 should resolve the issue you're havinb

@MadMed677 yes, the published version is quite old. you should take a dependency from git, which _should_ be fine

@MadMed667 right, the git one gives you an error, I should've expected that. It can't find the modules I suggest you clone the repo and then use a path dependency...

Every [major browser supports it](https://caniuse.com/mdn-api_worker_worker_ecmascript_modules) so I don't see the need to keep the no-modules around. There is no user code that needs to be updated, as far as I'm...