-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
222 lines (191 loc) · 5.31 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#!/usr/bin/env node
import fs from "node:fs";
import Client from "mina-signer";
import * as p from "@clack/prompts";
import pc from "picocolors";
const MINA_NETWORK = "mainnet";
const mina = new Client({ network: MINA_NETWORK });
let wallet = {};
let nonce = "";
//---------------
// Main
//---------------
async function main() {
intro();
await getWallet();
await signTransaction();
outro();
}
main().catch(e => console.log(pc.red("\nUnexpected Error.\n"), pc.red(e.message)));
//---------------
// Functions
//---------------
function intro() {
console.log();
const { version } = JSON.parse(fs.readFileSync(new URL("package.json", import.meta.url), "utf-8"));
p.intro(pc.bold(pc.blue(`mina-offline-util version ${version}`)));
}
function outro() {
p.outro("Copy output JSON via a USB stick and broadcast it to MINA network on your online computer.");
}
async function getWallet() {
const option = await p.select({
message: pc.bold("Select Wallet:"),
options: [
{ value: "key", label: "Enter a private key" },
{ value: "new", label: "Create a new wallet" }
]
});
isCancel(option);
if (option === "new") wallet = mina.genKeys();
else await getPrivateKey();
p.log.message(`Wallet Public Address: ${wallet.publicKey}`);
await showPrivateKey();
}
async function getPrivateKey() {
const privateKey = await p.password({
message: "Enter Private Key:",
validate(value) {
if (!value.length) return "Private Key is required!";
}
});
isCancel(privateKey);
wallet = { privateKey, publicKey: mina.derivePublicKey(privateKey) };
}
async function showPrivateKey() {
const show = await p.confirm({
message: "Show Private Key?",
initialValue: false
});
isCancel(show);
if (show) {
p.log.message(`Wallet Private Key: ${wallet.privateKey}`);
p.log.warn("Keep your Private Key secure. Do not share it with anyone.");
}
}
async function signTransaction() {
let next = true;
while (next) {
const option = await p.select({
message: pc.bold("What will you like to sign?"),
options: [
{ value: "pay", label: "Payment Transaction" },
{ value: "stake", label: "Stake Delegation" }
]
});
isCancel(option);
if (option === "pay") await signPayment();
else await signStakeDelegation();
next = await p.confirm({
message: "Sign another transaction?",
initialValue: false
});
isCancel(next);
}
}
async function signOptions(initOptions) {
const options = await p.group(
{
...initOptions,
nonce: () =>
p.text({
message: "Nonce:",
placeholder: " (you can check Nonce value on Mina Explorer)",
initialValue: nonce.toString(),
validate(value) {
if (!value.length) return "Nonce is required!";
if (Number.isNaN(value)) return "Nonce must be an integer!";
if (!Number.isInteger(Number(value))) return "Nonce must be an integer!";
}
}),
fee: () =>
p.text({
message: "Fee:",
initialValue: "0.01",
validate(value) {
if (!value.length) return "Fee is required!";
if (Number.isNaN(value)) return "Fee must be a number!";
}
}),
memo: () =>
p.text({
message: "Memo:",
placeholder: " (hit Enter to leave empty)",
defaultValue: ""
})
},
{
onCancel: cancel
}
);
nonce = Number(options.nonce) + 1;
return options;
}
async function signPayment() {
const options = {
amount: () =>
p.text({
message: "How much $MINA do you want to send?",
validate(value) {
if (!value.length) return "Value is required!";
if (Number.isNaN(value)) return "Amount must be a number!";
}
}),
receiver: () =>
p.text({
message: "Enter Receiver Wallet Address:",
validate(value) {
if (!value.length) return "Receiver address is required!";
if (!value.startsWith("B62")) return "Entered address is not valid!";
}
})
};
const { amount, receiver, fee, nonce, memo } = await signOptions(options);
const result = mina.signPayment(
{
to: receiver,
from: wallet.publicKey,
amount: toDecimalBase9(amount),
fee: toDecimalBase9(fee),
nonce: Number(nonce),
memo
},
wallet.privateKey
);
console.log("\n", result, "\n");
}
async function signStakeDelegation() {
const options = {
validator: () =>
p.text({
message: "Enter Validator Address:",
validate(value) {
if (!value.length) return "Validator address is required!";
if (!value.startsWith("B62")) return "Entered address is not valid!";
}
})
};
const { validator, fee, nonce, memo } = await signOptions(options);
const result = mina.signStakeDelegation(
{
to: validator,
from: wallet.publicKey,
fee: toDecimalBase9(fee),
nonce: Number(nonce),
memo
},
wallet.privateKey
);
console.log("\n", result, "\n");
}
// Convert Mina value to order of base 9 decimal
function toDecimalBase9(minaValue) {
return minaValue * 10 ** 9;
}
function cancel() {
p.cancel("Operation cancelled");
return process.exit(1);
}
function isCancel(prop) {
if (p.isCancel(prop)) cancel();
}