Vadim Saveljev
Vadim Saveljev
@jacogr Do we want a dropdown with extensions and let user decide anything? Or that's something I just over-engineered? The initial problem was: multi popups if you have 2 or...
Taking into account what was discussed here, this is what I'm planning to do (subject to change if something unexpected pops up in the process): - use extensions/index.ts as the...
@jacogr I was looking for a method to just check if dapp is authorized in extension, but can't seem to find one. the `pub(authorize.tab)` triggered by `.enable` immediately calls for...
If you open dapp for the first time in that browser and you have more than one extension installed - multiple popups will appear for each extension asking user to...
> Interesting issue I too had to deal with eventually. iiuc you would go through the list in `window.injectedKeys` and call the `enable` for the first extension that has `isEnabled...
@jacogr any thoughts/comments? Can we proceed in some way, cause this functionality is important and a semi-blocker right now.
Not sure if this will help, but part of what you specify for connection params `chains: [polkadot: 'polkadot:91b171bb158e2d3848fa23a9f1c25182'],` should look like this `chains: ['polkadot:91b171bb158e2d3848fa23a9f1c25182'],`
Here is a simple illustration: capi ``` local.Nfts.create({ config: collectionConfig, admin: MultiAddress.Id(ss58.decode(activeAccount.address)[1]), }) ``` pjs `api.tx.nfts.create(activeAccount.address, collectionConfig)` Here is a quote from docs: > It consists of a development server...
the only way to mitigate this for now is to use the initial code without await or return true and add `.rehandle(is(SignerError), (error) => error.access('inner'))` after `.transactionStatuses` At least this...