├── js ├── .npmignore └── vue.config.js ├── tests ├── application_client │ ├── py.typed │ └── __init__.py ├── requirements.txt └── snapshots │ ├── flex │ ├── test_get_slot_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_transaction_slot │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part10 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part12 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ └── 00010.png │ │ ├── part14 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part15 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part3 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part4 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ ├── part6 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ │ └── part8 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ └── 00009.png │ ├── test_app_mainmenu │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ ├── test_transaction_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_expert │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_message_normal │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ └── 00003.png │ │ ├── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ ├── part3 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ ├── part4 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ └── part5 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ └── 00003.png │ ├── test_get_slot_accepted │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ ├── test_transaction_expert │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ └── 00003.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ └── test_transaction_params │ │ ├── part1 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part2 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part3 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part4 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part5 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part6 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part7 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ ├── part8 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ └── 00009.png │ │ └── part9 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ └── 00007.png │ ├── stax │ ├── test_get_slot_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_transaction_slot │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── test_app_mainmenu │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ └── 00007.png │ ├── test_transaction_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_expert │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ └── test_message_normal │ │ ├── part0 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ │ ├── part1 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ │ ├── part2 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ │ ├── part3 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ │ ├── part4 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ │ └── part5 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── nanos │ ├── test_app_mainmenu │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ └── 00010.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ └── 00012.png │ ├── test_get_slot_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_transaction_slot │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ ├── 00014.png │ │ │ ├── 00015.png │ │ │ ├── 00016.png │ │ │ ├── 00017.png │ │ │ ├── 00018.png │ │ │ ├── 00019.png │ │ │ └── 00020.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ └── 00004.png │ │ ├── part10 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ ├── 00014.png │ │ │ ├── 00015.png │ │ │ ├── 00016.png │ │ │ ├── 00017.png │ │ │ ├── 00018.png │ │ │ └── 00019.png │ │ └── part12 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ ├── 00012.png │ │ │ ├── 00013.png │ │ │ └── 00014.png │ ├── test_message_normal │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ └── 00003.png │ │ ├── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ └── 00006.png │ │ ├── part3 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ └── 00006.png │ │ ├── part4 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ └── 00006.png │ │ └── part5 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ └── 00003.png │ ├── test_transaction_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ ├── 00011.png │ │ ├── 00012.png │ │ ├── 00013.png │ │ ├── 00014.png │ │ ├── 00015.png │ │ ├── 00016.png │ │ ├── 00017.png │ │ ├── 00018.png │ │ ├── 00019.png │ │ ├── 00020.png │ │ └── 00021.png │ ├── test_get_public_key_expert │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ └── test_get_slot_accepted │ │ ├── part0 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ │ ├── part1 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ └── 00006.png │ │ └── part2 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── nanosp │ ├── test_get_slot_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ └── 00006.png │ ├── test_transaction_slot │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_app_mainmenu │ │ ├── part0 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ └── 00011.png │ │ ├── part1 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ └── 00005.png │ │ └── part2 │ │ │ ├── 00000.png │ │ │ ├── 00001.png │ │ │ ├── 00002.png │ │ │ ├── 00003.png │ │ │ ├── 00004.png │ │ │ ├── 00005.png │ │ │ ├── 00006.png │ │ │ ├── 00007.png │ │ │ ├── 00008.png │ │ │ ├── 00009.png │ │ │ ├── 00010.png │ │ │ ├── 00011.png │ │ │ └── 00012.png │ └── test_transaction_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ ├── 00011.png │ │ ├── 00012.png │ │ ├── 00013.png │ │ ├── 00014.png │ │ ├── 00015.png │ │ ├── 00016.png │ │ ├── 00017.png │ │ ├── 00018.png │ │ ├── 00019.png │ │ └── 00020.png │ └── nanox │ ├── test_app_mainmenu │ ├── part0 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ └── 00011.png │ ├── part1 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ └── part2 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ ├── 00007.png │ │ ├── 00008.png │ │ ├── 00009.png │ │ ├── 00010.png │ │ ├── 00011.png │ │ └── 00012.png │ ├── test_get_slot_refused │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ ├── 00004.png │ ├── 00005.png │ └── 00006.png │ ├── test_transaction_slot │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ ├── 00004.png │ └── 00005.png │ ├── test_message_normal │ ├── part0 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── part1 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── part2 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ └── 00007.png │ ├── part3 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ └── 00006.png │ ├── part4 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ ├── 00005.png │ │ ├── 00006.png │ │ └── 00007.png │ └── part5 │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ └── test_transaction_refused │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ ├── 00004.png │ ├── 00005.png │ ├── 00006.png │ ├── 00007.png │ ├── 00008.png │ ├── 00009.png │ ├── 00010.png │ ├── 00011.png │ ├── 00012.png │ ├── 00013.png │ ├── 00014.png │ ├── 00015.png │ ├── 00016.png │ ├── 00017.png │ ├── 00018.png │ ├── 00019.png │ └── 00020.png ├── CODEOWNERS ├── src └── menu_handler.h ├── deps ├── jsmn │ └── .travis.yml └── ledger-zxlib │ ├── .gitignore │ ├── cmake │ └── Hunter │ │ └── config.cmake │ └── .clang-format ├── glyphs ├── icon_app.gif ├── icon_stax_64.gif └── icon_validate.gif ├── icons ├── flex_icon.png ├── nanos_icon.gif ├── nanox_icon.gif └── stax_icon.gif └── .gitmodules /js/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/application_client/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ledger-codeowners 2 | -------------------------------------------------------------------------------- /tests/application_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/menu_handler.h: -------------------------------------------------------------------------------- 1 | void handleMenuShowAddress(); 2 | -------------------------------------------------------------------------------- /js/vue.config.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | 3 | module.exports = {}; 4 | -------------------------------------------------------------------------------- /deps/jsmn/.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | sudo: false 3 | script: 4 | - make test 5 | -------------------------------------------------------------------------------- /deps/ledger-zxlib/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | \.idea/ 3 | \.vscode/ 4 | cmake-build-debug/ 5 | -------------------------------------------------------------------------------- /deps/ledger-zxlib/cmake/Hunter/config.cmake: -------------------------------------------------------------------------------- 1 | hunter_config(GTest VERSION 1.14.0) 2 | -------------------------------------------------------------------------------- /glyphs/icon_app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/glyphs/icon_app.gif -------------------------------------------------------------------------------- /icons/flex_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/icons/flex_icon.png -------------------------------------------------------------------------------- /icons/nanos_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/icons/nanos_icon.gif -------------------------------------------------------------------------------- /icons/nanox_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/icons/nanox_icon.gif -------------------------------------------------------------------------------- /icons/stax_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/icons/stax_icon.gif -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | ragger[speculos,ledgerwallet]>=1.11.4 3 | ecdsa>=0.16.1,<0.17.0 4 | -------------------------------------------------------------------------------- /glyphs/icon_stax_64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/glyphs/icon_stax_64.gif -------------------------------------------------------------------------------- /glyphs/icon_validate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/glyphs/icon_validate.gif -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "deps/ledger-zxlib"] 2 | path = deps/ledger-zxlib 3 | url = https://github.com/Zondax/ledger-zxlib/ 4 | -------------------------------------------------------------------------------- /deps/ledger-zxlib/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | IndentWidth: 4 3 | ColumnLimit: 120 4 | DerivePointerAlignment: false 5 | PointerAlignment: Right 6 | -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_slot_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_slot_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_slot_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_slot_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_slot_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_slot_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_slot_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_slot_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_slot/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_slot/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_slot/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_slot/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_slot/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_slot/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_slot/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_slot/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_slot/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_slot/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_app_mainmenu/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part0/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part0/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_app_mainmenu/part2/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_app_mainmenu/part2/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_slot_refused/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_get_slot_refused/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_slot/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_slot/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part0/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part0/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/part2/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_app_mainmenu/part2/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_slot_refused/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_get_slot_refused/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_slot/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_slot/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_app_mainmenu/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_transaction_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_transaction_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_expert/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_public_key_expert/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_expert/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_public_key_expert/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_expert/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_public_key_expert/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_expert/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_public_key_expert/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part5/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part5/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part5/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part5/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part5/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part5/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_message_normal/part5/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_message_normal/part5/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part3/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part3/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part4/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part4/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part5/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part5/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part5/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part5/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part5/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part5/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_message_normal/part5/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_message_normal/part5/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00014.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00015.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00016.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00017.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00018.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00019.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00020.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_refused/00021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_refused/00021.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part0/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part0/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/part2/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_app_mainmenu/part2/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00014.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00015.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00016.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00017.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00018.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00019.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_transaction_refused/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanosp/test_transaction_refused/00020.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part3/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part3/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part4/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part4/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part5/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part5/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part5/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part5/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part5/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part5/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_message_normal/part5/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_message_normal/part5/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00014.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00015.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00016.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00017.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00018.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00019.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_transaction_refused/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanox/test_transaction_refused/00020.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_expert/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_public_key_expert/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_expert/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_public_key_expert/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_expert/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_public_key_expert/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_expert/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_get_public_key_expert/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part5/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part5/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part5/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part5/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part5/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part5/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_message_normal/part5/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/stax/test_message_normal/part5/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_slot_accepted/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_get_slot_accepted/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part1/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part1/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_expert/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_expert/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part1/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part1/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part2/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part2/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part3/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part3/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part4/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part4/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part5/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part5/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part6/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part6/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part7/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part7/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part8/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part8/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_params/part9/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_params/part9/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part0/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part0/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part10/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part10/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part12/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part12/00010.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part14/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part14/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part15/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part15/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part2/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part2/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part3/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part3/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part4/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part4/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part6/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part6/00009.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00006.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00007.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00008.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_transaction_slot/part8/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/flex/test_transaction_slot/part8/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_public_key_expert/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_public_key_expert/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_public_key_expert/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_public_key_expert/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_public_key_expert/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_public_key_expert/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_public_key_expert/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_public_key_expert/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part1/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part1/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part2/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part2/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part2/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part2/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part2/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part2/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part2/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part2/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_get_slot_accepted/part2/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_get_slot_accepted/part2/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00014.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00015.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00016.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00017.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00018.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00019.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part0/00020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part0/00020.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part1/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part1/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part1/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part1/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part1/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part1/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part1/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part1/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part1/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part1/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00014.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00015.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00016.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00017.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00018.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part10/00019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part10/00019.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00006.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00007.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00008.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00009.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00010.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00011.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00012.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00013.png -------------------------------------------------------------------------------- /tests/snapshots/nanos/test_transaction_slot/part12/00014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onflow/ledger-app-flow/HEAD/tests/snapshots/nanos/test_transaction_slot/part12/00014.png --------------------------------------------------------------------------------