Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e813dd0
feat: parsing token fa2 data and displaying at transaction review
Mar 17, 2026
d9ed046
feat: format token amount due to token info
Mar 23, 2026
8e15e39
fix: docker-image command
Mar 23, 2026
5231478
fix: guideline enforcer issue
Mar 23, 2026
fa4b489
test: add requirements file and define pytest dir
Mar 23, 2026
719934c
ci: fix test step
Mar 23, 2026
730daa1
fix: path issues between platforms
Mar 23, 2026
6776195
fix: amount field and update app version
Mar 26, 2026
c4b527a
fix: parsing of parameters and tests
Mar 26, 2026
5d2285f
docs: information about the fa2 clear signing
Mar 27, 2026
7bccab7
feat: replace destination with transfer token to field
Mar 30, 2026
64314ac
tests: update snapshots
Mar 30, 2026
bb4a50d
tests: remove old snapshots
Mar 30, 2026
349a0fe
fix: filename issues between platforms
Mar 30, 2026
8aab5f9
feat: update fa2 token list
Mar 31, 2026
163269f
chore: set lower concurrency to pytest execution
Mar 31, 2026
8c6ada9
chore: add options to pass golden_run and -k flags to pytest
Mar 31, 2026
2094e68
fix: format and small validations
Mar 31, 2026
0cd5ff4
fix: lint issues
Mar 31, 2026
56b1acb
chore: change make format command
Mar 31, 2026
f646f5d
chore: fix make format command
Apr 7, 2026
ed56da8
refactor: replace numbers by constants
Apr 7, 2026
caccf1f
refactor: move fa2 tokens list to a new file
Apr 7, 2026
fbf1d8f
refactor: use macro to wrap fa2_fallback_to_binary call
Apr 7, 2026
d622112
chore: make app_vars.sh script to use values from app makefile
Apr 7, 2026
8c2d17e
style: fix format
Apr 7, 2026
a7586f5
refactor: replace number by constants
Apr 7, 2026
75ba59a
ci: add c unit tests execution to the pipeline
Apr 7, 2026
4d11e60
tests: refactor ragger and unit tests
Apr 9, 2026
7fe2aad
ci: remove duplicated and add app-boilerplate missing actions
Apr 10, 2026
b990c65
chore: fix .clang-format and lint errors
Apr 10, 2026
0347a67
chore: fix lint error for tests code
Apr 10, 2026
38f2105
chore: fix misspelling words
Apr 10, 2026
f055082
chore: fix type error
Apr 10, 2026
787a452
tests: update snapshots
Apr 10, 2026
7ff8f1c
chore: fix misspelling
Apr 10, 2026
196e04d
chore: fix pylint errors
Apr 10, 2026
a6f87a3
chore: re-use rust toolchain version
Apr 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
18 changes: 3 additions & 15 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ IndentWidth: 4
ColumnLimit: 78
UseTab: Never
IndentCaseLabels: false
InsertBraces: true
PointerAlignment: Right

AlwaysBreakAfterReturnType: TopLevelDefinitions
Expand All @@ -17,20 +16,9 @@ BinPackParameters: true

AlignAfterOpenBracket: Align

AlignConsecutiveMacros:
Enabled: true
AcrossComments: true
AcrossEmptyLines: false

AlignConsecutiveDeclarations:
Enabled: true
AcrossComments: false
AcrossEmptyLines: false

AlignConsecutiveAssignments:
Enabled: true
AcrossComments: false
AcrossEmptyLines: false
AlignConsecutiveMacros: AcrossComments
AlignConsecutiveDeclarations: Consecutive
AlignConsecutiveAssignments: Consecutive

AlignArrayOfStructures: Left
SortIncludes: Never
Expand Down
204 changes: 0 additions & 204 deletions .github/workflows/build.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/build_and_functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ name: Build and run functional tests using ragger through reusable workflow

on:
workflow_dispatch:
inputs:
golden_run:
type: choice
required: true
default: 'Raise an error (default)'
description: CI behavior if the test snapshots are different than expected.
options:
- 'Raise an error (default)'
- 'Open a PR'
push:
branches:
- master
Expand All @@ -22,3 +31,14 @@ jobs:
build_application:
name: Build application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
upload_app_binaries_artifact: "app_tezos_binaries"

tests_standalone:
name: Run standalone ragger tests using the reusable workflow
needs: build_application
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_ragger_tests.yml@v1
with:
download_app_binaries_artifact: "app_tezos_binaries"
regenerate_snapshots: ${{ github.event_name == 'workflow_dispatch' && inputs.golden_run == 'Open a PR' }}
test_dir: "tests/standalone"
45 changes: 0 additions & 45 deletions .github/workflows/codeql_checks.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/coding_style_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,3 @@ jobs:
with:
source: './app/src'
extensions: 'h,c'
version: 15

pylint_check:
name: Python Lint Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'

- name: Install pylint
run: pip install pylint -r tests/requirements.txt

- name: Run pylint with .pylintrc
run: pylint --errors-only --rcfile=tests/integration/.pylintrc tests/integration/python/
Loading
Loading