Skip to content

Commit b8f3039

Browse files
committed
Merge branch 'main' into merge/main-develop-feb-24
2 parents 66dde3a + 236b810 commit b8f3039

File tree

197 files changed

+5840
-2655
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+5840
-2655
lines changed

.github/actions/live-tests-shared/action.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@ runs:
1919
node-version: '20'
2020
- name: Build o1js and execute tests
2121
env:
22-
TEST_TYPE: 'Live integration tests'
2322
USE_CUSTOM_LOCAL_NETWORK: 'true'
2423
run: |
2524
git submodule update --init --recursive
2625
npm ci
2726
npm run build
2827
touch profiling.md
29-
sh run-ci-tests.sh
28+
bash run-ci-live-tests.sh
3029
cat profiling.md >> $GITHUB_STEP_SUMMARY
3130
shell: bash
3231
- name: Upload Mina logs

.github/workflows/live-tests.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
jobs:
1616
main-branch:
17-
timeout-minutes: 25
17+
timeout-minutes: 45
1818
runs-on: ubuntu-latest
1919
if: github.ref == 'refs/heads/main' || (github.event_name == 'pull_request' && github.base_ref == 'main')
2020
services:
@@ -28,6 +28,7 @@ jobs:
2828
- 5432:5432
2929
- 8080:8080
3030
- 8181:8181
31+
- 8282:8282
3132
volumes:
3233
- /tmp:/root/logs
3334
steps:
@@ -39,7 +40,7 @@ jobs:
3940
mina-branch-name: o1js-main
4041

4142
berkeley-branch:
42-
timeout-minutes: 25
43+
timeout-minutes: 45
4344
runs-on: ubuntu-latest
4445
if: github.ref == 'refs/heads/berkeley' || (github.event_name == 'pull_request' && github.base_ref == 'berkeley')
4546
services:
@@ -53,6 +54,7 @@ jobs:
5354
- 5432:5432
5455
- 8080:8080
5556
- 8181:8181
57+
- 8282:8282
5658
volumes:
5759
- /tmp:/root/logs
5860
steps:
@@ -64,7 +66,7 @@ jobs:
6466
mina-branch-name: berkeley
6567

6668
develop-branch:
67-
timeout-minutes: 25
69+
timeout-minutes: 45
6870
runs-on: ubuntu-latest
6971
if: github.ref == 'refs/heads/develop' || (github.event_name == 'pull_request' && github.base_ref == 'develop')
7072
services:
@@ -78,6 +80,7 @@ jobs:
7880
- 5432:5432
7981
- 8080:8080
8082
- 8181:8181
83+
- 8282:8282
8184
volumes:
8285
- /tmp:/root/logs
8386
steps:

.github/workflows/release.yml

+19-11
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: Version Bump
1212
on:
1313
workflow_dispatch: # Allow to manually trigger the workflow
1414
schedule:
15-
- cron: "0 0 * * 2" # At 00:00 UTC every Tuesday
15+
- cron: '0 0 * * 2' # At 00:00 UTC every Tuesday
1616

1717
jobs:
1818
version-bump:
@@ -23,10 +23,9 @@ jobs:
2323
- name: Check if it's an even week
2424
run: |
2525
WEEK_NUM=$(date +'%V')
26-
if [ $((WEEK_NUM % 2)) -eq 0 ]; then
27-
echo "RUN_JOB=true" >> $GITHUB_ENV
28-
else
29-
echo "RUN_JOB=false" >> $GITHUB_ENV
26+
if [ $((WEEK_NUM % 2)) -ne 0 ]; then
27+
echo "Odd week number ($WEEK_NUM), terminating job."
28+
exit 1
3029
fi
3130
3231
- name: Check out the repository
@@ -35,34 +34,43 @@ jobs:
3534
- name: Set up Node.js
3635
uses: actions/setup-node@v4
3736
with:
38-
node-version: "18"
37+
node-version: '18'
3938

4039
- name: Configure Git
4140
run: |
4241
git config --local user.email "action@github.com"
4342
git config --local user.name "GitHub Action"
4443
4544
- name: Bump patch version
46-
if: ${{ env.RUN_JOB }} == 'true'
4745
run: |
48-
git fetch --prune --unshallow
46+
git fetch --prune --unshallow --tags --force
4947
NEW_VERSION=$(npm version patch)
5048
echo "New version: $NEW_VERSION"
5149
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
5250
5351
- name: Install npm dependencies
54-
if: ${{ env.RUN_JOB }} == 'true'
5552
run: npm install
5653

5754
- name: Update CHANGELOG.md
58-
if: ${{ env.RUN_JOB }} == 'true'
5955
run: |
6056
npm run update-changelog
6157
git add CHANGELOG.md
6258
git commit -m "Update CHANGELOG for new version $NEW_VERSION"
6359
60+
- name: Delete existing release tag
61+
run: |
62+
if git rev-parse $NEW_VERSION >/dev/null 2>&1; then
63+
git tag -d $NEW_VERSION
64+
git push origin :refs/tags/$NEW_VERSION
65+
fi
66+
67+
- name: Delete existing release branch
68+
run: |
69+
if git ls-remote --heads origin release/${NEW_VERSION} | grep release/${NEW_VERSION}; then
70+
git push origin --delete release/${NEW_VERSION}
71+
fi
72+
6473
- name: Create new release branch
65-
if: ${{ env.RUN_JOB }} == 'true'
6674
run: |
6775
NEW_BRANCH="release/${NEW_VERSION}"
6876
git checkout -b $NEW_BRANCH

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[submodule "src/snarkyjs-bindings"]
1+
[submodule "src/o1js-bindings"]
22
path = src/bindings
3-
url = https://github.com/o1-labs/snarkyjs-bindings.git
3+
url = https://github.com/o1-labs/o1js-bindings.git
44
[submodule "src/mina"]
55
path = src/mina
66
url = https://github.com/MinaProtocol/mina.git

CHANGELOG.md

+97-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,102 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1515
_Security_ in case of vulnerabilities.
1616
-->
1717

