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] Support Finalize Scope, New Transaction Types, and Public Balances #594

Merged
merged 19 commits into from
Jun 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5511f5c
Add tests for deploy and transfer methods
iamalwaysuncomfortable Jun 8, 2023
72ef6a5
Fix further deploy methods
iamalwaysuncomfortable Jun 8, 2023
fb4c64d
Fix further deploy methods
iamalwaysuncomfortable Jun 8, 2023
040fe43
Merge branch 'testnet3' into feat/new-transfer-types
iamalwaysuncomfortable Jun 8, 2023
2f19168
Add transfer method options to javascript and wasm SDKs + revise wasm…
iamalwaysuncomfortable Jun 9, 2023
dbb0e89
Test all variants of the transfer function visibility in the Rust SDK
iamalwaysuncomfortable Jun 12, 2023
1bb7e29
Add wasm tests and update key urls
iamalwaysuncomfortable Jun 13, 2023
19431f0
Re-order aleo cli options
iamalwaysuncomfortable Jun 14, 2023
6933e19
Bump SnarkVM version to v0.12.0
iamalwaysuncomfortable Jun 14, 2023
0916efd
Bump SnarkVM version to v0.12.0
iamalwaysuncomfortable Jun 14, 2023
458ffde
Bump SnarkVM version to v0.12.1
iamalwaysuncomfortable Jun 14, 2023
162c7e4
Merge branch 'testnet3' into feat/new-transfer-types
iamalwaysuncomfortable Jun 14, 2023
0739e76
Bump SnarkVM version to v0.12.1
iamalwaysuncomfortable Jun 14, 2023
ac5a83d
End-end unit test of all transfer modes
iamalwaysuncomfortable Jun 15, 2023
3e0f51e
Fix unit and integration tests in rust, wasm, and javascript
iamalwaysuncomfortable Jun 15, 2023
2668ae0
Add check to ensure records provided have enough funds to execute a t…
iamalwaysuncomfortable Jun 19, 2023
6ccae89
Fix record searching algorithm to select largest record first and bum…
iamalwaysuncomfortable Jun 21, 2023
c323832
Bump aleo sdk versions to 0.44
iamalwaysuncomfortable Jun 21, 2023
5631d29
Update SDK tests to latest chain data
iamalwaysuncomfortable Jun 21, 2023
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
./bin/aleo-develop start --server-address 0.0.0.0:5050 --peer http://localhost:3030 -d -k ciphertext1qvqgkey2cxklg4g5qjnkk4dy50zypte5ewp5kwdm9pt833eyext32pu07dgkxqzmn0wnpxx8kvh2phws6j5njsu6zrys20xpvqmqhw9gpngs50mpe9e0nkp6uyzctzdq3fs2n4p9d3kvaps6mg6xu0sef0xpzm028m7 1> /dev/null &
sleep 15
cd rust
cargo test test_transfer -- --ignored --nocapture --test-threads=1
cargo test test_transfer_roundtrip -- --ignored --nocapture --test-threads=1
cargo test test_deploy -- --ignored --nocapture --test-threads=1
cargo test test_execution -- --ignored --nocapture --test-threads=1
cd ../sdk && yarn install
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --all

- name: Print sccache stats
run: sccache --show-stats
Expand Down Expand Up @@ -150,7 +149,7 @@ jobs:
run: |
SDKROOT=$(xcrun -sdk macosx11.1 --show-sdk-path) \
MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx11.1 --show-sdk-platform-version) \
cargo test --all
cargo test

- name: Print sccache stats
run: sccache --show-stats
Expand All @@ -174,4 +173,4 @@ jobs:

- name: Test
run: |
cargo test --all
cargo test
Loading