Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat(SPV-1241): migrate finalize transaction and send to recipients #297

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0d94f7c
refactor(SPV-1087): Remove old project structure. (#2)
mgosek-4chain Oct 23, 2024
fa1d4d6
refactor(SPV-1087): Paste authentication, utils files content from t…
mgosek-4chain Oct 24, 2024
5c649a1
ci(SPV-1138): add separated linter files and fix warnings. (#4)
dorzepowski Oct 28, 2024
fd131af
refactor(SPV-1087): add configurations API implementation, spv client…
mgosek-4chain Nov 4, 2024
6e7159d
refactor(SPV-1087): add user transactions api implementation. (#7)
mgosek-4chain Nov 13, 2024
6e5fd7b
refactor(SPV-1192): add page filter query builder implementation. (#14)
mgosek-4chain Nov 14, 2024
6efd9e6
refactor(SPV-1192): replace query params by page filter. (#15)
mgosek-4chain Nov 14, 2024
4d3962d
refactor(SPV-1174): add user contacts, invitation api implementation…
mgosek-4chain Nov 18, 2024
3acdd4c
refactor(SPV-1184): add users information + user access key api imple…
mgosek-4chain Nov 18, 2024
2da8fae
refactor(SPV-1206): add user utxos API implementation. (#16)
mgosek-4chain Nov 18, 2024
4d0325a
refactor(SPV-1183): add user merkleroots api implementation (#11)
mgosek-4chain Nov 18, 2024
dbceb5c
refactor(SPV-1209): fix url path building in user APIs. (#17)
mgosek-4chain Nov 19, 2024
b823c1f
Feat/spv-1207/migrate totp operations logic from old spv wallet go cl…
ac4ch Nov 21, 2024
cdf95b0
refactoring(SPV-1208) Migrate_Merkel_Roots_Sync_operations_logic_from…
ac4ch Nov 27, 2024
1eb35b5
refactor(SPV-1213): Admin API access with user xpubs implementation.…
mgosek-4chain Nov 27, 2024
f34a5ed
refactor(SPV-1173): add example pkg, taskfile, keys generator, readme…
mgosek-4chain Nov 27, 2024
f89e3d8
Ref(SPV-1216) Fix unit tests status codes (#24)
ac4ch Dec 2, 2024
13253ba
feat(SPV-1241): migrate FinalizeTransaction and SendToRecipients
dzolt Dec 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
218 changes: 0 additions & 218 deletions .github/mergify.yml

This file was deleted.

70 changes: 12 additions & 58 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -1,62 +1,16 @@
# See more at: https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
name: run-go-tests

env:
GO111MODULE: on

on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
# schedule:
# - cron: '1 4 * * *'
branches-ignore:
- main
- master

permissions:
contents: write
pull-requests: read

jobs:
yamllint:
name: Run yaml linter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run yaml linter
uses: ibiqlik/[email protected]
asknancy:
name: Ask Nancy (check dependencies)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Write go list
run: go list -json -m all > go.list
- name: Ask Nancy
uses: sonatype-nexus-community/[email protected]
continue-on-error: true
test:
needs: [yamllint, asknancy]
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go from go.mod
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Cache code
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod # Module download cache
~/.cache/go-build # Build cache (Linux)
~/Library/Caches/go-build # Build cache (Mac)
'%LocalAppData%\go-build' # Build cache (Windows)
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run linter and tests
run: make test-coverage-custom
on-push:
uses: bactions/workflows/.github/workflows/on-push-go.yml@main
secrets:
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
SLACK_WEBHOOK_URL: ${{ secrets.ON_PUSH_SLACK_WEBHOOK_URL }}
Loading
Loading