Skip to content

Commit 032f8eb

Browse files
fix tests
1 parent dc95a73 commit 032f8eb

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docs/injected-provider/working_demo.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,12 +270,9 @@ providerInfo = {
270270
uuid: 'core-mobile-' + Date.now(),
271271
name: 'Core',
272272
icon: 'data:image/svg+xml;base64,...', // Core logo
273-
rdns: 'app.core.extension'
273+
rdns: 'app.core.mobile'
274274
}
275275
```
276-
277-
The `rdns: 'app.core.extension'` matches the Core browser extension's identifier in wallet connection libraries, so dApps show the correct Core branding.
278-
279276
---
280277

281278
## 6. Native Bridge Deep Dive

packages/core-mobile/app/hooks/browser/evmProviderShim.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ describe('buildEvmProviderShim', () => {
189189
expect(shim).toContain('eip6963:requestProvider')
190190
})
191191

192-
it('uses rdns app.core.extension', () => {
193-
expect(shim).toContain("rdns: 'app.core.extension'")
192+
it('uses rdns app.core.mobile', () => {
193+
expect(shim).toContain("rdns: 'app.core.mobile'")
194194
})
195195

196196
it('sets provider name to Core', () => {

0 commit comments

Comments
 (0)