-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: script to combine safe txs by chain id
- Loading branch information
1 parent
769cec1
commit 347f366
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
// Import necessary modules | ||
import { SafeTransaction } from '@safe-global/safe-core-sdk-types'; | ||
import * as fs from 'fs'; | ||
import * as path from 'path'; | ||
import yargs from 'yargs'; | ||
|
||
import { getRegistry } from '../../config/environments/mainnet3/chains.js'; | ||
import { getEnvironmentConfig } from '../core-utils.js'; | ||
|
||
type TxFile = { | ||
version: string; | ||
chainId: string; | ||
meta: any; | ||
transactions: SafeTransaction[]; | ||
}; | ||
|
||
// Function to read and parse JSON files | ||
function readJSONFiles(directory: string): Record<string, TxFile[]> { | ||
const files = fs.readdirSync(directory); | ||
const transactionsByChainId: Record<string, TxFile[]> = {}; | ||
|
||
files.forEach((file) => { | ||
if (path.extname(file) === '.json') { | ||
const filePath = path.join(directory, file); | ||
const data = fs.readFileSync(filePath, 'utf8'); | ||
const jsonData = JSON.parse(data) as TxFile; | ||
|
||
const chainId = jsonData.chainId; | ||
if (!transactionsByChainId[chainId]) { | ||
transactionsByChainId[chainId] = []; | ||
} | ||
|
||
transactionsByChainId[chainId].push(jsonData); | ||
} | ||
}); | ||
|
||
return transactionsByChainId; | ||
} | ||
|
||
// Function to write combined transactions to new JSON files | ||
async function writeCombinedTransactions( | ||
transactionsByChainId: Record<string, TxFile[]>, | ||
directory: string, | ||
) { | ||
// Create the output directory | ||
const outputDir = path.join(directory, `combined-txs-${Date.now()}`); | ||
fs.mkdirSync(outputDir, { recursive: true }); | ||
|
||
const config = getEnvironmentConfig('mainnet3'); | ||
const multiProvider = await config.getMultiProvider(); | ||
|
||
for (const [chainId, transactions] of Object.entries(transactionsByChainId)) { | ||
// Create the output data | ||
const outputData = { | ||
version: '1.0', | ||
chainId: chainId, | ||
meta: {}, | ||
transactions: transactions.flatMap((txFile) => txFile.transactions), | ||
}; | ||
|
||
// Write the output file | ||
// NOTE: hacky use of chainid instead of domainid or chain name here | ||
const chainName = multiProvider.getChainName(chainId); | ||
const outputFilePath = path.join(outputDir, `${chainId}-${chainName}.json`); | ||
fs.writeFileSync( | ||
outputFilePath, | ||
JSON.stringify(outputData, null, 2), | ||
'utf8', | ||
); | ||
console.log(`Combined transactions written to ${outputFilePath}`); | ||
} | ||
} | ||
|
||
// Main function to execute the script | ||
async function main() { | ||
const { directory } = await yargs(process.argv.slice(2)).option('directory', { | ||
type: 'string', | ||
describe: 'directory containing txs', | ||
demandOption: true, | ||
alias: 'd', | ||
}).argv; | ||
|
||
if (!fs.existsSync(directory)) { | ||
console.error(`Directory ${directory} does not exist`); | ||
process.exit(1); | ||
} | ||
|
||
const transactionsByChainId = readJSONFiles(directory); | ||
writeCombinedTransactions(transactionsByChainId, directory); | ||
} | ||
|
||
// Execute the main function and handle promise | ||
main().catch((error) => { | ||
console.error('An error occurred:', error); | ||
process.exit(1); | ||
}); |