954831538d
* update deps * revert react dep updates * chore: update deps to beta.50 * fix: get dapp running again up to Client.connect() * save progress * feat(debug): sets up a debug peerClient as responder * refactor: remove more hardcoded example connect params * fix: gets `checkPersistedState` working again * fix: gets client.disconnect + effects working again * feat: integrates `session_update` handling with namespaces * fix: remove hardcoded `chains` * stash progress * Establish session * save progress - established session with example dapp * refactor: rewrite namespace helpers to handle `requiredNamespaces` (#23) * fix: re-enables restoring persisted session * refactor: remove debug peerClient code * fix: re-enables restoring persisted pairings * Save progress * fix: re-enables pairing modal, connecting from existing pairing * Update modals to handle new payloads * fix(types): fix Metadata typing * chore(deps): upgrade to beta.53 * refactor: adjusts event handler args for beta.53 `session_update` * stash * fix: adds missing keys for `DEFAULT_EIP155_EVENTS` enum * stash * chore: update comment for client.request typing FIXME * feat: integrate beta.54 * feat: integrate beta.55, removes FIXME comments for client.request types * chore: clean up unused import * fix: log session_ping event * fix: log incoming `session_event` * chore: upgrade client@2.0.0-beta.55 -> sign-client@2.0.0-beta.56 * chore: integrate beta.57 * New beta changes (#24) * smal lchange * fix types * Add package info * format empty methods / events * Update deps * adjust styles * attempt ios layout fix * Revert "attempt ios layout fix" This reverts commit f0176f2ef52f338980ee54e75a767b3d452733f2. * beta.54 * fix build * Update to beta 55 * Add todos * update wallet to beta 56 * Update mumbai rpc add logger * update to beta 57 * chore: adds note on beta.100 compatibility * plock * beta.58 * beta.100; Co-authored-by: Ilja <idaderko@gmail.com> Co-authored-by: Ben Kremer <ben@walletconnect.com> Co-authored-by: Ilja <IljaDaderko@users.noreply.github.com>
90 lines
2.3 KiB
JSON
90 lines
2.3 KiB
JSON
{
|
|
"name": "react-dapp-v2",
|
|
"version": "2.0.0-beta.100",
|
|
"private": true,
|
|
"keywords": [
|
|
"walletconnect",
|
|
"ethereum",
|
|
"web3",
|
|
"crypto"
|
|
],
|
|
"author": "WalletConnect, Inc. <walletconnect.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject",
|
|
"prettier": "prettier --check '**/*.{js,ts,jsx,tsx}'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
|
|
},
|
|
"resolutions": {
|
|
"react-error-overlay": "6.0.9"
|
|
},
|
|
"dependencies": {
|
|
"@ethereumjs/tx": "^3.5.0",
|
|
"@solana/web3.js": "^1.36.0",
|
|
"@walletconnect/sign-client": "2.0.0-beta.100",
|
|
"@walletconnect/legacy-modal": "2.0.0-beta.100",
|
|
"@walletconnect/types": "2.0.0-beta.100",
|
|
"@walletconnect/utils": "2.0.0-beta.100",
|
|
"axios": "^0.21.1",
|
|
"blockies-ts": "^1.0.0",
|
|
"bs58": "^5.0.0",
|
|
"caip-api": "^2.0.0-beta.1",
|
|
"cosmos-wallet": "^1.2.0",
|
|
"eth-sig-util": "^2.5.3",
|
|
"ethereumjs-util": "^7.0.6",
|
|
"ethers": "^5.3.0",
|
|
"prop-types": "^15.7.2",
|
|
"qr-image": "^3.2.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "^4.0.3",
|
|
"solana-wallet": "^1.0.1",
|
|
"styled-components": "^5.2.0",
|
|
"typescript": "^4.3.2",
|
|
"web-vitals": "^0.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.16.1",
|
|
"@testing-library/react": "^12.1.2",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/bn.js": "^5.1.0",
|
|
"@types/eth-sig-util": "^2.1.1",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.14",
|
|
"@types/pino": "^7.0.5",
|
|
"@types/prop-types": "^15.7.4",
|
|
"@types/qr-image": "^3.2.5",
|
|
"@types/react": "^17.0.38",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@types/styled-components": "^5.1.21",
|
|
"prettier": "^2.5.1"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|