-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from trilitech/palmer@functori@snapshots-for-…
…basic-tests-for-nano-devices Tests: use snapshots for basic tests for nano devices
- Loading branch information
Showing
1,010 changed files
with
2,705 additions
and
1,217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/nano/snapshots-tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright 2023 Functori <[email protected]> | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import os | ||
import sys | ||
|
||
file_path=os.path.abspath(__file__) | ||
dir_path=os.path.dirname(file_path) | ||
root_path=os.path.dirname(dir_path) | ||
sys.path.append(root_path) | ||
|
||
from utils.apdu import * | ||
from utils.app import * | ||
|
||
# Operation (0): Transaction | ||
# Fee: 0.39 tz | ||
# Storage limit: 6 | ||
# Amount: 0.02 tz | ||
# Destination: tz1cfdVKpBb9VRBdny8BQ5RSK82UudAp2miM | ||
# Entrypoint: jean_bob | ||
# Parameter: {Pair {} (Right -76723569314251090535296646);Pair {Elt Unit (Pair {Left Unit} (Pair (Left 0x03F01167865DC63DFEE0E31251329CEAB660D94606) (Pair 0x0107B21FCA96C5763F67B286752C7AAEFC5931D15A Unit)))} (Right 3120123370638446806591421154959427514880865200209654970345);Pair {} (Left (Some Unit))} | ||
# Operation (1): Transaction | ||
# Fee: 0.65 tz | ||
# Storage limit: 2 | ||
# Amount: 0.06 tz | ||
# Destination: KT1CYT8oACUcCSNTu2qfgB4fj5bD7szYrpti | ||
|
||
if __name__ == "__main__": | ||
test_name = Path(__file__).stem | ||
with nano_app() as app: | ||
|
||
app.assert_screen(Screen.Home) | ||
|
||
data = app.sign_with_hash(DEFAULT_ACCOUNT, | ||
"0300000000000000000000000000000000000000000000000000000000000000006c001597c45b11b421bb806a0c56c5da5638bf4b1adbf0e617090006a09c010000bac799dfc7f6af2ff0b95f83d023e68c895020baffff086a65616e5f626f620000009a020000009507070200000000050800c6bab5ccc8d891cd8de4b6f7070707020000004b0704030b070702000000040505030b070705050a0000001503f01167865dc63dfee0e31251329ceab660d9460607070a000000150107b21fca96c5763f67b286752c7aaefc5931d15a030b050800a9df9fc1e7eaa7a9c1f7bd87a9ba9cadf5b5b2cd829deea2b7fef9070707020000000005050509030b6c01ee572f02e5be5d097ba17369789582882e8abb8790d627063202e0d403012b704944f5b5fd30eed2ab4385478488e09fe04a0000", | ||
path=test_name) | ||
|
||
app.check_signature_with_hash( | ||
hash="e3d5453110fb40a802b56b4af7f0d5370769b8154b0e6447357cbc54cc319ed4", | ||
signature="ff0b5c23a1a4ce3846ea35c135a3a5a4b8d3125c83a72a16f7a4fc0ffdc2306fbaead5a3559bf5974801055f505376bcd9abbe9bfec3d80f00c7161db0280e08", | ||
data=data) | ||
|
||
app.quit() |
56 changes: 56 additions & 0 deletions
56
tests/integration/nano/nanosp/regression_potential_empty_screen.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright 2023 Functori <[email protected]> | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import os | ||
import sys | ||
|
||
file_path=os.path.abspath(__file__) | ||
dir_path=os.path.dirname(file_path) | ||
root_path=os.path.dirname(dir_path) | ||
sys.path.append(root_path) | ||
|
||
from utils.apdu import * | ||
from utils.app import * | ||
|
||
# Operation (0): Transfer ticket | ||
# Fee: 0.01 tz | ||
# Storage limit: 4 | ||
# Contents: UNPAIR | ||
# Type: pair "1" 2 | ||
# Ticketer: tz1ixvCiPJYyMjsp2nKBVaq54f6AdbV8hCKa | ||
# Amount: 1 | ||
# Destination: KT18amZmM5W7qDWVt2pH6uj7sCEd3kbzLrHT | ||
# Entrypoint: S | ||
# | ||
# S | ||
# S | ||
# S | ||
|
||
if __name__ == "__main__": | ||
test_name = Path(__file__).stem | ||
with nano_app() as app: | ||
|
||
app.assert_screen(Screen.Home) | ||
|
||
data = app.sign_with_hash(DEFAULT_ACCOUNT, | ||
"0300000000000000000000000000000000000000000000000000000000000000009e00ffdd6102321bc251e4a5190ad5b12b251069d9b4904e02030400000002037a0000000a076501000000013100020000ffdd6102321bc251e4a5190ad5b12b251069d9b4010100000000000000000000000000000000000000000000000008530a0a530a530a53", | ||
path=test_name) | ||
|
||
app.check_signature_with_hash( | ||
hash="ba220e5b9af0fa350d127665049ef6dcc85304a6bd62fcc5e4f12752092af1f7", | ||
signature="03399e1639e7884f86b83714e5eea2acdc56d3449f029e7258ef3bbbd35f449105d9545c3c62f7ffa088d3dfebcfa38cd316e2b4d4067cf288e9e275b8fe6901", | ||
data=data) | ||
|
||
app.quit() |
44 changes: 44 additions & 0 deletions
44
tests/integration/nano/nanosp/regression_press_right_works_across_apdu_recieves.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright 2023 Functori <[email protected]> | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import os | ||
import sys | ||
|
||
file_path=os.path.abspath(__file__) | ||
dir_path=os.path.dirname(file_path) | ||
root_path=os.path.dirname(dir_path) | ||
sys.path.append(root_path) | ||
|
||
from utils.apdu import * | ||
from utils.app import * | ||
|
||
# Expression: {IF_NONE {{SWAP;IF {DIP {{DROP 1;PUSH unit Unit;PUSH bool True;PUSH string ";L\\S?p$-Fq)VDg\n]te\no4v0_8)\""}}} {{DROP 2;PUSH unit Unit;PUSH bool False;PUSH string "Li-%*edF6~?E[5Kmu?dyviwJ^2\"\\d$FyQ>>!>D$g(Qg";PUSH string "*Tx<E`SiG6Yf*A^kZ\\=7?H[mOlQ\n]Ehs"}}}} {IF_NONE {DUP} {{DROP 4;PUSH unit Unit;PUSH bool True;PUSH string "\"\\6_4\n$k%";PUSH string "c^1\"\\?Ey_1!EVb~9;EX;YU\n#Kj2ZT8h`U!X "}}};SIZE} | ||
|
||
if __name__ == "__main__": | ||
test_name = Path(__file__).stem | ||
with nano_app() as app: | ||
|
||
app.assert_screen(Screen.Home) | ||
|
||
data = app.sign_with_hash(DEFAULT_ACCOUNT, | ||
"050200000135072f02000000c502000000c0034c072c0200000040051f02000000390200000034052000010743036c030b07430359030a07430368010000001b3b4c5c533f70242d4671295644670a5d74650a6f3476305f3829220200000072020000006d052000020743036c030b07430359030307430368010000002b4c692d252a656446367e3f455b354b6d753f64797669774a5e32225c64244679513e3e213e4424672851670743036801000000202a54783c45605369473659662a415e6b5a5c3d373f485b6d4f6c510a5d4568730200000062072f020000000203210200000054020000004f052000040743036c030b07430359030a074303680100000009225c365f340a246b25074303680100000024635e31225c3f45795f31214556627e393b45583b59550a234b6a325a54386860552158200345", | ||
path=test_name) | ||
|
||
app.check_signature_with_hash( | ||
hash="dcba96786c40c7894527a85050bc0b75eaee37aa020a52c634275450018da478", | ||
signature="22d552099146915f4c3280b3dbd4ab5d459b96b585247e58fda9bf53c9951dbe017811d074e688f11d8f47ce7f94c0548dca76be9ae9e87df794d3facdb4bb0a", | ||
data=data) | ||
|
||
app.quit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright 2023 Functori <[email protected]> | ||
|
||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
|
||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import os | ||
import sys | ||
|
||
file_path=os.path.abspath(__file__) | ||
dir_path=os.path.dirname(file_path) | ||
root_path=os.path.dirname(dir_path) | ||
sys.path.append(root_path) | ||
|
||
from utils.apdu import * | ||
from utils.app import * | ||
|
||
# Operation (0): Transaction | ||
# Fee: 0.39 tz | ||
# Storage limit: 6 | ||
# Amount: 0.02 tz | ||
# Destination: tz1cfdVKpBb9VRBdny8BQ5RSK82UudAp2miM | ||
# Entrypoint: jean_bob | ||
# Parameter: {Pair {} (Right -76723569314251090535296646);Pair {Elt Unit (Pair {Left Unit} (Pair (Left 0x03F01167865DC63DFEE0E31251329CEAB660D94606) (Pair 0x0107B21FCA96C5763F67B286752C7AAEFC5931D15A Unit)))} (Right 3120123370638446806591421154959427514880865200209654970345);Pair {} (Left (Some Unit))} | ||
# Operation (1): Transaction | ||
# Fee: 0.65 tz | ||
# Storage limit: 2 | ||
# Amount: 0.06 tz | ||
# Destination: KT1CYT8oACUcCSNTu2qfgB4fj5bD7szYrpti | ||
|
||
if __name__ == "__main__": | ||
test_name = Path(__file__).stem | ||
with nano_app() as app: | ||
|
||
app.assert_screen(Screen.Home) | ||
|
||
data = app.sign_with_hash(DEFAULT_ACCOUNT, | ||
"0300000000000000000000000000000000000000000000000000000000000000006c001597c45b11b421bb806a0c56c5da5638bf4b1adbf0e617090006a09c010000bac799dfc7f6af2ff0b95f83d023e68c895020baffff086a65616e5f626f620000009a020000009507070200000000050800c6bab5ccc8d891cd8de4b6f7070707020000004b0704030b070702000000040505030b070705050a0000001503f01167865dc63dfee0e31251329ceab660d9460607070a000000150107b21fca96c5763f67b286752c7aaefc5931d15a030b050800a9df9fc1e7eaa7a9c1f7bd87a9ba9cadf5b5b2cd829deea2b7fef9070707020000000005050509030b6c01ee572f02e5be5d097ba17369789582882e8abb8790d627063202e0d403012b704944f5b5fd30eed2ab4385478488e09fe04a0000", | ||
path=test_name) | ||
|
||
app.check_signature_with_hash( | ||
hash="e3d5453110fb40a802b56b4af7f0d5370769b8154b0e6447357cbc54cc319ed4", | ||
signature="ff0b5c23a1a4ce3846ea35c135a3a5a4b8d3125c83a72a16f7a4fc0ffdc2306fbaead5a3559bf5974801055f505376bcd9abbe9bfec3d80f00c7161db0280e08", | ||
data=data) | ||
|
||
app.quit() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+401 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+306 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+365 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+336 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+508 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+503 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+379 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00006.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+462 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00007.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+455 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+472 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00009.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+437 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+450 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00011.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+442 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00012.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+478 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00013.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+448 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00014.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+466 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00015.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+468 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00016.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+464 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00017.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+462 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00018.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+471 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00019.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+469 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00020.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+440 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00021.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00022.png
Oops, something went wrong.
Binary file added
BIN
+427 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00023.png
Oops, something went wrong.
Binary file added
BIN
+301 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00024.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00025.png
Oops, something went wrong.
Binary file added
BIN
+338 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00026.png
Oops, something went wrong.
Binary file added
BIN
+497 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00027.png
Oops, something went wrong.
Binary file added
BIN
+489 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00028.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/regression_batched_ops/00029.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+399 Bytes
tests/integration/nano/snapshots/nanos/settings_blind_signing_disabled.png
Oops, something went wrong.
Binary file added
BIN
+385 Bytes
tests/integration/nano/snapshots/nanos/settings_blind_signing_enabled.png
Oops, something went wrong.
Binary file added
BIN
+376 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00000.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00001.png
Oops, something went wrong.
Binary file added
BIN
+537 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00002.png
Oops, something went wrong.
Binary file added
BIN
+539 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00003.png
Oops, something went wrong.
Binary file added
BIN
+390 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00004.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_basic/00005.png
Oops, something went wrong.
Binary file added
BIN
+373 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00000.png
Oops, something went wrong.
Binary file added
BIN
+403 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00001.png
Oops, something went wrong.
Binary file added
BIN
+531 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00002.png
Oops, something went wrong.
Binary file added
BIN
+511 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00003.png
Oops, something went wrong.
Binary file added
BIN
+405 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00004.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_deep/00005.png
Oops, something went wrong.
Binary file added
BIN
+373 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00000.png
Oops, something went wrong.
Binary file added
BIN
+403 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00001.png
Oops, something went wrong.
Binary file added
BIN
+497 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00002.png
Oops, something went wrong.
Binary file added
BIN
+524 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00003.png
Oops, something went wrong.
Binary file added
BIN
+427 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00004.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_blindsign_too_large/00005.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00000.png
Oops, something went wrong.
Binary file added
BIN
+296 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00001.png
Oops, something went wrong.
Binary file added
BIN
+387 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00002.png
Oops, something went wrong.
Binary file added
BIN
+346 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00003.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00004.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00005.png
Oops, something went wrong.
Binary file added
BIN
+324 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00006.png
Oops, something went wrong.
Binary file added
BIN
+347 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00007.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
...on/nano/snapshots/nanos/test_parsing_errors/one_byte_added_at_the_end/00008.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00000.png
Oops, something went wrong.
Binary file added
BIN
+296 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00001.png
Oops, something went wrong.
Binary file added
BIN
+387 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00002.png
Oops, something went wrong.
Binary file added
BIN
+346 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00003.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00004.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
...ration/nano/snapshots/nanos/test_parsing_errors/one_byte_added_inside/00006.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00000.png
Oops, something went wrong.
Binary file added
BIN
+296 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00001.png
Oops, something went wrong.
Binary file added
BIN
+387 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00002.png
Oops, something went wrong.
Binary file added
BIN
+346 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00003.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00004.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00005.png
Oops, something went wrong.
Binary file added
BIN
+366 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
...tion/nano/snapshots/nanos/test_parsing_errors/one_byte_removed_inside/00007.png
Oops, something went wrong.
Binary file added
BIN
+381 Bytes
...egration/nano/snapshots/nanos/test_parsing_errors/unknown_magic_bytes/00000.png
Oops, something went wrong.
Binary file added
BIN
+381 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/unknown_operation/00000.png
Oops, something went wrong.
Binary file added
BIN
+450 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00000.png
Oops, something went wrong.
Binary file added
BIN
+413 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00001.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00002.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00003.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00004.png
Oops, something went wrong.
Binary file added
BIN
+455 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00005.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00006.png
Oops, something went wrong.
Binary file added
BIN
+469 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00007.png
Oops, something went wrong.
Binary file added
BIN
+466 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00008.png
Oops, something went wrong.
Binary file added
BIN
+407 Bytes
...ntegration/nano/snapshots/nanos/test_parsing_errors/wrong_last_packet/00009.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/bip32_ed25519/00000.png
Oops, something went wrong.
Binary file added
BIN
+537 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/bip32_ed25519/00001.png
Oops, something went wrong.
Binary file added
BIN
+499 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/bip32_ed25519/00002.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/bip32_ed25519/00003.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/ed25519/00000.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/ed25519/00001.png
Oops, something went wrong.
Binary file added
BIN
+531 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/ed25519/00002.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/ed25519/00003.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256k1/00000.png
Oops, something went wrong.
Binary file added
BIN
+544 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256k1/00001.png
Oops, something went wrong.
Binary file added
BIN
+518 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256k1/00002.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256k1/00003.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256r1/00000.png
Oops, something went wrong.
Binary file added
BIN
+529 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256r1/00001.png
Oops, something went wrong.
Binary file added
BIN
+514 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256r1/00002.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
tests/integration/nano/snapshots/nanos/test_provide_pk/secp256r1/00003.png
Oops, something went wrong.
Binary file added
BIN
+383 Bytes
...apshots/nanos/test_regression_continue_after_reject/reject_public_key/00000.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
...apshots/nanos/test_regression_continue_after_reject/reject_public_key/00001.png
Oops, something went wrong.
Binary file added
BIN
+531 Bytes
...apshots/nanos/test_regression_continue_after_reject/reject_public_key/00002.png
Oops, something went wrong.
Binary file added
BIN
+345 Bytes
...apshots/nanos/test_regression_continue_after_reject/reject_public_key/00003.png
Oops, something went wrong.
Binary file added
BIN
+327 Bytes
...apshots/nanos/test_regression_continue_after_reject/reject_public_key/00004.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00000.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00001.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00002.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00003.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00004.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00005.png
Oops, something went wrong.
Binary file added
BIN
+326 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00006.png
Oops, something went wrong.
Binary file added
BIN
+421 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00007.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00008.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00009.png
Oops, something went wrong.
Binary file added
BIN
+407 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00010.png
Oops, something went wrong.
Binary file added
BIN
+405 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00011.png
Oops, something went wrong.
Binary file added
BIN
+422 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00012.png
Oops, something went wrong.
Binary file added
BIN
+415 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00013.png
Oops, something went wrong.
Binary file added
BIN
+420 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00014.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00015.png
Oops, something went wrong.
Binary file added
BIN
+398 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00016.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00017.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00018.png
Oops, something went wrong.
Binary file added
BIN
+390 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00019.png
Oops, something went wrong.
Binary file added
BIN
+439 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00020.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00021.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00022.png
Oops, something went wrong.
Binary file added
BIN
+403 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00023.png
Oops, something went wrong.
Binary file added
BIN
+392 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00024.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00025.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00026.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00027.png
Oops, something went wrong.
Binary file added
BIN
+327 Bytes
.../snapshots/nanos/test_regression_continue_after_reject/reject_signing/00028.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00000.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00001.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00002.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00003.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00004.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00005.png
Oops, something went wrong.
Binary file added
BIN
+326 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00006.png
Oops, something went wrong.
Binary file added
BIN
+421 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00007.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00008.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00009.png
Oops, something went wrong.
Binary file added
BIN
+407 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00010.png
Oops, something went wrong.
Binary file added
BIN
+405 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00011.png
Oops, something went wrong.
Binary file added
BIN
+422 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00012.png
Oops, something went wrong.
Binary file added
BIN
+415 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00013.png
Oops, something went wrong.
Binary file added
BIN
+420 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00014.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00015.png
Oops, something went wrong.
Binary file added
BIN
+398 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00016.png
Oops, something went wrong.
Binary file added
BIN
+406 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00017.png
Oops, something went wrong.
Binary file added
BIN
+401 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00018.png
Oops, something went wrong.
Binary file added
BIN
+390 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00019.png
Oops, something went wrong.
Binary file added
BIN
+439 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00020.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00021.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00022.png
Oops, something went wrong.
Binary file added
BIN
+403 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00023.png
Oops, something went wrong.
Binary file added
BIN
+392 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00024.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00025.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00026.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00027.png
Oops, something went wrong.
Binary file added
BIN
+327 Bytes
tests/integration/nano/snapshots/nanos/test_reject_transaction/00028.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+416 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00000.png
Oops, something went wrong.
Binary file added
BIN
+289 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00001.png
Oops, something went wrong.
Binary file added
BIN
+376 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00002.png
Oops, something went wrong.
Binary file added
BIN
+491 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00003.png
Oops, something went wrong.
Binary file added
BIN
+496 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00004.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_delegation/00005.png
Oops, something went wrong.
Binary file added
BIN
+412 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00000.png
Oops, something went wrong.
Binary file added
BIN
+421 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00001.png
Oops, something went wrong.
Binary file added
BIN
+431 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00002.png
Oops, something went wrong.
Binary file added
BIN
+432 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00003.png
Oops, something went wrong.
Binary file added
BIN
+405 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00004.png
Oops, something went wrong.
Binary file added
BIN
+430 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00005.png
Oops, something went wrong.
Binary file added
BIN
+423 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00006.png
Oops, something went wrong.
Binary file added
BIN
+445 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00007.png
Oops, something went wrong.
Binary file added
BIN
+438 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00008.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00009.png
Oops, something went wrong.
Binary file added
BIN
+449 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00010.png
Oops, something went wrong.
Binary file added
BIN
+423 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00011.png
Oops, something went wrong.
Binary file added
BIN
+442 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00012.png
Oops, something went wrong.
Binary file added
BIN
+416 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00013.png
Oops, something went wrong.
Binary file added
BIN
+451 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00014.png
Oops, something went wrong.
Binary file added
BIN
+431 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00015.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00016.png
Oops, something went wrong.
Binary file added
BIN
+466 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00017.png
Oops, something went wrong.
Binary file added
BIN
+449 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00018.png
Oops, something went wrong.
Binary file added
BIN
+451 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00019.png
Oops, something went wrong.
Binary file added
BIN
+440 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00020.png
Oops, something went wrong.
Binary file added
BIN
+432 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00021.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_failing_noop/00022.png
Oops, something went wrong.
Binary file added
BIN
+453 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00000.png
Oops, something went wrong.
Binary file added
BIN
+371 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00001.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00002.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00003.png
Oops, something went wrong.
Binary file added
BIN
+289 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00004.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00005.png
Oops, something went wrong.
Binary file added
BIN
+503 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00006.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_increase_paid_storage/00007.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
tests/integration/nano/snapshots/nanos/test_sign_micheline_without_hash/00000.png
Oops, something went wrong.
Binary file added
BIN
+375 Bytes
tests/integration/nano/snapshots/nanos/test_sign_micheline_without_hash/00001.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_micheline_without_hash/00002.png
Oops, something went wrong.
Binary file added
BIN
+409 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00000.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00001.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00002.png
Oops, something went wrong.
Binary file added
BIN
+326 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00003.png
Oops, something went wrong.
Binary file added
BIN
+391 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00004.png
Oops, something went wrong.
Binary file added
BIN
+326 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00005.png
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00006.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_origination/00007.png
Oops, something went wrong.
Binary file added
BIN
+412 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00000.png
Oops, something went wrong.
Binary file added
BIN
+481 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00001.png
Oops, something went wrong.
Binary file added
BIN
+482 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00002.png
Oops, something went wrong.
Binary file added
BIN
+298 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00003.png
Oops, something went wrong.
Binary file added
BIN
+460 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00004.png
Oops, something went wrong.
Binary file added
BIN
+415 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00005.png
Oops, something went wrong.
Binary file added
BIN
+485 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00006.png
Oops, something went wrong.
Binary file added
BIN
+454 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00007.png
Oops, something went wrong.
Binary file added
BIN
+415 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00008.png
Oops, something went wrong.
Binary file added
BIN
+481 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00009.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_proposals/00010.png
Oops, something went wrong.
Binary file added
BIN
+469 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00000.png
Oops, something went wrong.
Binary file added
BIN
+385 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00001.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00002.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00003.png
Oops, something went wrong.
Binary file added
BIN
+332 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00004.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
...s/integration/nano/snapshots/nanos/test_sign_register_global_constant/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+459 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00000.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00001.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00002.png
Oops, something went wrong.
Binary file added
BIN
+409 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00003.png
Oops, something went wrong.
Binary file added
BIN
+364 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00004.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00005.png
Oops, something went wrong.
Binary file added
BIN
+394 Bytes
tests/integration/nano/snapshots/nanos/test_sign_sc_rollup_add_messages/00006.png
Oops, something went wrong.
Binary file added
BIN
+450 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00000.png
Oops, something went wrong.
Binary file added
BIN
+413 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00001.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00002.png
Oops, something went wrong.
Binary file added
BIN
+359 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00003.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00004.png
Oops, something went wrong.
Binary file added
BIN
+455 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00005.png
Oops, something went wrong.
Binary file added
BIN
+495 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00006.png
Oops, something went wrong.
Binary file added
BIN
+469 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00007.png
Oops, something went wrong.
Binary file added
BIN
+466 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00008.png
Oops, something went wrong.
Binary file added
BIN
+422 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00009.png
Oops, something went wrong.
Binary file added
BIN
+438 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00010.png
Oops, something went wrong.
Binary file added
BIN
+442 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00011.png
Oops, something went wrong.
Binary file added
BIN
+422 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00012.png
Oops, something went wrong.
Binary file added
BIN
+441 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00013.png
Oops, something went wrong.
Binary file added
BIN
+436 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00014.png
Oops, something went wrong.
Binary file added
BIN
+454 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00015.png
Oops, something went wrong.
Binary file added
BIN
+447 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00016.png
Oops, something went wrong.
Binary file added
BIN
+449 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00017.png
Oops, something went wrong.
Binary file added
BIN
+459 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00018.png
Oops, something went wrong.
Binary file added
BIN
+431 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00019.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00020.png
Oops, something went wrong.
Binary file added
BIN
+423 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00021.png
Oops, something went wrong.
Binary file added
BIN
+456 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00022.png
Oops, something went wrong.
Binary file added
BIN
+441 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00023.png
Oops, something went wrong.
Binary file added
BIN
+456 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00024.png
Oops, something went wrong.
Binary file added
BIN
+480 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00025.png
Oops, something went wrong.
Binary file added
BIN
+456 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00026.png
Oops, something went wrong.
Binary file added
BIN
+466 Bytes
...ation/nano/snapshots/nanos/test_sign_sc_rollup_execute_outbox_message/00027.png
Oops, something went wrong.
Oops, something went wrong.