Skip to content

Commit 00d0eed

Browse files
authored
port over fixes from canary (#1638)
* properly populate legacy transactions when serializing * dont migrate to pylon connections if user chooses to use custom presets * Chain reconnect (#1634) * reset chain connections on resume event * remove console log * remove settimeout * add safety check * fix power monitor in tests * try 0.6.7 draft release * try to move test mocks back * use pylon preset as default for base goerli * subscribe to rates for custom tokens as well * remove temp builds from build file
1 parent a025d72 commit 00d0eed

File tree

9 files changed

+59
-15
lines changed

9 files changed

+59
-15
lines changed

.github/workflows/build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- 'develop'
7-
- '0.6.3-build'
87

98
env:
109
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

app/notify/App/Notification/MoveToPylon/index.jsx

-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ const MoveToPylon = () => {
2828
<PylonConfirm>
2929
<PylonConfirmButton
3030
onClick={() => {
31-
link.send('tray:action', 'migrateToPylonConnections')
32-
link.send('tray:action', 'mutePylonMigrationNotice')
3331
link.send('frame:close')
3432
}}
3533
>

app/tray/Account/Requests/TransactionRequest/TxFee/index.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,15 @@ class TxFee extends React.Component {
6767
}
6868

6969
getOptimismFee = (l2Price, l2Limit, rawTx) => {
70-
const serializedTransaction = utils.serializeTransaction(Object.assign({}, rawTx, { type: 2 }))
70+
const { maxFeePerGas, maxPriorityFeePerGas, gasPrice, data, gasLimit, nonce, to, value } = rawTx
71+
const chainId = parseInt(rawTx.chainId, 16)
72+
const txData = { chainId, data, gasLimit, nonce, to, value }
73+
74+
const tx = !!maxFeePerGas
75+
? { ...txData, maxFeePerGas, maxPriorityFeePerGas, type: 2 }
76+
: { ...txData, gasPrice, type: 0 }
77+
78+
const serializedTransaction = utils.serializeTransaction(tx)
7179

7280
// Get current Ethereum gas price
7381
const ethBaseFee = this.store('main.networksMeta.ethereum', 1, 'gas.price.fees.nextBaseFee')

main/chains/index.js

+28-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// status = Network Mismatch, Not Connected, Connected, Standby, Syncing
2-
2+
const { powerMonitor } = require('electron')
33
const EventEmitter = require('events')
44
const { addHexPrefix } = require('@ethereumjs/util')
55
const { Hardfork } = require('@ethereumjs/common')
@@ -436,15 +436,21 @@ class Chains extends EventEmitter {
436436
super()
437437
this.connections = {}
438438

439-
store.observer(() => {
439+
const removeConnection = (chainId, type = 'ethereum') => {
440+
if (type in this.connections && chainId in this.connections[type]) {
441+
this.connections[type][chainId].removeAllListeners()
442+
this.connections[type][chainId].close(false)
443+
delete this.connections[type][chainId]
444+
}
445+
}
446+
447+
const updateConnections = () => {
440448
const networks = store('main.networks')
441449

442450
Object.keys(this.connections).forEach((type) => {
443451
Object.keys(this.connections[type]).forEach((chainId) => {
444452
if (!networks[type][chainId]) {
445-
this.connections[type][chainId].removeAllListeners()
446-
this.connections[type][chainId].close(false)
447-
delete this.connections[type][chainId]
453+
removeConnection(chainId, type)
448454
}
449455
})
450456
})
@@ -482,7 +488,24 @@ class Chains extends EventEmitter {
482488
}
483489
})
484490
})
491+
}
492+
493+
powerMonitor.on('resume', () => {
494+
const activeConnections = Object.keys(this.connections)
495+
.map((type) => Object.keys(this.connections[type]).map((chainId) => `${type}:${chainId}`))
496+
.flat()
497+
498+
log.info('System resuming, resetting active connections', { chains: activeConnections })
499+
500+
activeConnections.forEach((id) => {
501+
const [type, chainId] = id.split(':')
502+
removeConnection(chainId, type)
503+
})
504+
505+
updateConnections()
485506
})
507+
508+
store.observer(updateConnections, 'chains:connections')
486509
}
487510

488511
send(payload, res, targetChain) {

main/externalData/assets/index.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default function rates(pylon: Pylon, store: Store) {
1818
const storeApi = {
1919
getKnownTokens: (address?: Address) =>
2020
((address && store('main.tokens.known', address)) || []) as Token[],
21+
getCustomTokens: () => (store('main.tokens.custom') || []) as Token[],
2122
setNativeCurrencyData: (chainId: number, currencyData: NativeCurrency) =>
2223
store.setNativeCurrencyData('ethereum', chainId, currencyData),
2324
setNativeCurrencyRate: (chainId: number, rate: Rate) =>
@@ -67,7 +68,13 @@ export default function rates(pylon: Pylon, store: Store) {
6768
function updateSubscription(chains: number[], address?: Address) {
6869
const subscribedCurrencies = chains.map((chainId) => ({ type: AssetType.NativeCurrency, chainId }))
6970
const knownTokens = storeApi.getKnownTokens(address).filter((token) => chains.includes(token.chainId))
70-
const subscribedTokens = knownTokens.map((token) => ({
71+
const customTokens = storeApi
72+
.getCustomTokens()
73+
.filter(
74+
(token) => !knownTokens.some((kt) => kt.address === token.address && kt.chainId === token.chainId)
75+
)
76+
77+
const subscribedTokens = [...knownTokens, ...customTokens].map((token) => ({
7178
type: AssetType.Token,
7279
chainId: token.chainId,
7380
address: token.address

main/provider/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ export class Provider extends EventEmitter {
497497
const populatedTransaction = populateTransaction(tx, chainConfig, gas)
498498
const checkedTransaction = checkExistingNonceGas(populatedTransaction)
499499

500-
log.verbose('Succesfully populated transaction', checkedTransaction)
500+
log.verbose('Successfully populated transaction', checkedTransaction)
501501

502502
cb(null, { tx: checkedTransaction, approvals })
503503
} catch (error) {

main/store/state/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -432,12 +432,12 @@ const mainState: M = {
432432
connection: {
433433
primary: {
434434
on: true,
435-
current: 'custom',
435+
current: 'pylon',
436436
status: 'loading',
437437
connected: false,
438438
type: '',
439439
network: '',
440-
custom: 'https://goerli.base.org'
440+
custom: ''
441441
},
442442
secondary: {
443443
on: false,

main/windows/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,11 @@ class Notify {
526526
const cleanupHandler = () => windows.notify?.off('close', closeHandler)
527527

528528
const closeHandler = () => {
529-
store.mutePylonMigrationNotice()
530-
store.migrateToPylonConnections()
529+
if (!store('main.mute.migrateToPylon')) {
530+
store.migrateToPylonConnections()
531+
store.mutePylonMigrationNotice()
532+
}
533+
531534
if (!store('main.mute.onboardingWindow')) {
532535
store.setNotify({ showing: false })
533536
store.setOnboard({ showing: true })

test/main/chains/index.test.js

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ import { gweiToHex } from '../../util'
77

88
log.transports.console.level = false
99

10+
jest.mock('electron', () => ({
11+
powerMonitor: {
12+
on: jest.fn()
13+
}
14+
}))
15+
1016
class MockConnection extends EventEmitter {
1117
constructor(chainId) {
1218
super()

0 commit comments

Comments
 (0)