A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const jsonDiffer = require('fast-json-patch')
|
|
|
|
const clone = require('clone')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
generateHistoryEntry,
|
|
|
|
replayHistory,
|
|
|
|
snapshotFromTxMeta,
|
|
|
|
migrateFromSnapshotsToDiffs,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function migrateFromSnapshotsToDiffs(longHistory) {
|
|
|
|
return (
|
|
|
|
longHistory
|
|
|
|
// convert non-initial history entries into diffs
|
|
|
|
.map((entry, index) => {
|
|
|
|
if (index === 0) return entry
|
|
|
|
return generateHistoryEntry(longHistory[index - 1], entry)
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function generateHistoryEntry(previousState, newState) {
|
|
|
|
return jsonDiffer.compare(previousState, newState)
|
|
|
|
}
|
|
|
|
|
|
|
|
function replayHistory(shortHistory) {
|
|
|
|
return shortHistory.reduce((val, entry) => jsonDiffer.applyPatch(val, entry).newDocument)
|
|
|
|
}
|
|
|
|
|
|
|
|
function snapshotFromTxMeta(txMeta) {
|
|
|
|
// create txMeta snapshot for history
|
|
|
|
const snapshot = clone(txMeta)
|
|
|
|
// dont include previous history in this snapshot
|
|
|
|
delete snapshot.history
|
|
|
|
return snapshot
|
|
|
|
}
|