-
Notifications
You must be signed in to change notification settings - Fork 42
/
atomic-transfer.ts
447 lines (407 loc) · 12.5 KB
/
atomic-transfer.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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
import { types } from "@algo-builder/web";
import { assert } from "chai";
import { RUNTIME_ERRORS } from "../../src/errors/errors-list";
import { AccountStore, Runtime } from "../../src/index";
import { useFixture } from "../helpers/integration";
import { expectRuntimeError } from "../helpers/runtime-errors";
import { elonMuskAccount } from "../mocks/account";
describe("Algorand Smart Contracts - Atomic Transfers", function () {
useFixture("stateful");
const initialBalance = BigInt(5e6);
let john: AccountStore;
let alice: AccountStore;
let runtime: Runtime;
let approvalProgramFilename: string;
let clearProgramFilename: string;
let assetId: number;
let appID: number;
this.beforeEach(function () {
john = new AccountStore(initialBalance, elonMuskAccount);
alice = new AccountStore(initialBalance);
runtime = new Runtime([john, alice]); // setup test
// create asset
assetId = runtime.deployASA("gold", {
creator: { ...john.account, name: "john" },
}).assetIndex;
approvalProgramFilename = "counter-approval.teal";
clearProgramFilename = "clear.teal";
// deploy a new app
appID = runtime.deployApp(
john.account,
{
appName: "app",
metaType: types.MetaType.FILE,
approvalProgramFilename,
clearProgramFilename,
globalBytes: 32,
globalInts: 32,
localBytes: 8,
localInts: 8,
},
{}
).appID;
// opt-in to app
runtime.optInToApp(john.address, appID, {}, {});
// opt-in for alice
runtime.optInToASA(assetId, alice.address, {});
syncAccounts();
});
function syncAccounts(): void {
john = runtime.getAccount(john.address);
alice = runtime.getAccount(alice.address);
}
const key = "counter";
it("should execute group of (payment + asset transaction) successfully", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.address,
amountMicroAlgos: 100,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.address,
amount: 10,
assetID: assetId,
payFlags: { totalFee: 1000 },
},
];
const initialJohnAssets = john.getAssetHolding(assetId)?.amount;
const initialAliceAssets = alice.getAssetHolding(assetId)?.amount;
assert.isDefined(initialJohnAssets);
assert.isDefined(initialAliceAssets);
runtime.executeTx(txGroup);
syncAccounts();
if (initialAliceAssets && initialJohnAssets) {
assert.equal(john.getAssetHolding(assetId)?.amount, initialJohnAssets - 10n);
assert.equal(alice.getAssetHolding(assetId)?.amount, initialAliceAssets + 10n);
assert.equal(john.balance(), initialBalance - 2100n);
assert.equal(alice.balance(), initialBalance + 100n);
}
});
it("should not execute payment transaction (in group) if asset transaction fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.address,
amountMicroAlgos: 100,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAsset,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amount: 1000,
assetID: 9,
payFlags: { totalFee: 1000 },
},
];
const initialJohnAssets = john.getAssetHolding(assetId)?.amount;
const initialAliceAssets = alice.getAssetHolding(assetId)?.amount;
assert.isDefined(initialJohnAssets);
assert.isDefined(initialAliceAssets);
// Fails because account alice doesn't hold enough assets
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_ASSETS
);
syncAccounts();
assert.equal(john.getAssetHolding(assetId)?.amount, initialJohnAssets);
assert.equal(alice.getAssetHolding(assetId)?.amount, initialAliceAssets);
assert.equal(john.balance(), initialBalance);
assert.equal(alice.balance(), initialBalance);
});
it("should execute payment and ssc call", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.CallApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.address,
amountMicroAlgos: 100,
payFlags: { totalFee: 1000 },
},
];
runtime.executeTx(txGroup);
const globalCounter = runtime.getGlobalState(appID, key);
assert.isDefined(globalCounter); // there should be a value present with key "counter"
assert.equal(globalCounter, 1n);
const localCounter = runtime.getAccount(john.address).getLocalState(appID, key); // get local value from john account
assert.isDefined(localCounter); // there should be a value present in local state with key "counter"
assert.equal(localCounter, 1n);
syncAccounts();
assert.equal(john.balance(), initialBalance - 2100n);
assert.equal(alice.balance(), initialBalance + 100n);
});
it("should fail if payment transaction in group fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.CallApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
const localCounter = runtime.getAccount(john.address).getLocalState(appID, key);
assert.isDefined(localCounter);
assert.equal(localCounter, 0n);
const globalCounter = runtime.getGlobalState(appID, key);
assert.isUndefined(globalCounter);
syncAccounts();
assert.equal(john.balance(), initialBalance);
assert.equal(alice.balance(), initialBalance);
});
it("should not freeze asset if payment fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.FreezeAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
assetID: assetId,
freezeTarget: alice.address,
freezeState: true,
payFlags: {},
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
syncAccounts();
assert.equal(alice.getAssetHolding(assetId)?.["is-frozen"], false);
});
it("should not modify asset if payment fails", function () {
const modFields = {
manager: john.address,
reserve: john.address,
clawback: john.address,
freeze: john.address,
};
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.ModifyAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
assetID: assetId,
fields: modFields,
payFlags: {},
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
const assetManagerOrig = runtime.getAssetDef(assetId).manager;
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
// Verify asset manager is not changed
assert.equal(runtime.getAssetDef(assetId).manager, assetManagerOrig);
});
it("should not revoke asset if payment fails", function () {
// transfer asset to alice
runtime.executeTx([
{
type: types.TransactionType.TransferAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.account.addr,
amount: 20,
assetID: assetId,
payFlags: { totalFee: 1000 },
},
]);
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.RevokeAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
recipient: john.address,
assetID: assetId,
revocationTarget: alice.address,
amount: 15,
payFlags: {},
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
syncAccounts();
const initialAliceAssets = alice.getAssetHolding(assetId)?.amount;
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
syncAccounts();
assert.equal(alice.getAssetHolding(assetId)?.amount, initialAliceAssets);
});
it("should not destroy asset if payment fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.DestroyAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
assetID: assetId,
payFlags: {},
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
assert.isDefined(runtime.getAssetDef(assetId));
assert.equal(runtime.getAssetDef(assetId).creator, john.address);
});
it("should fail close app if payment transaction fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.CloseApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
syncAccounts();
assert.isDefined(john.getLocalState(appID, key));
});
it("should fail clear app if payment transaction fails", function () {
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.ClearApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 6e6,
payFlags: { totalFee: 1000 },
},
];
expectRuntimeError(
() => runtime.executeTx(txGroup),
RUNTIME_ERRORS.TRANSACTION.INSUFFICIENT_ACCOUNT_BALANCE
);
syncAccounts();
assert.isDefined(john.getLocalState(appID, key));
});
it("should fail asset payment, and algo payment if ssc call fails", function () {
// close out from app
runtime.executeTx([
{
type: types.TransactionType.ClearApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
]);
syncAccounts();
const txGroup: types.ExecParams[] = [
{
type: types.TransactionType.ClearApp,
sign: types.SignType.SecretKey,
fromAccount: john.account,
appID: appID,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAlgo,
sign: types.SignType.SecretKey,
fromAccount: alice.account,
toAccountAddr: john.address,
amountMicroAlgos: 100,
payFlags: { totalFee: 1000 },
},
{
type: types.TransactionType.TransferAsset,
sign: types.SignType.SecretKey,
fromAccount: john.account,
toAccountAddr: alice.account.addr,
amount: 10,
assetID: 1,
payFlags: { totalFee: 1000 },
},
];
const initialJohnAssets = john.getAssetHolding(assetId)?.amount;
const initialAliceAssets = alice.getAssetHolding(assetId)?.amount;
const initialJohnBalance = john.balance();
expectRuntimeError(() => runtime.executeTx(txGroup), RUNTIME_ERRORS.GENERAL.APP_NOT_FOUND);
syncAccounts();
assert.equal(john.balance(), initialJohnBalance);
assert.equal(alice.balance(), initialBalance);
assert.equal(john.getAssetHolding(assetId)?.amount, initialJohnAssets);
assert.equal(alice.getAssetHolding(assetId)?.amount, initialAliceAssets);
});
});