-
Notifications
You must be signed in to change notification settings - Fork 6
/
wallet.ts
312 lines (271 loc) · 8.72 KB
/
wallet.ts
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
import {
AccountWalletOption,
BroadcastTransactionMap,
CreateWalletOptions,
Tx,
TxFee,
Wallet,
} from '@gnolang/tm2-js-client';
import { decodeTxMessages, defaultTxFee, fundsToCoins } from './utility';
import Long from 'long';
import { MemPackage, MsgAddPackage, MsgCall, MsgSend } from '../proto';
import { MsgEndpoint } from './endpoints';
import { LedgerConnector } from '@cosmjs/ledger-amino';
import { MsgRun } from '../proto/gno/vm';
/**
* GnoWallet is an extension of the TM2 wallet with
* specific functionality for Gno chains
*/
export class GnoWallet extends Wallet {
constructor() {
super();
}
/**
* Generates a private key-based wallet, using a random seed
* @param {AccountWalletOption} options the account options
*/
static override createRandom = async (
options?: AccountWalletOption
): Promise<GnoWallet> => {
const wallet = await Wallet.createRandom(options);
const gnoWallet: GnoWallet = new GnoWallet();
gnoWallet.signer = wallet.getSigner();
return gnoWallet;
};
/**
* Generates a bip39 mnemonic-based wallet
* @param {string} mnemonic the bip39 mnemonic
* @param {CreateWalletOptions} options the wallet generation options
*/
static override fromMnemonic = async (
mnemonic: string,
options?: CreateWalletOptions
): Promise<GnoWallet> => {
const wallet = await Wallet.fromMnemonic(mnemonic, options);
const gnoWallet: GnoWallet = new GnoWallet();
gnoWallet.signer = wallet.getSigner();
return gnoWallet;
};
/**
* Generates a private key-based wallet
* @param {string} privateKey the private key
* @param {AccountWalletOption} options the account options
*/
static override fromPrivateKey = async (
privateKey: Uint8Array,
options?: AccountWalletOption
): Promise<GnoWallet> => {
const wallet = await Wallet.fromPrivateKey(privateKey, options);
const gnoWallet: GnoWallet = new GnoWallet();
gnoWallet.signer = wallet.getSigner();
return gnoWallet;
};
/**
* Creates a Ledger-based wallet
* @param {LedgerConnector} connector the Ledger device connector
* @param {CreateWalletOptions} options the wallet generation options
*/
static override fromLedger = (
connector: LedgerConnector,
options?: CreateWalletOptions
): GnoWallet => {
const wallet = Wallet.fromLedger(connector, options);
const gnoWallet: GnoWallet = new GnoWallet();
gnoWallet.signer = wallet.getSigner();
return gnoWallet;
};
/**
* Initiates a native currency transfer transaction between accounts
* @param {string} to the bech32 address of the receiver
* @param {Map<string, number>} funds the denomination -> value map for funds
* @param {TransactionEndpoint} endpoint the transaction broadcast type (sync / commit)
* @param {TxFee} [fee] the custom transaction fee, if any
*/
transferFunds = async <K extends keyof BroadcastTransactionMap>(
to: string,
funds: Map<string, number>,
endpoint: K,
fee?: TxFee
): Promise<BroadcastTransactionMap[K]['result']> => {
// Convert the funds into the correct representation
const amount: string = fundsToCoins(funds);
// Fetch the wallet address
const sender: string = await this.getAddress();
// Construct the transaction fee
const txFee: TxFee = fee
? fee
: {
gasWanted: new Long(60000),
gasFee: defaultTxFee,
};
// Prepare the Msg
const sendMsg: MsgSend = {
from_address: sender,
to_address: to,
amount: amount,
};
// Construct the transfer transaction
const tx: Tx = {
messages: [
{
typeUrl: MsgEndpoint.MSG_SEND,
value: MsgSend.encode(sendMsg).finish(),
},
],
fee: txFee,
memo: '',
signatures: [], // No signature yet
};
// Sign the transaction
const signedTx: Tx = await this.signTransaction(tx, decodeTxMessages);
// Send the transaction
return this.sendTransaction(signedTx, endpoint);
};
/**
* Invokes the specified method on a GNO contract
* @param {string} path the gno package / realm path
* @param {string} method the method name
* @param {string[]} args the method arguments, if any
* @param {TransactionEndpoint} endpoint the transaction broadcast type (sync / commit)
* @param {Map<string, number>} [funds] the denomination -> value map for funds, if any
* @param {TxFee} [fee] the custom transaction fee, if any
*/
callMethod = async <K extends keyof BroadcastTransactionMap>(
path: string,
method: string,
args: string[] | null,
endpoint: K,
funds?: Map<string, number>,
fee?: TxFee
): Promise<BroadcastTransactionMap[K]['result']> => {
// Convert the funds into the correct representation
const amount: string = fundsToCoins(funds);
// Fetch the wallet address
const caller: string = await this.getAddress();
// Construct the transaction fee
const txFee: TxFee = fee
? fee
: {
gasWanted: new Long(60000),
gasFee: defaultTxFee,
};
// Prepare the Msg
const callMsg: MsgCall = {
caller: caller,
send: amount,
pkg_path: path,
func: method,
args: args ? (args.length === 0 ? null : args) : null,
};
// Construct the transfer transaction
const tx: Tx = {
messages: [
{
typeUrl: MsgEndpoint.MSG_CALL,
value: MsgCall.encode(callMsg).finish(),
},
],
fee: txFee,
memo: '',
signatures: [], // No signature yet
};
// Sign the transaction
const signedTx: Tx = await this.signTransaction(tx, decodeTxMessages);
// Send the transaction
return this.sendTransaction(signedTx, endpoint);
};
/**
* Deploys the specified package / realm
* @param {MemPackage} gnoPackage the package / realm to be deployed
* @param {TransactionEndpoint} endpoint the transaction broadcast type (sync / commit)
* @param {Map<string, number>} [funds] the denomination -> value map for funds, if any
* @param {TxFee} [fee] the custom transaction fee, if any
*/
deployPackage = async <K extends keyof BroadcastTransactionMap>(
gnoPackage: MemPackage,
endpoint: K,
funds?: Map<string, number>,
fee?: TxFee
): Promise<BroadcastTransactionMap[K]['result']> => {
// Convert the funds into the correct representation
const amount: string = fundsToCoins(funds);
// Fetch the wallet address
const caller: string = await this.getAddress();
// Construct the transaction fee
const txFee: TxFee = fee
? fee
: {
gasWanted: new Long(60000),
gasFee: defaultTxFee,
};
// Prepare the Msg
const addPkgMsg: MsgAddPackage = {
creator: caller,
package: gnoPackage,
deposit: amount,
};
// Construct the transfer transaction
const tx: Tx = {
messages: [
{
typeUrl: MsgEndpoint.MSG_ADD_PKG,
value: MsgAddPackage.encode(addPkgMsg).finish(),
},
],
fee: txFee,
memo: '',
signatures: [], // No signature yet
};
// Sign the transaction
const signedTx: Tx = await this.signTransaction(tx, decodeTxMessages);
// Send the transaction
return this.sendTransaction(signedTx, endpoint);
};
/**
* Executes arbitrary Gno code
* @param {MemPackage} gnoPackage the gno package being executed
* @param {TransactionEndpoint} endpoint the transaction broadcast type (sync / commit)
* @param {Map<string, number>} [funds] the denomination -> value map for funds, if any
* @param {TxFee} [fee] the custom transaction fee, if any
*/
executePackage = async <K extends keyof BroadcastTransactionMap>(
gnoPackage: MemPackage,
endpoint: K,
funds?: Map<string, number>,
fee?: TxFee
): Promise<BroadcastTransactionMap[K]['result']> => {
// Convert the funds into the correct representation
const amount: string = fundsToCoins(funds);
// Fetch the wallet address
const caller: string = await this.getAddress();
// Construct the transaction fee
const txFee: TxFee = fee
? fee
: {
gasWanted: new Long(60000),
gasFee: defaultTxFee,
};
// Prepare the Msg
const runMsg: MsgRun = {
caller,
send: amount,
package: gnoPackage,
};
// Construct the transfer transaction
const tx: Tx = {
messages: [
{
typeUrl: MsgEndpoint.MSG_RUN,
value: MsgRun.encode(runMsg).finish(),
},
],
fee: txFee,
memo: '',
signatures: [], // No signature yet
};
// Sign the transaction
const signedTx: Tx = await this.signTransaction(tx, decodeTxMessages);
// Send the transaction
return this.sendTransaction(signedTx, endpoint);
};
}