Skip to content

Commit cc655f2

Browse files
committed
fix(WalletConnect): Fixing sign for uniswap and paraswap
There are two fixes needed here. 1. Status-go fix for unknown primitive when signing the message 2. Fix for Paraswap pairing failure due to required namespaces mismatch Needs: status-im/status-go#5755
1 parent 9aac6bb commit cc655f2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

storybook/qmlTests/tests/tst_DAppsWorkflow.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ Item {
700700
verify(eip155.hasOwnProperty("methods"))
701701
verify(eip155.methods.length > 0)
702702
verify(eip155.hasOwnProperty("events"))
703-
compare(eip155.events.length, 2)
703+
compare(eip155.events.length, 5)
704704
}
705705

706706
function test_getAccountsInSession() {

ui/app/AppLayouts/Wallet/services/dapps/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function buildSupportedNamespaces(chainIds, addresses, methods) {
6868
"eip155":{
6969
"chains": [${eipChainIds.join(',')}],
7070
"methods": [${methodsStr}],
71-
"events": ["accountsChanged", "chainChanged"],
71+
"events": ["chainChanged","accountsChanged","message","disconnect","connect"],
7272
"accounts": [${eipAddresses.join(',')}]
7373
}
7474
}`

vendor/status-go

Submodule status-go updated 84 files

0 commit comments

Comments
 (0)