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

Feature Compact Ecash : The One PR #4623

Merged
merged 33 commits into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fc2eedf
Another Grand Ecash Squasheroo
simonwicky May 7, 2024
0de1dec
fixed query for client bandwidth
jstuczyn Jul 10, 2024
429ff60
removed outdated error
jstuczyn Jul 11, 2024
bc647fc
slightly less ghetto handling of .env files
jstuczyn Jul 11, 2024
7c84ad4
readme
jstuczyn Jul 11, 2024
6f3a6b7
Update README.md
jstuczyn Jul 11, 2024
19dee11
changed the number of tickets to 100
jstuczyn Jul 15, 2024
6381299
fixed nym-node zk-nym config debug settings not being applied
jstuczyn Jul 16, 2024
04cafc7
improved bandwidth information propagation within the client
jstuczyn Jul 23, 2024
78ca539
fixed incorrect bloomfilter cutoff date calculation
jstuczyn Jul 23, 2024
db1ad4d
fixed client crashing upon having bandwidth revoked
jstuczyn Jul 23, 2024
0a2f28b
testnet manager: start multiple gateways
jstuczyn Jul 23, 2024
98805a1
testnet manager: create client against specific nym-node
jstuczyn Jul 23, 2024
b52bf95
improve client errors
jstuczyn Jul 23, 2024
5e97b1f
updated all ecash-related parameters - bloomfilter, expiration, sizes…
jstuczyn Jul 23, 2024
f4fafbf
updated ecash-contract parameters and generated schema
jstuczyn Jul 23, 2024
969155b
chore: fix unit tests
jstuczyn Jul 24, 2024
17a5872
chore: log info -> debug
jstuczyn Jul 24, 2024
0e2cfa5
fixed incorrect naming of the ecash contract lib
jstuczyn Jul 24, 2024
c3ce0d0
post rebase fixes
jstuczyn Jul 24, 2024
86fe955
fixed sdk-wasm build
jstuczyn Jul 24, 2024
42efff8
Add type attribute
aniampio Jul 24, 2024
8d0c040
Move functions around
aniampio Jul 24, 2024
ab2a1c3
Run fmt
aniampio Jul 24, 2024
aea962b
explicit aliases for ExpirationDate and TicketType
jstuczyn Jul 25, 2024
4c10ceb
propagated new ticket type through the whole stack
jstuczyn Jul 25, 2024
06fca9b
reject tickets with more than a single payment
jstuczyn Jul 25, 2024
68b61bf
fix build issues
jstuczyn Jul 25, 2024
3cb6978
removed 95/5 reward split in favour of the holding account
jstuczyn Jul 30, 2024
4989d47
nym-api exporting bloomfilter in separate task
jstuczyn Jul 30, 2024
bc832c9
make gateway query only single nym-api for BF (+ every 10min)
jstuczyn Jul 30, 2024
5352444
fixing build issues in testnet-manager post rebasing
jstuczyn Jul 30, 2024
107199b
clippy
jstuczyn Jul 30, 2024
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
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/ci-build-upload-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04]
platform: [ ubuntu-20.04 ]

runs-on: ${{ matrix.platform }}
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-contracts-upload-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04]
platform: [ ubuntu-20.04 ]

runs-on: ${{ matrix.platform }}
env:
Expand Down Expand Up @@ -58,6 +58,7 @@ jobs:
cp contracts/target/wasm32-unknown-unknown/release/nym_coconut_dkg.wasm $OUTPUT_DIR
cp contracts/target/wasm32-unknown-unknown/release/cw3_flex_multisig.wasm $OUTPUT_DIR
cp contracts/target/wasm32-unknown-unknown/release/cw4_group.wasm $OUTPUT_DIR
cp contracts/target/wasm32-unknown-unknown/release/nym_ecash.wasm $OUTPUT_DIR

- name: Deploy branch to CI www
continue-on-error: true
Expand Down
Loading
Loading