Flavius

Results 7 issues of Flavius

If I run `await provider.enable()` but then close the modal so it trigger the promise error, running `await provider.enable()` a second time doesn't show the QR modal again (the promise...

Hi, I'm using ethers.js to call a contract function which works fine when using metamask in chrome but when using metamask on mobile linked with WalletConntect the function call never...

I'm seeing an issue when I'm signed in and refresh the page. Instead of staying signed in, I get redirected to the /signin page due to my middleware not detecting...

question

When querying repos with Repositories.ListAll, StargazersCount is always nil. Is there any other way to get the number of stars for different repositories if this isn't the correct way?

I have ESC remapped in VIM to be able to clear search highlights like this: ``` augroup escape_mapping autocmd! autocmd InsertEnter * call s:setupEscapeMap() augroup END function! s:setupEscapeMap() nnoremap :noh...

I have two components: ``` components/ - ComponentA.vue - ComponentB.vue ``` And if I want ComponentA to use ComponentB, it seems I still need to manually import ComponentB. Is this...

I have a contract that inherits from [PullPayment](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/PullPayment.sol), which creates the [Escrow](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/escrow/Escrow.sol) contract in its constructor. I'd like to match against the events emitted by the Escrow contract. Apologies if...