Created
January 7, 2020 21:24
-
-
Save dmihal/60b40a79b56392d860cfbb2fdead4f46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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