mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# npm install -g rsa-json first
|
|
|
|
rsa-json --bits=$1 > keys$2.json
|
|
|
|
openssl rsa \
|
|
-in <(node -e "console.log(require('./keys$2.json').private)") \
|
|
-noout -text \
|
|
> keys$2.txt
|
|
|
|
node parse.js keys$2.txt > expected$2.json
|