Bernardo Ramos
Bernardo Ramos
Any update on this? I modified one of the providers with a different library name, then tried to upload the nuget package but the site says that the namespace is...
If the `sqlite3_win32_set_directory()` function is only present on Windows, why this wrapper tries to get its pointer on other platforms? Check [here](https://github.com/ericsink/SQLitePCL.raw/blob/master/src/SQLitePCLRaw.provider.dynamic_cdecl/Generated/provider_dynamic_cdecl.cs#L1660) This makes it impossible to use the dynamic...
*assistant
So if we present any ResourceDef it will be able to mint and burn? What if the user sends a token instead of a proper badge, and component uses the...
In my opinion ResourceDef for badge and tokens should have a "type" field to differ them, so when using `resim show ...` it would return the type of resource. And...
OK, I am starting to understand this now. When minting or burning, the system only checks something like a unique address (or hash) that identify that resource that was created...
If the above change is implemented, the `new_token_mutable()` function could be used like this: ```rust .new_token_mutable(minter_badge); ``` Instead of ```rust .new_token_mutable(minter_badge.resource_def()); ``` In this way the called function can check...
Yes, I know. But I suppose that the `new_token_mutable` function could check the object type and then retrieve the resource definition from the passed in badge object (correct me if...
Anyway, maybe this is not so important. It is just weird (for me) that the engine accepts any address as the authorizer. Not a big deal
Being able to have non-fungible badges with specific metadata may be useful. But I still think that the API should be easier to use... ```rust let lp_mint_badge = ResourceBuilder::new_fungible(18) .metadata("name",...