Skip to content

Commit 5af42fe

Browse files
committed
Fix after merge
Signed-off-by: deniallugo <[email protected]>
1 parent bf1766f commit 5af42fe

File tree

186 files changed

+11962
-8431
lines changed

Some content is hidden

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

186 files changed

+11962
-8431
lines changed

.github/workflows/ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
ci_run zk db basic-setup
6666
ci_run zk run yarn
6767
68-
- name: liquidity-token
69-
run: docker-compose -f docker-compose-runner.yml restart dev-liquidity-token-watcher
68+
- name: restart dev-liquidity-token-watcher and dev-ticker
69+
run: docker-compose -f docker-compose-runner.yml restart dev-liquidity-token-watcher dev-ticker
7070

7171
- name: contracts-unit-tests
7272
run: ci_run zk test contracts
@@ -102,8 +102,8 @@ jobs:
102102
ci_run zk dummy-prover enable --no-redeploy
103103
ci_run zk init
104104
105-
- name: liquidity-token
106-
run: docker-compose -f docker-compose-runner.yml restart dev-liquidity-token-watcher
105+
- name: restart dev-liquidity-token-watcher and dev-ticker
106+
run: docker-compose -f docker-compose-runner.yml restart dev-liquidity-token-watcher dev-ticker
107107

108108
- name: run-services
109109
run: |
@@ -116,7 +116,9 @@ jobs:
116116
run: ci_run zk test i server
117117

118118
- name: integration-api
119-
run: ci_run zk test i api
119+
run: |
120+
ci_run zk test i api
121+
ci_run zk test i api-docs
120122
121123
- name: integration-zcli
122124
run: ci_run zk test i zcli

