You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've created following snippet as a workaround for now:
// Visit https://wallet.interledger-test.dev/settings/developer-keys and run following in devtools consoleawaitPromise.all(JSON.parse(document.getElementById("__NEXT_DATA__").textContent).props.pageProps.accounts.flatMap((account)=>account.walletAddresses.flatMap((wa)=>wa.keys.flatMap((k)=>`https://api.wallet.interledger-test.dev/accounts/${account.id}/wallet-addresses/${wa.id}/${k.id}/revoke-key`,),),).map((url)=>fetch(url,{method: "PATCH",credentials: "include"})),);
Describe the feature you would like to request
As mentioned in #1353, we as developers end up with a lot of keys. There should be a way to revoke multiple keys at once.
Describe the solution you would like
Additional context
No response
The text was updated successfully, but these errors were encountered: