-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_history
2000 lines (1999 loc) · 30.4 KB
/
.bash_history
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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
nix debug
git status
git store
ls
git status
cd .emacs.d/
ls
git pull
git diff
git status
ls
hx init.el
git status
git restore .
git pull
es
y
ec
..
cd .local
ls
cd share
ls
cd fonts
ls
cd
cd Downloads/
ls
unzip Source_Code_Pro.zip
ls
mv SourceCodePro-VariableFont_wght.ttf ~/.local/share/fonts
es
ec
..
cd .emacs.d
ls
cd es
es
ec
es
ec
es
ec
exit
npm run unit-test
exit
npm run unit-test
ls
rm package-lock.json
ls
exit
spago build
npm update
spago build
git status
npm run unit-test
git restore .
npm update
exit
npm run unit-test
ln
ln --help
npm update
exit
npm run unit-test
npm run plutip-test
git status
git restore .
git checkout develop
git checkout dshuiski/1119-query-backend
git status
git develop
git checkout develop
git checkout -b pb99u069/drop-haskell-from-flake
exit
make run-ci-actions
git status
git push
git push --set-upstream origin pb99u069/drop-haskell-from-flake
make format
git status
git restore .
git status
exit
git checkout pb99u069/1296-vasil-collateral-fields
exit
git status
npm i --package-lock-only
exit
npm run unit-test
npm update
npm run unit-test
git restore .
npm update
git status
nix build
nix build .#x86_64-linux
nix build #x86_64-linux
nix develop
exit
nix develop
exit
npm run unit-test
npm update
git status
nix develop
exit
..
git checkout develop
git pull
git checkout pb99u069/1296-vasil-collateral-fields
spago build
npm run unit-test
nix develop
git checkout HEAD package-lock-json
git checkout HEAD package-lock.json
ls
nix develop
nix
nix develop
exit
git status
exit
npm run unit-test
node2nix generate
nix develop
exit
npm i --package-lock-only
git status
npm i --package-lock-only
nix develop
exit
npm run unit-test
git status
git restore src/Internal/Deserialization/FromBytes.js
git restore test/Fixtures.purs
ls
rm -rf node_modules
ls
exit
...
..
nix develop
exit
npm run unit-test
git status
npm run unit-test
git status
git add .
git commit -m 'with fixed csl version'
git push
exit
npm i -packages-lock-only
ls
nix develop
exit
make run-ci-actions
git merge develop
git restore .
git status
git merge develop
git commit 'merge develop'
git status
git commit
git status
make run-ci-actions
exit
ls
cd node_modules
ls
..
exit
make run-ci-actions
exit
make run-ci-actions
exit
make run-ci-actions
ls
cd templates/ctl-scaffold/
ls
rm -rf node_modules
exit
git status
npm i -packages-lock-only
npm audit
ls
rm -rf node_modules
npm i -packages-lock-only
git status
make run-ci-actions
...
make run-ci-actions
nix develop
cd templates/ctl-scaffold/
ls
rm -rf node-modules
git status
npm i -packages-lock-only
nix develop
...
nix develop
npm i -packages-lock-only
ls
rm -rf -node_modules
ls
rm -rf node_modules
npm i -packages-lock-only
nix develop
ls
rm -rf node_modules
npm i -packages-lock-only
nix develop
npm i -packages-lock-only
nix develop
npm i -packages-lock-only
nix develop
cd templates/ctl-scaffold/
ls
npm i -packages-lock-only
..
git status
git add .
git commit -m 'bump csl in template'
git push
cd templates/ctl-scaffold/
nix develop
npm i -packages-lock-only
git status
...
git status
git add .
git commit -m 'set lockfileVersion to 1'
git push
git status
git pull
git status
git checkout develop
git pull
cd /home/pekka/ctl/cardano-transaction-lib/
nix develop
git status
ls
git status
git pull
...
..
git pull
nix develop
spago build
npm run plutip-test
git status
git restore .
git status
npm run plutip-test
make format
git status
git add .
git status
git commit -m 'cleanup testClusterDir on Sigint'
git push
git pull
git status
git push
...
..
cd
ls
cd haskell
ls
cd testProject/
ls
..
ls
cd testProject/
ls
cabal build
..
ls
cd haskell
cd pedro
mkdir pedro
cd pedro
cabal update
cabal init
ls
cd app
ls
..
git init
git status
git add .
git status
cd app
ls
..
cabal build
cabal run
git status
ls
cd /home/pekka/.emacs.d/layers/\+lang/haskell/
ls
..
ls
..
cd org
ls
ls -lh my*
ls -l my*
git pull
fd --version
find --version
find / cl-lib.el
locate cl-lib.el
cd /usr/share/emacs/
ls
cd 27.1/
ls
cd lisp/emacs-lisp/
ls
cd
ls
...
git status
rm doc/babbage-features.html
ls
git status
git pull
git status
git checkout dshuiski/1119-query-backend
git fetch
git checkout develop
git pull
git checkout dshuiski/1365-blockfrost-utxos
cd
ls
cd haskell
ls
cd pedro
ls
cd
cd ctl/cardano-transaction-lib/
cd
cd haskell/pedro/
ls
ll
rm .gitignore
ls
touch text.txt
ls
git status
git add .
git commit -m 'mastercommit
'
git checkout pekka
git status
git add .
git status
git checkout master
..
ls
cd dotfiles/
ls
cd archive
ls
cd tmux
ls
cd kwarxs/
ls
git status
ls
git pull
ls
cd /home/pekka/.emacs.d/doc/
make hoogle
ls
make ghci
cabal build
ls
cd onchain
ls
cabal build
make test
..
make
make test
exit
cd offchain
ls
cabal build
ls
cd dist-newstyle/
ls
cd build/
ls
cd x86_64-linux/
ls
cd ghc-8.10.7/
ls
cd kwarxs-offchain-0.1/
ls
cd build
ls
cd autogen/
ls
..
ls
cd
cd kwarxs/
ls
cd offchain
ls
cabal test
exit
cd onchain
cabal test
cabal build
cabal test
git status
git push --set-upstream origin parametrize-script-by-kyc-token
cd dist-newstyle/
cd build/
ls
cd x86_64-linux/
cd ghc-9.2.3/
ls
cd kwarxs-onchain-0.1/
ls
cd t
ls
cd kwarxs-onchain-test/
ls
cd test/
ls
cd
cd kwarxs/
cd onchain/
ls
make compile-onchain
..
make compile-onchain
cd onchain
cabal test
git status
ls
..
make format
cd onchain/
make format
..
make format_check
make code
cd onchain
ls
cabal test --accept
exit
cabal build
exit
ls
cd kwarxs/
ls
ll
cd .git
ls
..
ls
cd onchain
ls
..
ls
nix develop
nix develop .#offchain
nix develop .#onchain
cd offchain
nix develop
git checkout main
git status
git checkout parametrize-script-by-kyc-token
git status
git add .
..
nix develop .#offchain
exit
cd offchain
cabal build
cabal test
exit
cd onchain
make compile
cabal build
make compile-onchain
..
make compile-onchain
exit
cd offchain
cabal build
cabal test
exit
cd onchain
make compile-onchain
..
make compile-onchain
exit
cd offchain
cabal build
exit
cd offchain
cabal build
cabal run kwarxs-offchain-test-onchain
cabal test
exit
cd onchain
cabal build
..
make compile-onchain
exit
cd offchain
cabal test
..
make format
cd offchain
cabal build
cabal run kwarxs-offchain-test-onchain
cabal run kwarxs-offchain-test-onchain -p '/Pass: Buying NFT from marketplace for Kwarxs/'
cabal run kwarxs-offchain-test-onchain
cabal build
cabal run kwarxs-offchain-test-onchain
cabal build
cabal run kwarxs-offchain-test-onchain
..
make format
cabal build
cd offchain
cabal build
cabal run kwarxs-offchain-test-onchain
..
make format
cd offchain
cabal build
..
make format
cd offchain
cabal build
cabal run kwarxs-offchain-test-onchain
..
make format
exit
cd /home/pekka/mlabs/
cd
cd kwarxs/
nix develop .#offchain
nix develop .#onchain
nix develop .#offchain
exit
...
..
nix develop .#onchain
cd onchain
cabal build
cabal test
es
ec
exit
make query-tip
make serve-frontend-dev
make serve-frontend-dev --help
make serve-frontend-dev
make serve-frontend-dev --network-epoch-slots 100
make query-tip
git status
make stop-services
make services
exit
nix develop .#offchain
exit
...
..
nix develop .#offchain
cd /home/pekka/kwarxs/offchain/test/Spec/Plutip/
..
..
echo $PATH
make services
make query-tip
make stop-services
make build-frontend
make services
env
ls
env --help
make query-tip
make watch-frontend
make query-tip
make stop-service
make stop-services
make query-tip
make services
make query-tip
make stop-services
make query-tip
ls
cd offchain
cabal test
cabal build
cabal test
cabal build
..
make format
cd offchain
cabal test
make services
..
make services
make serve-partial-tx-interactive
make query-tip
make serve-frontend-dev
make format
make build-frontend
make ts-docs
make query-tip
make stop-services
es
ec
e
exit
...
..
nix develop .#offchain
make build-frontend
env
cd offchain
cd testnet-config/
ls
cd nocd
cd node
ls
rm alonzo-genesis.json byron-genesis.json config.json shelley-genesis.json topology.json
ls
rm -rf db
rm node.socket
ls
wget https://raw.githubusercontent.com/input-output-hk/cardano-world/master/docs/environments/preprod/alonzo-genesis.json
ls
wget https://raw.githubusercontent.com/input-output-hk/cardano-world/master/docs/environments/preprod/byron-genesis.json
wget https://raw.githubusercontent.com/input-output-hk/cardano-world/master/docs/environments/preprod/config.json
wget https://raw.githubusercontent.com/input-output-hk/cardano-world/master/docs/environments/preprod/shelley-genesis.json
wget https://raw.githubusercontent.com/input-output-hk/cardano-world/master/docs/environments/preprod/topology.json
ls
make services
..
...
make services
make stop-services
make services
make stop-services
make services
exit
make watch-frontend
make query-tip
query-tip
make query-tip
make stop-services
exit
make stop-services
make services
stop-services
make stop-services
cd offchain
ls
cd testnet-config/
ls
cd node
ls
rm -rf node.socket
..
ls
cd chain-index/
ls
rm config.json
touch config.json
..
ls
cd chain-index/
mkdir db
ls
..
cd node
ls
wget https://book.world.dev.cardano.org/environments/preview/config.json
wget https://book.world.dev.cardano.org/environments/preview/topology.json
wget https://book.world.dev.cardano.org/environments/preview/byron-genesis.json
wget https://book.world.dev.cardano.org/environments/preview/shelley-genesis.json
wget https://book.world.dev.cardano.org/environments/preview/alonzo-genesis.json
make services
..
make services
make query-tip
make build-frontend
make serve-frontend-dev
exit
env
exit
nix develop .#offchain
...
nix develop .#offchain
nix flake update
nix flake update --show-trace
nix develop .#offchain
ps
es
ec
exit
make services
make query-tip
ps
make query-tip
exit
echo $BASH
echo $PATH
exit
nix develop .#offchain
nix flake update
nix develop .#offchain
nix develop .#offchaini
nix develop .#offchain
make services
make query-tip
make stop-services
make services
make query-tip
make stop-services
cd offchain/
cd tesnet-c
cd testnet-config
cd node
rm -f node.socket
..
cd chain-index/
ls
mkdir db
...
..
make services
make query-tip
make stop-services
make query-tip
make services
make query-tip
make stop-services
make query-tip
nix flake update
exit
echo $PATH
nix flake update
make services
cardano-node --version
make query-tip
echo $PATH
nix flake update
cardano-node --version
nix flake update
cardano-node --version
nix repl
nix flake update
exit
cardano-node --version
exit
nix flake update
cardano-node --version
exit
cardano-node --version
git checkout main
git status
git checkout parametrize-script-by-kyc-token
git status
git checkout main
git status
git checkout parametrize-script-by-kyc-token
git checkout main
exit
ls
cd offchain
cabal build
exit
echo $PATH
exit
nix develop .#offchain
nix develop .#offchain --show-trace
nix flake info
nix flake update
nix develop .#offchain --show-trace
nix flake update
git checkout parametrize-script-by-kyc-token
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
nix develop .#onchain
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
es
ec
locate nix.conf
fd --version
find --help
locate -c nix.conf
exit
make services
make query-tip
stop services
make stop-services
cd offchain/testnet-config/
ls
cd node
ls
rm -rf db
rm -f node.socket
..
cd chain-index/
ls
rm -rf db
ls
..
cd chain-index/
mkdir db
..
make services
make query-tip
make stop-services
nix flake update
exit
nix flake lock
exit
cardano-node --version
exit
cardano-node --version
echo $PATH
exit
nix flake lock
exit
cd offchain
cabal build
exit
nix develop .#offchain
nix flake lock
nix develop .#offchain
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
nix flake update
nix develop .#offchain
nix develop .#onchain
nix flake update
nix develop .#offchain
nix develop .#onchain
nix
exit
cardano-node --version
nix flake lock --update-input cardano-node-workbench
exit
nix flake lock --update-input cardano-node-workbench
exit
nix flake lock --update-input cardano-node-workbench
exit
cardano-node --version
exit
cardano-node --version
exit
nix develop .#offchain
nix develop .#onchain
nix develop .#offchain
nix flake update
nix develop .#offchain
make stop-services
ps
git status
git restore .
exit
curl -X POST localhost:8080 -H 'Content-Type: application/json' -d '{"devMintTN":"kwarxstest","devMintAmt":"1"}'
curl -X POST localhost:8080 -H 'Content-Type: 'application/json' -d '{"devMintTN":"kwarxstest","devMintAmt":"1"}'
curl -X POST localhost:8080 -H 'Content-Type: application/json' -d '{\"devMintTN\":\"kwarxstest\",\"devMintAmt\":\"1\"}'
curl localhost/contracts/own-vote:8080
curl localhost:8080/contracts/own-vote
cardano-cli --version
cardano-cli address -h
cardano-cli address key-hash -h
cardano-cli address key-hash --payment-verification-key addr_test1qqm0z9quxyefwwq902p5f9t4s35smhegjthhhqpeclnpx2rzhuq2p6jahnky7qqua9nz9tcw6nlgy6cpjvmlaaye4apqzc6ppq
..
cd cardano
ls
git clone [email protected]:input-output-hk/cardano-addresses.git
ls
cd cardano-addresses/
nix develop
ls
cd command-line/
ls
cd exe
ls
..
docker build -t cardano-address .
docker --version
docker build --help
cd cardano
docker build -t cardano-address .
ls
cd cardano-addresses/
ls
docker build -t cardano-address .
echo addr_test1vp2fg770ddmqxxduasjsas39l5wwvwa04nj8ud95fde7f7guscp6v | cardano-address address inspect
echo addr_test1vp2fg770ddmqxxduasjsas39l5wwvwa04nj8ud95fde7f7guscp6v | docker run --rm -i cardano-address address inspect
echo addr_test1vp2fg770ddmqxxduasjsas39l5wwvwa04nj8ud95fde7f7guscp6v | docker run --rm -i cardano-address address inspectaddr_test1qqm0z9quxyefwwq902p5f9t4s35smhegjthhhqpeclnpx2rzhuq2p6jahnky7qqua9nz9tcw6nlgy6cpjvmlaaye4apqzc6p
docker run --rm -i cardano-address address inspect
echo docker run --rm -i cardano-address address inspectaddr_test1qqm0z9quxyefwwq902p5f9t4s35smhegjthhhqpeclnpx2rzhuq2p6jahnky7qqua9nz9tcw6nlgy6cpjvmlaaye4apqzc6ppq
echo addr_test1vp2fg770ddmqxxduasjsas39l5wwvwa04nj8ud95fde7f7guscp6v | cardano-address address inspect
echo addr_test1qqm0z9quxyefwwq902p5f9t4s35smhegjthhhqpeclnpx2rzhuq2p6jahnky7qqua9nz9tcw6nlgy6cpjvmlaaye4apqzc6ppq | docker run --rm -i cardano-address address inspect
curl localhost:8080/contracts/own-vote
curl localhost:8080/contracts/own-vote -H "addr_vkh1xmc3g8p3x2tnspt6sdzf2avydyxa72yjaaacqww8ucfjs5qcr39"
curl localhost:8080/contracts/own-vote -H "OwnPubKeyHash: addr_vkh1xmc3g8p3x2tnspt6sdzf2avydyxa72yjaaacqww8ucfjs5qcr39"
curl localhost:8080/contracts/own-vote -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d {"devMintTn":"kwarxs-test","devMintAmt":"12"}
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test","devMintAmt":"12"}'
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
curl -X POST localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
ping --version
ping localhost:8080
ping -help
ping localhost
ping localhost/contracts/dev
curl -X POST localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test","devMintAmt":"12"}'
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
curl -X POST localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHas: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
curl localhost:8080/contracts/own-vote -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl -X POST localhost:8080/contracts/dev/create-profit -H "OwnPubKeyHas: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test"}'
curl localhost:8080/contracts/dev/mint-tokens -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" -d '{"devMintTn":"kwarxs-test","devMintAmt":1}'
curl -X POST -d '{"devMintTn":"kwarxs-test", "devMintAmt":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl -X POST -d '{"devMintTn":{"unTokenName":"kwarxs-test"}, "devMintAmt":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl -X POST -d '{"devMintTn":{"unTokenName-data-raw ":"kwarxs-test"}, "devMintAmt":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl -X POST -d '{"devMintTn":{"unTokenName-dat\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl -X POST -data-raw '{\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl -X POST -data-raw {\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1} -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
curl "http://localhost:8080/contracts/dev/mint-tokens" -X POST -data-raw {\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1} -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl "http://localhost:8080/contracts/dev/mint-tokens" -X POST -data-raw '{\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl "http://localhost:8080/contracts/dev/mint-tokens" -X POST -d '{\"devMintTN\":{\"unTokenName\":\"kwarxs-test\"}, \"devMintAmt\":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl "http://localhost:8080/contracts/dev/mint-tokens" -X POST -d '{"devMintTN":{"unTokenName":"kwarxs-test"}, "devMintAmt":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl "http://localhost:8080/contracts/dev/mint-tokens" -X POST -d '{"devMintTN":{"unTokenName":"kwarxs-test"}, "devMintAmt":1}' -H 'Accept: application/json' -H "Own: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328"
curl -X POST -d '{"devMintTN":{"unTokenName":"kwarxs-test"}, "devMintAmt":1}' -H 'Accept: application/json' -H "OwnPubKeyHash: 36f1141c31329738057a8344957584690ddf2892ef7b8039c7e61328" http://localhost:8080/contracts/dev/mint-tokens
..
cd kwarxs/
nix develop .#offchain
make ts-docs
ls
cd docs
cd offchain
ls
cd docs
cd partial-tx-server-app
cd frontend/
ls
cd docs
ls
cd
mkdir slack
cd slack
touch slack.txt
..
cd kwarxs/
cd offchain
cd partial-tx-server-app/frontend/
cd docs
ls
python3 -m http.server
...
nix develop .#offchain
..
cd frontend
ls
cd docs
python3 -m http.server
make services
make query-tip
make serve-frontend-dev
make build-frontend
make serve-frontend-dev
make build-frontend
make serve-frontend-dev
make build-frontend
make serve-frontend-dev
make watch-frontend
make build-frontend
make serve-frontend-dev
make build-frontend