Skip to content

Commit

Permalink
remove support for stax device
Browse files Browse the repository at this point in the history
  • Loading branch information
neithanmo committed Jan 10, 2024
1 parent b542827 commit b39bf46
Show file tree
Hide file tree
Showing 83 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Analyse
strategy:
matrix:
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK"]
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK"]
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ ifeq ($(BOLOS_SDK),)
# In this case, there is not predefined SDK and we run dockerized
# When not using the SDK, we override and build the XL complete app

ZXLIB_COMPILE_STAX ?= 1
SUBSTRATE_PARSER_FULL ?= 1
include $(CURDIR)/deps/ledger-zxlib/dockerized_build.mk

Expand Down
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 tests_zemu/snapshots/sp-show_address/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 not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00000.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00001.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00002.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00003.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00004.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-mainmenu/00005.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-multisigTest/00000.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-multisigTest/00001.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-multisigTest/00002.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-multisigTest/00003.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-multisigTest/00004.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-show_address/00000.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-show_address/00001.png
Binary file not shown.
Binary file removed tests_zemu/snapshots/st-show_address/00002.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign/00000.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign/00001.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign/00002.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign/00003.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign/00004.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_jwt/00000.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_jwt/00001.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_jwt/00002.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_jwt/00003.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_message/00000.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_message/00001.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_message/00002.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_message/00003.png
Diff not rendered.
Binary file removed tests_zemu/snapshots/st-sign_message/00004.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file added tests_zemu/snapshots/x-show_address/00004.png
6 changes: 2 additions & 4 deletions tests_zemu/tests/common.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import { IDeviceModel } from '@zondax/zemu'

const Resolve = require("path").resolve;
const Resolve = require('path').resolve

export const APP_SEED = "equip will roof matter pink blind book anxiety banner elbow sun young"
export const APP_SEED = 'equip will roof matter pink blind book anxiety banner elbow sun young'

const APP_PATH_S = Resolve('../app/output/app_s.elf')
const APP_PATH_X = Resolve('../app/output/app_x.elf')
const APP_PATH_SP = Resolve('../app/output/app_s2.elf')
const APP_PATH_ST = Resolve('../app/output/app_stax.elf')

export const models: IDeviceModel[] = [
{ name: 'nanos', prefix: 'S', path: APP_PATH_S },
{ name: 'nanox', prefix: 'X', path: APP_PATH_X },
{ name: 'nanosp', prefix: 'SP', path: APP_PATH_SP },
{ name: 'stax', prefix: 'ST', path: APP_PATH_ST },
]

0 comments on commit b39bf46

Please sign in to comment.