18-
## [Unreleased](https://github.com/o1-labs/o1js/compare/19115a159...HEAD)
18+
## [Unreleased](https://github.com/o1-labs/o1js/compare/3b5f7c7...HEAD)
19+
20+
### Added
21+
22+
- Support for custom network identifiers other than `mainnet` or `testnet` https://github.com/o1-labs/o1js/pull/1444
23+
- `PrivateKey.randomKeypair()` to generate private and public key in one command https://github.com/o1-labs/o1js/pull/1446
24+
25+
### Deprecated
26+
27+
- `SmartContract.token` is deprecated in favor of new methods on `TokenContract` https://github.com/o1-labs/o1js/pull/1446
28+
- `TokenContract.deriveTokenId()` to get the ID of the managed token
29+
- `TokenContract.internal.{send, mint, burn}` to perform token operations from within the contract
30+
31+
### Fixed
32+
33+
- Mitigate security hazard of deploying token contracts https://github.com/o1-labs/o1js/issues/1439
34+
35+
## [0.16.1](https://github.com/o1-labs/o1js/compare/834a44002...3b5f7c7)
36+
37+
### Breaking changes
38+
39+
- Remove `AccountUpdate.children` and `AccountUpdate.parent` properties https://github.com/o1-labs/o1js/pull/1402
40+
- Also removes the optional `AccountUpdatesLayout` argument to `approve()`
41+
- Adds `AccountUpdateTree` and `AccountUpdateForest`, new classes that represent a layout of account updates explicitly
42+
- Both of the new types are now accepted as inputs to `approve()`
43+
- `accountUpdate.extractTree()` to obtain the tree associated with an account update in the current transaction context.
44+
- Remove `Experimental.Callback` API https://github.com/o1-labs/o1js/pull/1430
45+
46+
### Added
47+
48+
- `MerkleList<T>` to enable provable operations on a dynamically-sized list https://github.com/o1-labs/o1js/pull/1398
49+
- including `MerkleListIterator<T>` to iterate over a merkle list
50+
- `TokenContract`, a new base smart contract class for token contracts https://github.com/o1-labs/o1js/pull/1384
51+
- Usage example: `https://github.com/o1-labs/o1js/blob/main/src/lib/mina/token/token-contract.unit-test.ts`
52+
- `TokenAccountUpdateIterator`, a primitive to iterate over all token account updates in a transaction https://github.com/o1-labs/o1js/pull/1398
53+
- this is used to implement `TokenContract` under the hood
54+
55+
### Fixed
56+
57+
- Mainnet support. https://github.com/o1-labs/o1js/pull/1437
58+
59+
## [0.16.0](https://github.com/o1-labs/o1js/compare/e5d1e0f...834a44002)
60+
61+
### Breaking changes
62+
63+
- Protocol change that adds a "transaction version" to the permission to set verification keys https://github.com/MinaProtocol/mina/pull/14407
64+
- See [the relevant RFC](https://github.com/MinaProtocol/mina/blob/9577ad689a8e4d4f97e1d0fc3d26e20219f4abd1/rfcs/0051-verification-key-permissions.md) for the motivation behind this change
65+
- Breaks all deployed contracts, as it changes the account update layout
66+
67+
### Added
68+
69+
- Provable type `Packed<T>` to pack small field elements into fewer field elements https://github.com/o1-labs/o1js/pull/1376
70+
- Provable type `Hashed<T>` to represent provable types by their hash https://github.com/o1-labs/o1js/pull/1377
71+
- This also exposes `Poseidon.hashPacked()` to efficiently hash an arbitrary type
72+
73+
### Changed
74+
75+
- Reduce number of constraints of ECDSA verification by 5% https://github.com/o1-labs/o1js/pull/1376
76+
77+
## [0.15.4](https://github.com/o1-labs/o1js/compare/be748e42e...e5d1e0f)
78+
79+
### Changed
80+
81+
- Improve performance of Wasm Poseidon hashing by a factor of 13x https://github.com/o1-labs/o1js/pull/1378
82+
- Speeds up local blockchain tests without proving by ~40%
83+
- Improve performance of Field inverse https://github.com/o1-labs/o1js/pull/1373
84+
- Speeds up proving by ~2-4%
85+
86+
### Added
87+
88+
- Configurable `networkId` when declaring a Mina instance. https://github.com/o1-labs/o1js/pull/1387
89+
- Defaults to `"testnet"`, the other option is `"mainnet"`
90+
- The `networkId` parameter influences the algorithm used for signatures, and ensures that testnet transactions can't be replayed on mainnet
91+
92+
## [0.15.3](https://github.com/o1-labs/o1js/compare/1ad7333e9e...be748e42e)
93+
94+
### Added
95+
96+
- **SHA256 hash function** exposed via `Hash.SHA2_256` or `Gadgets.SHA256`. https://github.com/o1-labs/o1js/pull/1285
97+
98+
### Changed
99+
100+
- `Mina.accountCreationFee()` is deprecated in favor of `Mina.getNetworkConstants().accountCreationFee`. https://github.com/o1-labs/o1js/pull/1367
101+
- `Mina.getNetworkConstants()` returns:
102+
- [default](https://github.com/o1-labs/o1js/pull/1367/files#diff-ef2c3547d64a8eaa8253cd82b3623288f3271e14f1dc893a0a3ddc1ff4b9688fR7) network constants if used outside of the transaction scope.
103+
- [actual](https://github.com/o1-labs/o1js/pull/1367/files#diff-437f2c15df7c90ad8154c5de1677ec0838d51859bcc0a0cefd8a0424b5736f31R1051) network constants if used within the transaction scope.
104+
105+
### Fixed
106+
107+
- Fix approving of complex account update layouts https://github.com/o1-labs/o1js/pull/1364
108+
109+
## [0.15.2](https://github.com/o1-labs/o1js/compare/1ad7333e9e...08ba27329)
110+
111+
### Fixed
112+
113+
- Fix bug in `Hash.hash()` which always resulted in an error https://github.com/o1-labs/o1js/pull/1346
19114

20115
## [0.15.1](https://github.com/o1-labs/o1js/compare/1ad7333e9e...19115a159)
21116

@@ -47,6 +142,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
47142
- bitwise AND via `{UInt32, UInt64}.and()`
48143
- Example for using actions to store a map data structure https://github.com/o1-labs/o1js/pull/1300
49144
- `Provable.constraintSystem()` and `{ZkProgram,SmartContract}.analyzeMethods()` return a `summary()` method to return a summary of the constraints used by a method https://github.com/o1-labs/o1js/pull/1007
145+
- `assert()` asserts that a given statement is true https://github.com/o1-labs/o1js/pull/1285
50146

51147
### Fixed
52148

0 commit comments

Comments
 (0)