Skip to content

Commit

Permalink
Fixes keepkey typo and adds dcent to replacements (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
lnbc1QWFyb24 authored Sep 2, 2022
1 parent 930c672 commit 5efc1cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/core/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ module.exports = {
}
],
'object-curly-spacing': ['error', 'always'],
'@typescript-eslint/no-empty-function': 'off'
'@typescript-eslint/no-empty-function': 'off',
quotes: ['error', 'single', { allowTemplateLiterals: true }]
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/core",
"version": "2.8.1",
"version": "2.8.2-alpha.1",
"description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
"keywords": [
"Ethereum",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/replacement.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ const WALLETS_SUPPORT_REPLACEMENT: WalletState['label'][] = [
'Ledger',
'Trezor',
'Keystone',
'Keepkey'
'KeepKey',
`D'CENT`
]

export const actionableEventCode = (eventCode: string): boolean =>
Expand Down

0 comments on commit 5efc1cc

Please sign in to comment.