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
|
import { build$, CommandBuilder } from "jsr:@david/dax";
export const $ = build$({
commandBuilder: new CommandBuilder()
.printCommand(true)
.stdin("inherit")
.stdout("inherit")
.stderr("inherit"),
});
export async function downloadMoneroCli() {
const MONERO_CLI_VERSION = "monero-linux-x64-v0.18.3.4";
const MONERO_WALLET_CLI =
`https://downloads.getmonero.org/cli/${MONERO_CLI_VERSION}.tar.bz2`;
await $`wget ${MONERO_WALLET_CLI}`;
await $
.raw`tar -xvf ${MONERO_CLI_VERSION}.tar.bz2 --one-top-level=monero-cli --strip-components=1 -C tests`;
await $.raw`rm ${MONERO_CLI_VERSION}.tar.bz2`;
}
interface WalletInfo {
path: string;
password: string;
address: string;
secretSpendKey: string;
publicSpendKey: string;
secretViewKey: string;
publicViewKey: string;
}
export async function createWalletViaCli(
name: string,
password: string,
): Promise<WalletInfo> {
const path = `./tests/wallets/${name}`;
await $`./tests/monero-cli/monero-wallet-cli --generate-new-wallet ${path} --password ${password} --mnemonic-language English --command exit`
.stdout("null");
const address =
(await $`./tests/monero-cli/monero-wallet-cli --wallet-file ${path} --password ${password} --command address`
.stdinText(`${password}\n`)
.lines())
.at(-1)!
.split(/\s+/)[1];
const retrieveKeys = (lines: string[]) =>
lines.slice(-2)
.map((line) => line.split(": ")[1]);
const [secretSpendKey, publicSpendKey] = retrieveKeys(
await $`./tests/monero-cli/monero-wallet-cli --wallet-file ${path} --password ${password} --command spendkey`
.stdinText(`${password}\n`)
.lines(),
);
const [secretViewKey, publicViewKey] = retrieveKeys(
await $`./tests/monero-cli/monero-wallet-cli --wallet-file ${path} --password ${password} --command viewkey`
.stdinText(`${password}\n`)
.lines(),
);
return {
path,
password,
address,
secretSpendKey,
publicSpendKey,
secretViewKey,
publicViewKey,
};
}
// deno-lint-ignore ban-types
export type MoneroCVersion = "next" | (string & {});
export async function getMoneroCTags(): Promise<string[]> {
return ((
await (await fetch(
"https://api.github.com/repos/MrCyjanek/monero_c/releases",
)).json()
) as { tag_name: string }[])
.map(({ tag_name }) => tag_name);
}
export async function getMoneroC(version: MoneroCVersion) {
const triple = "x86_64-linux-gnu";
const dylibName = "monero_x86_64-linux-gnu_libwallet2_api_c.so";
const endpointDylibName = "monero_libwallet2_api_c.so";
const releaseDylibName = dylibName.slice("monero_".length);
if (version === "next") {
// build current release
await $
.raw`bash ./build_single.sh monero ${triple} -j${navigator.hardwareConcurrency}`;
await $.raw`xz -kd release/monero/${releaseDylibName}.xz`;
await $`mkdir -p tests/libs/next`;
await $`mv release/monero/${releaseDylibName} tests/libs/next/${endpointDylibName}`;
} else {
const downloadUrl =
`https://github.com/MrCyjaneK/monero_c/releases/download/${version}/${dylibName}.xz`;
const file = await Deno.open(`./tests/${dylibName}.xz`, {
create: true,
write: true,
});
file.write(await (await fetch(downloadUrl)).bytes());
file.close();
await $.raw`xz -d ./tests/${dylibName}.xz`;
await $.raw`mkdir -p ./tests/libs/${version}`;
await $
.raw`mv ./tests/${dylibName} ./tests/libs/${version}/${endpointDylibName}`;
}
}
|