Cargo.lock

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ members = [
3535
"core/lib/contracts",
3636
"core/lib/api_client",
3737
"core/lib/notifier",
38+
"core/lib/api_types",
3839
"core/lib/balancer",
3940

4041
# Test infrastructure

bin/api_docs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
if [ -z "$1" ]; then
4+
cd $ZKSYNC_HOME
5+
yarn && yarn api-docs build
6+
else
7+
# can't start this with yarn since it has quirks with `--` as an argument
8+
node -- $ZKSYNC_HOME/infrastructure/api-docs/build/index.js "$@"
9+
fi

changelog/core.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to the core components will be documented in this file.
66

77
### Removed
88

9+
- (`api_server`): REST API v1.0.
10+
911
### Changed
1012

1113
- (`loadtest`): `zksync_fee` has been moved to `[main_wallet]` section from the `[network]` section.
@@ -16,6 +18,7 @@ All notable changes to the core components will be documented in this file.
1618
- (`api_server`): Make `submit_txs_batch` send only one signature request.
1719
- Fast withdrawals now can trigger aggregated block execution.
1820
- Replaced `anyhow` errors with typed errors in `lib/state`, `lib/crypto` and `lib/types`.
21+
- (`fee-ticker`): Batch fee now includes `zkp_fee` and `gas_fee`.
1922

2023
### Added
2124

@@ -30,6 +33,11 @@ All notable changes to the core components will be documented in this file.
3033
- (`api_server`): Support for accounts that don't have to pay fees (e.g. network service accounts) was added.
3134
- Added `BlockMetadata` structure and corresponding table to track block data that is not related to protocol.
3235
- (`block_revert`): CLI that calls `revertBlocks` smart contract function and updates the database respectively.
36+
- (`api_server`): Added REST API v0.2.
37+
- (`api_client`): Client for REST API v0.2.
38+
- (`api_types`): Crate for storing types that are used in API.
39+
- Added hashes for batches and additional hashes for priority operations.
40+
- Added `ForcedExit` fee type to REST API v0.2 and JSON RPC API.
3341

3442
### Fixed
3543

changelog/infrastructure.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@ components, the logs will have the following format:
1515

1616
### Added
1717

18+
- (`api-docs`): tool for generating and testing API documentation. Docs are generated from a bunch of .apib files where
19+
API endpoints and their inputs/outputs are defined.
1820
- (`token_list_manager`): CLI for updating to new version of a previously saved list of trusted tokens.
19-
2021
- (`loadnext`): Crate, a new implementation of the loadtest for zkSync.
2122

2223
### Fixed

changelog/js-sdk.md

+10
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,19 @@ All notable changes to `zksync.js` will be documented in this file.
99
- Methods for working with NFTs. You can read more [here](https://zksync.io/dev/nfts.html).
1010
- Methods for working with atomic swaps/limit orders. You can read more [here](https://zksync.io/dev/swaps.html).
1111

12+
- `RestProvider` class, that is used for queriing REST API v0.2.
13+
- `SyncProvider` interface: common interface for API v0.2 `RestProvider` and JSON RPC `Provider`.
14+
- Types for REST API v0.2.
15+
1216
### Changed
1317

1418
- `zksync-crypto` to support atomic swaps/limit orders functionality.
19+
- Changed type of `provider` field in `Wallet` class from `Provider` to `SyncProvider`.
20+
- `ForcedExit` fee type is used for `ForcedExit` transactions instead of `Withdraw` fee type.
21+
22+
### Deprecated
23+
24+
### Fixed
1525

1626
## Version 0.10.9 (13.04.2021)
1727

contracts/scripts/upgrade-testnet.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ async function main() {
2626
});
2727
parser.addArgument('--initArgs', {
2828
required: false,
29-
help: 'Upgrade function parameters comma-separated, RLP serialized in hex (Governance,Verifier,ZkSync): 0xaa..aa,0xbb..bb,0xcc..c or zero by default.',
29+
help:
30+
'Upgrade function parameters comma-separated, RLP serialized in hex (Governance,Verifier,ZkSync): 0xaa..aa,0xbb..bb,0xcc..c or zero by default.',
3031
defaultValue: '0x,0x,0x'
3132
});
3233
parser.addArgument('--cancelPreviousUpgrade', {

core/bin/data_restore/src/tests/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ fn create_deposit(from: Address, to: Address, amount: u32) -> ExecutedOperations
8585
deadline_block: 0,
8686
eth_hash: H256::zero(),
8787
eth_block: 0,
88+
eth_block_index: None,
8889
};
8990
let executed_deposit_op = ExecutedPriorityOp {
9091
priority_op: priority_operation,

core/bin/data_restore/src/tree_state.rs

+1
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ impl TreeState {
461461
deadline_block: 0,
462462
eth_hash: H256::zero(),
463463
eth_block: 0,
464+
eth_block_index: None,
464465
},
465466
block_index,
466467
created_at: chrono::Utc::now(),

core/bin/zksync_api/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ zksync_contracts = { path = "../../lib/contracts", version = "1.0" }
2525
zksync_eth_client = { path = "../../lib/eth_client", version = "1.0" }
2626
zksync_eth_signer = { path = "../../lib/eth_signer", version = "1.0" }
2727
zksync_api_client = { path = "../../lib/api_client", version = "0.1" }
28+
zksync_api_types = { path = "../../lib/api_types", version = "1.0" }
2829
zksync_prometheus_exporter = { path = "../../lib/prometheus_exporter", version = "1.0" }
2930
zksync_balancer = { path = "../../lib/balancer", version = "1.0" }
3031
zksync_gateway_watcher = { path = "../../lib/gateway_watcher", version = "1.0" }

core/bin/zksync_api/benches/criterion/lib.rs

+21-19
Original file line numberDiff line numberDiff line change
@@ -2,41 +2,43 @@ use criterion::{criterion_group, criterion_main, Criterion};
22
use ethabi::Address;
33
use reqwest::{blocking::Client, StatusCode};
44

5-
use zksync_api_client::rest::v1::{IncomingTxBatchForFee, IncomingTxForFee};
6-
use zksync_types::{TokenLike, TxFeeTypes};
5+
use zksync_api_types::v02::fee::{
6+
ApiTxFeeTypes, BatchFeeRequest, TxFeeRequest, TxInBatchFeeRequest,
7+
};
8+
use zksync_types::{TokenId, TokenLike};
79

8-
fn generate_transactions(number: usize) -> IncomingTxBatchForFee {
9-
let mut tx_types = vec![];
10-
let mut addresses = vec![];
10+
fn generate_transactions(number: usize) -> BatchFeeRequest {
11+
let mut transactions = Vec::new();
1112
for _ in 0..number {
12-
tx_types.push(TxFeeTypes::Withdraw);
13-
addresses.push(Address::random());
13+
transactions.push(TxInBatchFeeRequest {
14+
tx_type: ApiTxFeeTypes::Withdraw,
15+
address: Address::random(),
16+
});
1417
}
15-
IncomingTxBatchForFee {
16-
tx_types,
17-
addresses,
18-
token_like: TokenLike::Symbol("wBTC".to_string()),
18+
BatchFeeRequest {
19+
transactions,
20+
token_like: TokenLike::Id(TokenId(2)), // id of wBTC on localhost
1921
}
2022
}
2123

22-
fn get_txs_batch_fee(client: Client, url: String, transaction: IncomingTxBatchForFee) {
24+
fn get_txs_batch_fee(client: Client, url: String, batch_fee_request: BatchFeeRequest) {
2325
let res = client
24-
.post(format!("{}/api/v1/transactions/fee/batch", url).as_str())
25-
.json(&transaction)
26+
.post(format!("{}/api/v0.2/fee/batch", url).as_str())
27+
.json(&batch_fee_request)
2628
.send()
2729
.unwrap();
2830
assert_eq!(res.status(), StatusCode::OK)
2931
}
3032

3133
fn get_txs_fee(client: Client, url: String) {
32-
let transaction = IncomingTxForFee {
33-
tx_type: TxFeeTypes::Withdraw,
34+
let transaction = TxFeeRequest {
35+
tx_type: ApiTxFeeTypes::Withdraw,
3436
address: Address::random(),
35-
token_like: TokenLike::Symbol("wBTC".to_string()),
37+
token_like: TokenLike::Id(TokenId(2)), // id of wBTC on localhost
3638
};
3739

3840
let res = client
39-
.post(format!("{}/api/v1/transactions/fee", url).as_str())
41+
.post(format!("{}/api/v0.2/fee", url).as_str())
4042
.json(&transaction)
4143
.send()
4244
.unwrap();
@@ -47,7 +49,7 @@ fn bench_fee(c: &mut Criterion) {
4749
let url = std::env::var("API_REST_URL").unwrap();
4850
let client = reqwest::blocking::Client::new();
4951
let transaction = generate_transactions(100);
50-
c.bench_function("get_txs_batch_fee_new_version", |b| {
52+
c.bench_function("get_txs_batch_fee", |b| {
5153
b.iter(|| get_txs_batch_fee(client.clone(), url.clone(), transaction.clone()))
5254
});
5355
c.bench_function("get_txs_fee", |b| {

core/bin/zksync_api/src/api_server/event_notify/state.rs

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ impl NotifierState {
204204
.account_schema()
205205
.last_committed_state_for_account(id)
206206
.await?
207+
.1
207208
}
208209
ActionType::VERIFY => {
209210
storage

core/bin/zksync_api/src/api_server/helpers.rs

+1-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// External uses
66

77
// Workspace uses
8-
use zksync_types::{tx::TxHash, H256};
8+
use zksync_types::H256;
99
use zksync_utils::remove_prefix;
1010

1111
// Local uses
@@ -20,14 +20,3 @@ pub fn try_parse_hash(query: &str) -> Result<H256, hex::FromHexError> {
2020

2121
Ok(H256::from_slice(&slice))
2222
}
23-
24-
pub fn try_parse_tx_hash(query: &str) -> Result<TxHash, hex::FromHexError> {
25-
const HASH_SIZE: usize = 32; // 32 bytes
26-
27-
let mut slice = [0_u8; HASH_SIZE];
28-
29-
let tx_hex = remove_prefix(query);
30-
hex::decode_to_slice(&tx_hex, &mut slice)?;
31-
32-
Ok(TxHash::from_slice(&slice).unwrap())
33-
}

core/bin/zksync_api/src/api_server/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
//! `mod rpc_server` - JSON rpc via HTTP (for request reply functions)
55
//! `mod rpc_subscriptions` - JSON rpc via WebSocket (for request reply functions and subscriptions)
66
7-
// Public uses
8-
pub use rest::v1;
9-
107
// External uses
118
use futures::channel::mpsc;
129
// Workspace uses

0 commit comments

Comments
 (0)