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
|
import { fns } from "./bindings.ts";
import { CString } from "./utils.ts";
import { Wallet, WalletPtr } from "./wallet.ts";
export type WalletManagerPtr = Deno.PointerObject<"walletManager">;
export class WalletManager {
#ptr: WalletManagerPtr;
constructor(walletManagerPtr: WalletManagerPtr) {
this.#ptr = walletManagerPtr;
}
getPointer(): WalletManagerPtr {
return this.#ptr;
}
static async new() {
const ptr = await fns.WalletManagerFactory_getWalletManager();
if (!ptr) {
throw new Error("Failed retrieving wallet manager");
}
return new WalletManager(ptr as WalletManagerPtr);
}
async setDaemonAddress(address: string): Promise<void> {
return await fns.WalletManager_setDaemonAddress(this.#ptr, CString(address));
}
async createWallet(path: string, password: string): Promise<Wallet> {
const walletPtr = await fns.WalletManager_createWallet(
this.#ptr,
CString(path),
CString(password),
CString("English"),
0,
);
const wallet = new Wallet(this, walletPtr as WalletPtr);
await wallet.throwIfError();
return wallet;
}
async openWallet(path: string, password: string): Promise<Wallet> {
const walletPtr = await fns.WalletManager_openWallet(
this.#ptr,
CString(path),
CString(password),
0,
);
const wallet = new Wallet(this, walletPtr as WalletPtr);
await wallet.throwIfError();
return wallet;
}
async recoverWallet(
path: string,
password: string,
mnemonic: string,
restoreHeight: bigint,
seedOffset: string = "",
): Promise<Wallet> {
const walletPtr = await fns.WalletManager_recoveryWallet(
this.#ptr,
CString(path),
CString(password),
CString(mnemonic),
0,
restoreHeight,
1n,
CString(seedOffset),
);
const wallet = new Wallet(this, walletPtr as WalletPtr);
await wallet.throwIfError();
return wallet;
}
async recoverFromPolyseed(
path: string,
password: string,
mnemonic: string,
restoreHeight: bigint,
passphrase = "",
): Promise<Wallet> {
return await this.createFromPolyseed(
path,
password,
mnemonic,
restoreHeight,
passphrase,
false,
);
}
async createFromPolyseed(
path: string,
password: string,
mnemonic: string,
restoreHeight: bigint,
passphrase = "",
newWallet = true,
): Promise<Wallet> {
const walletPtr = await fns.WalletManager_createWalletFromPolyseed(
this.#ptr,
CString(path),
CString(password),
0,
CString(mnemonic),
CString(passphrase),
newWallet,
restoreHeight,
1n,
);
const wallet = new Wallet(this, walletPtr as WalletPtr);
await wallet.throwIfError();
return wallet;
}
async recoverFromKeys(
path: string,
password: string,
restoreHeight: bigint,
address: string,
viewKey: string,
spendKey: string,
): Promise<Wallet> {
const walletPtr = await fns.WalletManager_createWalletFromKeys(
this.#ptr,
CString(path),
CString(password),
CString("English"),
0,
restoreHeight,
CString(address),
CString(viewKey),
CString(spendKey),
0n,
);
const wallet = new Wallet(this, walletPtr as WalletPtr);
await wallet.throwIfError();
return wallet;
}
}
|