Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/injected/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const WALLET_NAMES: { [key: string]: string } = {
binance: 'Binance Chain Wallet',
bitpie: 'Bitpie',
bitski: 'Bitski',
trust: 'Trust Wallet',
coinbasewallet: 'Coinbase Wallet',
dcentwallet: "D'CENT",
metamask: 'MetaMask',
Expand Down
2 changes: 1 addition & 1 deletion packages/injected/src/wallets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const trust: InjectedWalletModule = {
eth_selectAccounts: UNSUPPORTED_METHOD
})
}),
platforms: ['mobile']
platforms: ['all']
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the only change that occurred with the desktop wallet provider?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's it. Assumption is that's all that's needed to support our new browser extension: https://chrome.google.com/webstore/detail/trust-wallet/egjidjbpglichdcondbcbdnbeeppgdph

Copy link
Contributor

@Adamj1232 Adamj1232 Nov 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@chaoticgoodpanda great, have you tested with the internal demo project(packages/demo) to verify W3O is working properly with changing of chains, signing, sending transaction, etc?
Running yarn && yarn dev will get it going

}

const opera: InjectedWalletModule = {
Expand Down