* Add a UI warning when contract data are not enabled in the settings * Update wording "contract data" -> "blind signing" to raise awareness * Bump version 1.9.5 * remove hardcoded path in helper build script * Add blind signature test * Add snapshot-tmp to gitignore * Remove unused snapshots * Increase tests timings * Remove unused snapshots * Fix and rename compound blind deposit test * Update Approve and Transfer tests * Update tests * Cosmetic changes + disable debug flag * Update CHANGELOG.md
38 lines
1.7 KiB
JavaScript
38 lines
1.7 KiB
JavaScript
import "core-js/stable";
|
|
import "regenerator-runtime/runtime";
|
|
import { waitForAppScreen, zemu } from './test.fixture';
|
|
|
|
test('[Nano S] Deposit ETH on compound, blind sign', zemu("nanos", async (sim, eth) => {
|
|
|
|
const tx = eth.signTransaction(
|
|
"44'/60'/1'/0/0",
|
|
'f8924685028fa6ae008306599594cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e0488016345785d8a0000b864474cf53d0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a900000000000000000000000070bc641723fad48be2df6cf63dc6270ee2f897430000000000000000000000000000000000000000000000000000000000000000018080',
|
|
);
|
|
|
|
await waitForAppScreen(sim);
|
|
await sim.navigateAndCompareSnapshots('.', 'nanos_deposit_eth_compound_blind', [7, 0]);
|
|
|
|
await expect(tx).resolves.toEqual({
|
|
"r": "b5ae3a011eb50e7d1fe9f5e6f6d91ca9f4dfca5f73805fc4866d49e72ead2f5c",
|
|
"s": "3c6e55db5925586bb58e434b58b2c04756f662131597f98c1aa2418b16992b81",
|
|
"v": "26",
|
|
});
|
|
}));
|
|
|
|
test('[Nano X] Deposit ETH on compound, blind sign', zemu("nanox", async (sim, eth) => {
|
|
|
|
const tx = eth.signTransaction(
|
|
"44'/60'/1'/0/0",
|
|
'f8924685028fa6ae008306599594cc9a0b7c43dc2a5f023bb9b738e45b0ef6b06e0488016345785d8a0000b864474cf53d0000000000000000000000007d2768de32b0b80b7a3454c06bdac94a69ddc7a900000000000000000000000070bc641723fad48be2df6cf63dc6270ee2f897430000000000000000000000000000000000000000000000000000000000000000018080',
|
|
);
|
|
|
|
await waitForAppScreen(sim);
|
|
await sim.navigateAndCompareSnapshots('.', 'nanox_deposit_eth_compound_blind', [5, 0]);
|
|
|
|
await expect(tx).resolves.toEqual({
|
|
"r": "b5ae3a011eb50e7d1fe9f5e6f6d91ca9f4dfca5f73805fc4866d49e72ead2f5c",
|
|
"s": "3c6e55db5925586bb58e434b58b2c04756f662131597f98c1aa2418b16992b81",
|
|
"v": "26",
|
|
});
|
|
}));
|