forked from ryantinder/chainbet-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFoo.t.sol
682 lines (609 loc) · 24 KB
/
Foo.t.sol
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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.21 <0.9.0;
import { PRBTest } from "@prb/test/PRBTest.sol";
import { console } from "forge-std/console.sol";
import { StdCheats } from "forge-std/StdCheats.sol";
import { StringStorage } from "../src/StringStorage.sol";
import { FunctionsConsumerExample } from "../src/FunctionsConsumerExample.sol";
import { ChainBetFactory } from "../src/BettingFactory.sol";
import { ERC20 } from "lib/solmate/src/tokens/ERC20.sol";
import { Bytes32AddressLib } from "lib/solmate/src/utils/Bytes32AddressLib.sol";
contract Mock20 is ERC20 {
constructor() ERC20("Test", "TST", 6) {}
}
/// @dev If this is your first time with Forge, read this tutorial in the Foundry Book:
/// https://book.getfoundry.sh/forge/writing-tests
contract Test is PRBTest, StdCheats {
using Bytes32AddressLib for bytes32;
FunctionsConsumerExample internal foo;
ChainBetFactory internal factory;
ERC20 internal USDC;
address alice = address(15);
address bob = address(14);
/// @dev A function invoked before each test case is run.
function setUp() public virtual {
vm.createSelectFork("sepolia");
// Instantiate the contract-under-test.
address sep_ccip_router = 0xD0daae2231E9CB96b94C8512223533293C3693Bf;
address sep_functions_router = 0xb83E47C2bC239B3bf370bc41e1459A34b41238D0;
address sep_ccip_token = 0xFd57b4ddBf88a4e07fF4e34C487b99af2Fe82a05;
address weth = 0x097D90c9d3E0B50Ca60e1ae45F6A81010f9FB534;
uint sep_subscriptionId = 1537;
bytes32 sep_donID = bytes32("fun-ethereum-sepolia-1");
uint64 fuji_chain_selector = 14767482510784806043;
USDC = new Mock20();
factory = new ChainBetFactory(
sep_ccip_router,
sep_functions_router,
fuji_chain_selector,
sep_ccip_token,
weth,
sep_subscriptionId,
1000000,
sep_donID,
source
);
vm.label(alice, "alice");
vm.label(bob, "bob");
vm.label(address(factory), "factory");
vm.label(address(USDC), "USDC");
}
function test_stringStorage() internal {
StringStorage str = new StringStorage(source);
str.value();
}
function test_demo() external {
// FunctionsConsumerExample con = FunctionsConsumerExample(0xa14DfbEcEA91df1f366f8ABfda621006Eb07b0FC);
FunctionsConsumerExample con = FunctionsConsumerExample((0x184716643002Ef8ccf61901a6025656d94799459));
startHoax(0x465d1CfE1d94D427EdfE93E2010284d1eCb8839d, 0x465d1CfE1d94D427EdfE93E2010284d1eCb8839d);
// con.wNative();
ERC20(con.TOKEN()).balanceOf(address(0x465d1CfE1d94D427EdfE93E2010284d1eCb8839d));
con.getBetInfo();
con.takeBet();
// console.log(margin, winner, _cover, finished);
// con._processResults(2007236682, con.betInfo());
// assertEq(gameState(7657, false, 17, 35), 0);
}
function gameState(uint id, bool finished, uint home, uint away) internal returns (uint state) {
state |= finished ? 1 : 0;
state |= home > away ? 0 : 1 << 1;
if (home > away) {
state |= (home - away) << 2;
} else {
state |= (away - home) << 2;
}
state |= id << 18;
}
function test_sanitygameState() external {
assertEq(gameState(7657, true, 17, 31), 2005139515);
}
function test_home_cover_win(uint8 home, uint8 away) external {
vm.assume(home > away);
vm.assume(home - away > 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(alice), wager * 2);
assertEq(USDC.balanceOf(bob), 0);
}
function test_home_cover_loss(uint8 home, uint8 away) external {
vm.assume(home > away);
vm.assume(home - away < 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager * 2);
assertEq(USDC.balanceOf(alice), 0);
}
function test_home_cover_push(uint8 home) external {
vm.assume(home >= 7);
uint away = home - 7;
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager);
assertEq(USDC.balanceOf(alice), wager);
}
function test_away_cover_win(uint8 home, uint8 away) external {
vm.assume(home < away);
vm.assume(away - home > 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = true; // away team
// bet 10 dollars the away team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // away team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(alice), wager * 2);
assertEq(USDC.balanceOf(bob), 0);
}
function test_away_cover_loss(uint8 home, uint8 away) external {
vm.assume(home < away);
vm.assume(away - home < 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = true; // away team
// bet 10 dollars the away team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // away team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager * 2);
assertEq(USDC.balanceOf(alice), 0);
}
function test_away_cover_push(uint8 away) external {
vm.assume(away >= 7);
uint home = away - 7;
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = true;
bool winner = true; // away team
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // away team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager);
assertEq(USDC.balanceOf(alice), wager);
}
function test_home_ats_win(uint8 home, uint8 away) external {
vm.assume(home != away);
if (home > away) {
vm.assume(home - away < 7);
}
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(alice), wager * 2);
assertEq(USDC.balanceOf(bob), 0);
}
function test_home_ats_loss(uint8 home, uint8 away) external {
vm.assume(home > away);
vm.assume(home - away > 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager * 2);
assertEq(USDC.balanceOf(alice), 0);
}
function test_home_ats_push(uint8 home) external {
vm.assume(home >= 7);
uint away = home - 7;
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = false; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager);
assertEq(USDC.balanceOf(alice), wager);
}
function test_away_ats_win(uint8 home, uint8 away) external {
vm.assume(home != away);
if (home < away) {
vm.assume(away - home < 7);
}
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = true; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(alice), wager * 2);
assertEq(USDC.balanceOf(bob), 0);
}
function test_away_ats_loss(uint8 home, uint8 away) external {
vm.assume(away > home);
vm.assume(away - home > 7);
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = true; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager * 2);
assertEq(USDC.balanceOf(alice), 0);
}
function test_away_ats_push(uint8 away) external {
vm.assume(away >= 7);
uint home = away - 7;
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 7;
bool cover = false;
bool winner = true; // home team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager);
assertEq(USDC.balanceOf(alice), wager);
}
function test_zero_margin(uint home, uint away) external {
uint wager = 10e6;
// uint matchId = 7649;
uint margin = 0;
bool cover = true;
bool winner = true; // away team
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
0, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
// final score home team: 14, away team: 3
// home team covers
// bet._processResults(gameState(0, true, home, away), bet.betInfo());
assertEq(USDC.balanceOf(address(bet)), 0);
assertEq(USDC.balanceOf(bob), wager);
assertEq(USDC.balanceOf(alice), wager);
}
function test_matchbet(bool cover) external {
uint wager = 10e6;
uint matchId = 7649;
uint margin = 7;
bool winner = false;
// bet 10 dollars the home team covers 7 points
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
FunctionsConsumerExample bet = factory.createBet(
matchId, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
vm.stopPrank();
deal(address(USDC), bob, wager);
startHoax(bob, bob);
USDC.approve(address(bet), wager);
bet.takeBet();
assertEq(USDC.balanceOf(address(bet)), wager * 2);
if (cover) {
assertEq(bet.cover().fromLast20Bytes(), alice);
assertEq(bet.ats().fromLast20Bytes(), bob);
} else {
assertEq(bet.cover().fromLast20Bytes(), bob);
assertEq(bet.ats().fromLast20Bytes(), alice);
}
vm.expectRevert("Bet already taken");
bet.takeBet();
}
function test_createBet(uint128 wager, uint64 matchId, uint32 margin, bool cover, bool winner) external {
deal(address(USDC), alice, wager);
startHoax(alice, alice);
USDC.approve(address(factory), wager);
bool exit = false;
if (wager == 0) {
vm.expectRevert("Wager must be greater than 0");
exit = true;
}
FunctionsConsumerExample bet = factory.createBet(
matchId, // match id
wager, // 10 USDC wager
margin, // 7 point margin
cover, // cover
winner // home team
);
if (exit) return;
(uint _wager, uint _matchId, uint _margin, bool _winner, bool _cover, bool _finished) = bet.getBetInfo();
// assertions
assertEq(_wager, wager);
assertEq(_matchId, matchId);
assertEq(_margin, margin);
assertEq(_winner, winner);
assertEq(_cover, cover);
assertEq(_finished, false);
if (cover) {
assertEq(bet.cover().fromLast20Bytes(), alice);
assertEq(bet.ats().fromLast20Bytes(), address(0));
} else {
assertEq(bet.cover().fromLast20Bytes(), address(0));
assertEq(bet.ats().fromLast20Bytes(), alice);
}
assertEq(USDC.balanceOf(alice), 0);
assertEq(USDC.balanceOf(address(bet)), wager);
}
/// @dev Basic test. Run it with `forge test -vvv` to see the console log.
function test_ParseAPIResponse() external {
bool finished;
bool away_win;
uint16 margin;
uint32 game_id;
// (finished, away_win, margin, game_id) = foo.parseResponse(input);
assertEq(finished, true);
assertEq(away_win, true);
assertEq(margin, 14);
assertEq(game_id, 7649);
}
// /// @dev Fuzz test that provides random values for an unsigned integer, but which rejects zero as an input.
// /// If you need more sophisticated input validation, you should use the `bound` utility instead.
// /// See https://twitter.com/PaulRBerg/status/1622558791685242880
// function testFuzz_Example(uint256 x) external {
// vm.assume(x != 0); // or x = bound(x, 1, 100)
// assertEq(foo.id(x), x, "value mismatch");
// }
// /// @dev Fork test that runs against an Ethereum Mainnet fork. For this to work, you need to set
// `API_KEY_ALCHEMY`
// /// in your environment You can get an API key for free at https://alchemy.com.
// function testFork_Example() external {
// // Silently pass this test if there is no API key.
// string memory alchemyApiKey = vm.envOr("API_KEY_ALCHEMY", string(""));
// if (bytes(alchemyApiKey).length == 0) {
// return;
// }
// // Otherwise, run the test against the mainnet fork.
// vm.createSelectFork({ urlOrAlias: "mainnet", blockNumber: 16_428_000 });
// address usdc = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
// address holder = 0x7713974908Be4BEd47172370115e8b1219F4A5f0;
// uint256 actualBalance = IERC20(usdc).balanceOf(holder);
// uint256 expectedBalance = 196_307_713.810457e6;
// assertEq(actualBalance, expectedBalance);
// }
string source = "const game_id = args[0];"
"const url = 'https://v1.american-football.api-sports.io/games?id=' + game_id;"
"const gameRequest = Functions.makeHttpRequest({"
"url: url,"
"headers: {"
" 'Content-Type': 'application/json',"
" 'x-rapidapi-key': '0d7371b74cfe8afb33bf3dbc9abaa414',"
" 'x-rapidapi-host': 'v1.american-football.api-sports.io'"
"}"
"});"
"const gameResponse = await gameRequest;"
"if (gameResponse.error) {"
"throw Error('Request failed');"
"}"
"const ret = {"
" id: gameResponse.data.response[0].game.id,"
" finished: gameResponse.data.response[0].game.status.short == 'FT',"
" home: gameResponse.data.response[0].scores.home.total,"
" away: gameResponse.data.response[0].scores.away.total"
"}"
"let bits = 0;"
"bits |= ret.finished;"
"bits |= ret.home > ret.away ? 0 : 1 << 1;"
"bits |= Math.abs(ret.home - ret.away) << 2;"
"bits |= ret.id << 18;"
"return Functions.encodeUint256(bits);";
}