Skip to content

Instantly share code, notes, and snippets.

@dmihal
Created January 7, 2020 21:24
Show Gist options
  • Save dmihal/60b40a79b56392d860cfbb2fdead4f46 to your computer and use it in GitHub Desktop.
Save dmihal/60b40a79b56392d860cfbb2fdead4f46 to your computer and use it in GitHub Desktop.
import ENSPlugin from '@burner-wallet/ens-plugin';
import ERC681Plugin from '@burner-wallet/erc681-plugin';
import RecentAccountsPlugin from '@burner-wallet/recent-accounts-plugin';
import MetamaskPlugin from '@burner-wallet/metamask-plugin';
//...
const BurnerWallet = () =>
<ModernUI
title="Basic Wallet"
core={core}
plugins={[
new ENSPlugin(),
new ERC681Plugin(),
new RecentAccountsPlugin(),
new MetamaskPlugin(),
]}
/>
/...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment