Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 19 additions & 3 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
go-version: "1.23"

- name: Tidy Go modules
run: |
go mod tidy

- name: Generate cache key
id: cache-key
run: echo "key=${{ runner.os }}-binaries-${{ hashFiles('**/go.sum', '**/*.go') }}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -73,6 +77,10 @@ jobs:
with:
go-version: "1.23"

- name: Tidy Go modules
run: |
go mod tidy

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -113,7 +121,7 @@ jobs:

- name: Install E2E dependencies
run: |
cd e2e && go mod download
cd e2e && go mod tidy && go mod download

- name: Run Key Generation E2E tests
run: |
Expand Down Expand Up @@ -151,6 +159,10 @@ jobs:
with:
go-version: "1.23"

- name: Tidy Go modules
run: |
go mod tidy

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -191,7 +203,7 @@ jobs:

- name: Install E2E dependencies
run: |
cd e2e && go mod download
cd e2e && go mod tidy && go mod download

- name: Run Signing E2E tests
run: |
Expand Down Expand Up @@ -229,6 +241,10 @@ jobs:
with:
go-version: "1.23"

- name: Tidy Go modules
run: |
go mod tidy

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down Expand Up @@ -269,7 +285,7 @@ jobs:

- name: Install E2E dependencies
run: |
cd e2e && go mod download
cd e2e && go mod tidy && go mod download

- name: Run Resharing E2E tests
run: |
Expand Down
112 changes: 112 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,119 @@
# CHANGELOG

## v0.3.0 (2025-07-13)

- Add go mod tidy to e2e [View](https://github.com/fystack/mpcium/commit/28dee5b1f1ba14c36659ab4462f5ce04adf82360)
- Update badger version, add settings for improving durability [View](https://github.com/fystack/mpcium/commit/2727f215737913c25a69c87f33bcdb1cce8152bf)
- Gracefully close consumers [View](https://github.com/fystack/mpcium/commit/6737830d99c300453613c3cca3757a9581ff35ce)
- Add missing error handling [View](https://github.com/fystack/mpcium/commit/f3af531b28d9a0237f154fe7509bc1c23691f09d)
- Change permissions of setup scripts [View](https://github.com/fystack/mpcium/commit/1f7401942f4cc4765d475adde10b9819c32b4900)
- Remove jetstream pubsub change to message broker [View](https://github.com/fystack/mpcium/commit/cf150676391e392969828c6e0fe812ae0009c107)
- Add setup_identities, initiator [View](https://github.com/fystack/mpcium/commit/a54f5fa037bc3e2443de650348e8fe5fd97fed67)
- Revert "Only trigger pipeline on pull request" [View](https://github.com/fystack/mpcium/commit/2b94b6f09e48dc538574afe426a3416d358f4c13)
- Security fixes + CI security check improvement (#49) [View](https://github.com/fystack/mpcium/commit/dc9a964bb942eac5fe005c3cd544f22b0e8d6396)
- Add integration, unit testing CI pipelines (#48) [View](https://github.com/fystack/mpcium/commit/6213d74a3b3ad335327503430b90606effafca8c)
- Only trigger pipeline on pull request [View](https://github.com/fystack/mpcium/commit/7665aad8f3c4f7d3e447a41918c6bd4cf5e8c780)
- Add pathutil for path validation [View](https://github.com/fystack/mpcium/commit/3c664c208d4a18e3c4495f9c58e6b6247a1a64f1)
- Improve security check CI pipeline [View](https://github.com/fystack/mpcium/commit/c46f2ff6cf14fc754c86a43843816707efeab2a0)
- Secure file permission [View](https://github.com/fystack/mpcium/commit/a44fb9b9d713027f087cb80f90c49e50b9a9fd27)
- Change order of CodeQL pipeline [View](https://github.com/fystack/mpcium/commit/b69cc5ff20ee10a38c2de6d80aa9b2145dab7d0e)
- Consistent reshare result topic and fix Inconsistent Success Event [View](https://github.com/fystack/mpcium/commit/75a123807fcd8c80d64a0a56ce35ca4c02550c0b)
- Refactor handle resharing error [View](https://github.com/fystack/mpcium/commit/a1e987ab1a11a891acae84a277128d7d54dd752a)
- Fix resharing, only require t+1 participants, add session_id to remove idempotempt issue [View](https://github.com/fystack/mpcium/commit/ba0d0ee9fff5d9c324849c233f11435a25d915b1)
- Rename success event -> result event [View](https://github.com/fystack/mpcium/commit/511e5f109ef8da6de4e30257fe9e9d45a0ca8035)
- Include error in keygen and reshare event [View](https://github.com/fystack/mpcium/commit/e3e6c6c5e540d458288c6a160e24292720e05871)
- Rename to improve consistent naming [View](https://github.com/fystack/mpcium/commit/624ac0bfb26d7ebe501ef94954941b995cc3e1bd)
- Implement coordination, waiting for enough peers before consuming sign message [View](https://github.com/fystack/mpcium/commit/f11745a0823fbcb5bf57454c9c98ca7b0c71112e)
- Fix signing eddsa crash on key v1 [View](https://github.com/fystack/mpcium/commit/52fe9dc0b543bb960072f8b4d9c7e64764e23789)
- Improve nats configuration [View](https://github.com/fystack/mpcium/commit/3574b7b3411340b0815cd3314d426cf8ac4591a6)
- Enrich signing session message [View](https://github.com/fystack/mpcium/commit/164c5ad6e773413325226ae1d15d95719446d0a6)
- Better error handling [View](https://github.com/fystack/mpcium/commit/d670070b1294cd2fa3ffb60693aa47bffafc1471)
- Adjust signing logic, only require t+1 nodes to participate [View](https://github.com/fystack/mpcium/commit/111f864753ffe1ff34ae08088cfe4a4895f0fb33)
- Populate version in signing session [View](https://github.com/fystack/mpcium/commit/6b313836f35eae9937c271c57972b6cdd5631899)
- Fix issue key not found after resharing [View](https://github.com/fystack/mpcium/commit/fb89fc6af4cecf8e8aa7d6a8659e2cea3f81ca1e)
- refactor: improve session type handling and key storage logic [View](https://github.com/fystack/mpcium/commit/a6fbeb0fa03e2f213e42812aa64a6340531ffbb4)
- chore: resolve PR review comments [View](https://github.com/fystack/mpcium/commit/92104714203af091312dbc98321497a46b352f4b)
- remove debug log [View](https://github.com/fystack/mpcium/commit/a8070eaa02ce0f557bce3f55d007bb7f678ace91)
- support eddsa reshare [View](https://github.com/fystack/mpcium/commit/1312c5f04f51a906375aa4e0904f0cd27a7e300f)
- complete reshare ecdsa supports input threshold and peer ids [View](https://github.com/fystack/mpcium/commit/14a3030b6db25652a313c216c91976c6aad33ea2)
- Enhance reshare session management by introducing versioning and updating party ID generation logic [View](https://github.com/fystack/mpcium/commit/2b5aa6d62b10b047e961e8295c001b9b4a066ab2)
- Update reshare event handling logic and clean up ECDSA reshare session initialization [View](https://github.com/fystack/mpcium/commit/fa8bdbb3447dfcd7d0f6edd4d14cfc5fbe05aa59)
- Remove go.uber.org/mock v0.3.0 dependency from go.mod and go.sum [View](https://github.com/fystack/mpcium/commit/e7a6ab65ae0c3223b35af78fdd2d754f3294f092)
- Fix KeyTypeEd25519 declaration for consistency in eventconsumer and mpc packages [View](https://github.com/fystack/mpcium/commit/e2709d99c5145729a77872a813aef4e51499124c)
- preload preparams [View](https://github.com/fystack/mpcium/commit/641250b88774493a3b178d25ed1cc2e3a36a250d)
- Add resharing functionality with event handling and session management [View](https://github.com/fystack/mpcium/commit/939462e34dd727ea692e240e7e9072b31f3d6853)
- Add keygen event [View](https://github.com/fystack/mpcium/commit/b2121e2525a41047d1605c284bf186428e9362a2)
- Add config max concurrent keygen [View](https://github.com/fystack/mpcium/commit/9a7cf978f3b745bfed8d4d00c23fa0cd67f238b7)
- Refactor session [View](https://github.com/fystack/mpcium/commit/085654e8b8e0ce8d2af577ce7aa86e8acf828fcd)
- Require all peers to participate in key generation [View](https://github.com/fystack/mpcium/commit/3650c1b0c97a0eff01caa7d75ae955ffa68ad54a)
- More granular logs on key type [View](https://github.com/fystack/mpcium/commit/be4f88556e00dba96447ded68ff94a4ece82cc1c)
- Make done usage consistent [View](https://github.com/fystack/mpcium/commit/571245c55f5a8be9d14648a3b6b93062208df7fc)
- Process key gen event concurrently [View](https://github.com/fystack/mpcium/commit/ca54b63b52b02aad458d7251883bb4145b2929b4)
- Initial readme [View](https://github.com/fystack/mpcium/commit/5075816cf4e322bc36ead69376d3f2b73411e261)
- Fix parse config [View](https://github.com/fystack/mpcium/commit/1f02a9e8254f6868a24484b87e20643ce74e9dff)
- Refactoring main file, separate into event consumer [View](https://github.com/fystack/mpcium/commit/d41011766e5ed69658cff811c2968247458a06a5)
- Improve mpc node readiness implementation, need refactor later [View](https://github.com/fystack/mpcium/commit/dc439f3c456826f668d776cecf6761b6658e44f6)
- Init config from viper [View](https://github.com/fystack/mpcium/commit/12a1d63cc38e391dbdc74b5880b7a931fca4b4dc)
- Implement service discovery [View](https://github.com/fystack/mpcium/commit/9e386811eb73b5425e4481e0a8f0e89645e824dd)
- Add deploy script with pm2 [View](https://github.com/fystack/mpcium/commit/feb6e0369c76bc52a2842785c21694357db82ca0)
- Update generate preparams timeout [View](https://github.com/fystack/mpcium/commit/2dca2b9539bc1ce0c4e40d2e1069cb162c975a49)
- Fix gnerate id script [View](https://github.com/fystack/mpcium/commit/8806ac90f9bc2e3ad5c3f7a4af021344541c5d02)
- Add internal network code to signing session [View](https://github.com/fystack/mpcium/commit/89a66dc588c695d9f02d1919acd409f864789020)
- Implement signing session [View](https://github.com/fystack/mpcium/commit/763cab18d540bbcc58bea03130e17c9cfce7af32)
- Code refactoring [View](https://github.com/fystack/mpcium/commit/21e5b8cae3278b905c0036d312dee335928bc4e6)
- mpc session file cleanup [View](https://github.com/fystack/mpcium/commit/cb5059b805faa3bdea3751fad189c59023521505)
- Decode pubkey bytes, implement unit tests [View](https://github.com/fystack/mpcium/commit/2fefa4cd5fe91d73d667ed8d91df3fcd2f738a9e)
- If don't close BadgerDB connection, it will take up 2 G.B of disk space [View](https://github.com/fystack/mpcium/commit/c22ed2e72a780340f6e3f724f9e45e8a69d66b45)
- Implement badger kvstore to persist tss key share [View](https://github.com/fystack/mpcium/commit/3132ac5a002b59e7c4242e136eae13df9e9da66e)
- Generate different bitcoin address formats [View](https://github.com/fystack/mpcium/commit/88cf8acc3da0bbd71a496ecac509c6abe9c7c69c)
- Implement wait peer ready [View](https://github.com/fystack/mpcium/commit/2fb62dd0109db1fcdeb1b4b1f77ff7c6aa5f6a4b)
- Reuse preparams to gen key [View](https://github.com/fystack/mpcium/commit/1be1edc1f6e6219d8bfb430f6f82e8a9448dd10e)
- Implement logging package [View](https://github.com/fystack/mpcium/commit/0547703bb98bf55f5b66e8caaece409e8f34c479)
- Fix bugs, add color logs [View](https://github.com/fystack/mpcium/commit/9f4d8846c4a63210e02287478810928fac676d64)
- Use only topic to broadcast party status [View](https://github.com/fystack/mpcium/commit/ddf540f1bdb18202f78ef69a68b51f910fbefaaa)
- make waiting all parties work [View](https://github.com/fystack/mpcium/commit/4c5cb70bdc4de5b2907fc49142b834e5c59c46c0)
- implement create keygen session [View](https://github.com/fystack/mpcium/commit/2c2292719facd103e62f50e3aa838c4ee3eb1e41)
- Implement direct messaging [View](https://github.com/fystack/mpcium/commit/c711103902a571e9c4976bb9403c167f06382c13)
- Write script to generate node ids [View](https://github.com/fystack/mpcium/commit/7167a0a5aa66186a1651b9987b960204ed9e790a)
- Reorder items [View](https://github.com/fystack/mpcium/commit/695b07498f4fc5815e6c600ef90598f8af4df3f0)
- Add resources [View](https://github.com/fystack/mpcium/commit/edcc4479c702a286b9ac0f78359193d2ee0f1f26)
- Update readme [View](https://github.com/fystack/mpcium/commit/a3318f84f8819d0d4a45572c57b8c68c8370abcc)
- Remove irrelevant files [View](https://github.com/fystack/mpcium/commit/00556878ee6422f1d98fb857ed9209df56804251)
- Fix typo [View](https://github.com/fystack/mpcium/commit/59099144d4bc56dd95b37b86522336cd147973db)
- Added architecture documentation [View](https://github.com/fystack/mpcium/commit/a1ab7964149faf7967437c89e275ea5b37ecaad3)
- update readme [View](https://github.com/fystack/mpcium/commit/5d41030eeeeb35ed124192ffd31774072adae20e)
- Add installation guidelines [View](https://github.com/fystack/mpcium/commit/4f5c46951de47a4e8489cf3f4e122d8559472dd2)
- Move diagram above [View](https://github.com/fystack/mpcium/commit/a72a86747a266e07c42753c9cd1b90ad7f236c0b)
- Update diagram [View](https://github.com/fystack/mpcium/commit/b860ae5277ec8dcc001c464cdef128ea591574b9)
- Update readme [View](https://github.com/fystack/mpcium/commit/8cb0c4f9a46e2657b489edae52f70a59df5a702d)
- Update readme [View](https://github.com/fystack/mpcium/commit/49b36c67c599f4f1fde18094965656c9ef2e9dcc)
- Update readme [View](https://github.com/fystack/mpcium/commit/b2c28eb2543cf66329698289a6935e78f8904a1f)
- Add LICENSE [View](https://github.com/fystack/mpcium/commit/fbbe8f51e1c4f1a8e15dcd3c62835d7bdbebec65)
- Remove nolonger use files [View](https://github.com/fystack/mpcium/commit/d9e57832050c0ede47d6f82bebaf541b37033acf)
- update .gitignore [View](https://github.com/fystack/mpcium/commit/25adf2c637577346e8517f92dca6d7a85573e482)
- Refactor clis to use requestPassword util [View](https://github.com/fystack/mpcium/commit/8c8ed58ad20e622626208a1d6072b4eccd3c1922)
- Update logs [View](https://github.com/fystack/mpcium/commit/247abc86483d9a1861faa09c264f70cc5186f9e3)
- Add version for cli [View](https://github.com/fystack/mpcium/commit/2be6b7333e7aa2e45e4c02f0828783f3ae45988d)
- Update makefile [View](https://github.com/fystack/mpcium/commit/774e2e1fde455c23557ad82148d3c5c841ff384c)
- Add config.yaml.template [View](https://github.com/fystack/mpcium/commit/dbdd5fe240c9d76d8d3b6fd99f730ff608638bc8)
- file cleanup [View](https://github.com/fystack/mpcium/commit/51106e14bc17e62987f4afa7964f13d044d1a2cb)
- Prepare bin build [View](https://github.com/fystack/mpcium/commit/076b051251c1d7e52aeba848a267722ac308d2aa)
- Relocate package [View](https://github.com/fystack/mpcium/commit/0351ddeed902e2bee40ab945b9f2513900c06a30)
- Replace gpg with age for key encryption [View](https://github.com/fystack/mpcium/commit/2196575b7e9b77ac03ab0b06784ed95874eb86bf)
- Bump github.com/btcsuite/btcd from 0.23.4 to 0.24.2 [View](https://github.com/fystack/mpcium/commit/8f2e8e81627c38b2385c76d12eb7f8b32fd799c9)
- Remove btcec pkg [View](https://github.com/fystack/mpcium/commit/e6a0fe642508bcdffa7778d9b3d24c0bc18e6858)
- implement utility clis [View](https://github.com/fystack/mpcium/commit/1431ef3b0e07e47699e11a4c859eda8fa2e09cdf)
- Implement mpcium client + examples [View](https://github.com/fystack/mpcium/commit/5ae21330662725c00aff3377a2ef478c1d4fe6c8)
- Code refactoring for identity store [View](https://github.com/fystack/mpcium/commit/57fb999a7dfe7a394307c7e4b3e9ee62edbc6a3f)
- Encryption of credentials with GPG [View](https://github.com/fystack/mpcium/commit/7723335f8476d06826cb6393e76cd1771139986a)
- Implement identity store, multual signature verification [View](https://github.com/fystack/mpcium/commit/afb838853f26a47c9045cf10e6fb66e633e4b17e)
- Load mpc threshold from config [View](https://github.com/fystack/mpcium/commit/8838479aaec554f575a1617f8574856d2f7e3ba3)
- Add maxAge config to drop undelivered messages [View](https://github.com/fystack/mpcium/commit/642ad4f05594d36ac3144dc8896b8cea797843d8)
- Change max deliver to 4 to fix the nats issue: ats: API error: code=400 err_code=10116 description=max deliver is required to be > length of backoff values [View](https://github.com/fystack/mpcium/commit/0d60febafeb7b58f3cb54036a2bb31810b528254)

## v0.2.0 (2025-04-12)

- Update change log v0.2.0 [View](https://github.com/fystack/mpcium/commit/bfcd4578cb8e25ec6cccaac9be12ab49ab738ce9)
- Use onSuccess callback when sign session succeeds [View](https://github.com/fystack/mpcium/commit/9602d4d9bfe37c2d038856d3ed206bfecd2e8c93)
- Fix bug signing doesn't work after all nodes are backup [View](https://github.com/fystack/mpcium/commit/a9192ca11581dd986bdd21728cbda4b78d75a753)
- Handle duplicate message [View](https://github.com/fystack/mpcium/commit/e79f6e20fbe225e5aad8b0c9e70578356fce9573)
Expand Down
25 changes: 12 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/avast/retry-go v3.0.0+incompatible
github.com/bnb-chain/tss-lib/v2 v2.0.2
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3
github.com/dgraph-io/badger/v4 v4.2.0
github.com/dgraph-io/badger/v4 v4.7.0
github.com/google/uuid v1.6.0
github.com/hashicorp/consul/api v1.26.1
github.com/mitchellh/mapstructure v1.5.0
Expand All @@ -32,17 +32,14 @@ require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/dgraph-io/ristretto/v2 v2.2.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/glog v1.2.4 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/google/flatbuffers v1.12.1 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/flatbuffers v25.2.10+incompatible // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
Expand All @@ -55,7 +52,7 @@ require (
github.com/hashicorp/serf v0.10.1 // indirect
github.com/ipfs/go-log v1.0.5 // indirect
github.com/ipfs/go-log/v2 v2.1.3 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/klauspost/compress v1.18.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
Expand All @@ -73,9 +70,12 @@ require (
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/pflag v1.0.6 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/otel v1.35.0 // indirect
go.opentelemetry.io/otel/metric v1.35.0 // indirect
go.opentelemetry.io/otel/trace v1.35.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/goleak v1.3.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
Expand All @@ -86,7 +86,6 @@ require (
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.24.0 // indirect
google.golang.org/protobuf v1.36.6 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading