Skip to content

Commit 5efc1cc

Browse files
authored
Fixes keepkey typo and adds dcent to replacements (#1243)
1 parent 930c672 commit 5efc1cc

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

packages/core/.eslintrc.cjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ module.exports = {
3838
}
3939
],
4040
'object-curly-spacing': ['error', 'always'],
41-
'@typescript-eslint/no-empty-function': 'off'
41+
'@typescript-eslint/no-empty-function': 'off',
42+
quotes: ['error', 'single', { allowTemplateLiterals: true }]
4243
}
4344
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/core",
3-
"version": "2.8.1",
3+
"version": "2.8.2-alpha.1",
44
"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.",
55
"keywords": [
66
"Ethereum",

packages/core/src/replacement.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ const WALLETS_SUPPORT_REPLACEMENT: WalletState['label'][] = [
1212
'Ledger',
1313
'Trezor',
1414
'Keystone',
15-
'Keepkey'
15+
'KeepKey',
16+
`D'CENT`
1617
]
1718

1819
export const actionableEventCode = (eventCode: string): boolean =>

0 commit comments

Comments
 (0)