You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3087 lines
108 KiB

3 years ago
3 years ago
3 years ago
  1. openapi: 3.0.0
  2. info:
  3. description: |
  4. This Hermez node API is the layer that allows 3rd party apps and services to interface with the node to use the layer two features of the Hermez rollup.
  5. Example of these apps are:
  6. * Wallet: send L2 transactions, check balance, ...
  7. * Explorer: List transactions, slots, batches, ...
  8. * Exchange integrations
  9. Note that some of the interactions with the rollup must be done using the Ethereum network directly.
  10. Another way to integrate with the rollup is to [deploy a node](github.com/hermeznetwork/hermez-node/) and connect directly to its PostgreSQL database.
  11. ### Pagination
  12. #### Usage
  13. All the endpoints that return a list of undefined size use pagination. Unless the opposite is explicitly said.
  14. In order to use pagination, three query parameters are used:
  15. * `fromItem`: indicates the first item to be returned. In general, this parameter shouldn't be provided in the first call to the endpoint, and use the `itemId` of the last returned item (+/-) 1, if the order is (ascending/descending).
  16. * `order`: all paginated items are ordered chronologically. However, the specific fields to guarantee this order depend on each endpoint. For this purpose, `itemId` is used (itemId follows ascending chronological order except for unforged L1 user transactions). If the parameter is not provided, ascending order will be used by default.
  17. * `limit`: maximum amount of items to include in each response. Default is 20, maximum is 2049.
  18. Responses for those endpoints will always include a `pendingItems` property. This property includes the amount of items that are not fetched yet. This can be used to:
  19. * Calculate the amount of items that match the filters: `totalItems = length(alreadyFetchedItems) + pendingItems`
  20. * Know when all items have been fetched: `if pendingItems == 0 {/* all items have been fetched */}`
  21. #### Reorgs and Safety
  22. Since all the items are ordered chronologically, there are no safety problems when fetching items in ascending order, except for reorgs (more on this later).
  23. On the other hand, when iterating in descending order, new items will be added at the beginning. This doesn't cause any safety problem, but to get those new items, it's necessary to start querying without the `fromItem` set to `pagination.lastItem`.
  24. To handle reorgs, the `itemId` can be used since it will change. This is important since other identifiers may be the same but with different content. As an example, if batch 424 gets reorged, it will be deleted, but eventually, a new batch 424 will appear with potentially different content. However, these two batches number 424, will have different `itemId`.
  25. ### Signatures
  26. There are two endpoints that require signatures:
  27. * POST /account-creation-authorization: signed using an Ethereum key.
  28. * POST /transactions-pool: signed using BJJ key.
  29. More details on how to sign will be provided soon.
  30. ### Contact
  31. If you have any doubt or suggestion, please contact us at:
  32. * [GitHub](https://github.com/hermeznetwork/hermez-node/)
  33. * [Telegram](https://t.me/hermez_network)
  34. * [Discord](https://bit.ly/3nohULM)
  35. * Email: hello@hermez.network
  36. * [Twitter](https://twitter.com/hermez_network)
  37. # TODO: add further documentation on how to sign auths and txs
  38. version: "0.0.1"
  39. title: Hermez Network API
  40. # TODO: update with support email
  41. # termsOfService: 'http://swagger.io/terms/'
  42. license:
  43. name: license AGPLv3
  44. url: 'https://www.gnu.org/licenses/agpl-3.0.html'
  45. externalDocs:
  46. description: Find out more about Hermez network.
  47. url: 'https://hermez.io'
  48. servers:
  49. - description: Hosted mock up
  50. url: https://apimock.hermez.network
  51. - description: Localhost mock Up
  52. url: http://localhost:4010
  53. tags:
  54. - name: Account
  55. description: Hermez account and the tokens it holds.
  56. externalDocs:
  57. description: Find out more.
  58. url: 'https://idocs.hermez.io/#/spec/zkrollup/README?id=account-types'
  59. - name: Transaction
  60. description: Send tokens off chain and track transactions.
  61. externalDocs:
  62. description: Find out more
  63. url: 'https://idocs.hermez.io/#/spec/zkrollup/README?id=transaction-types'
  64. - name: Hermez status
  65. description: Info about operators, tokens, auctions and more.
  66. externalDocs:
  67. description: Find out more.
  68. url: 'https://idocs.hermez.io/#/spec/zkrollup/README'
  69. paths:
  70. '/account-creation-authorization':
  71. post:
  72. tags:
  73. - Account
  74. summary: Send an authorization that will allow the coordinator to register accounts associated to an Ethereum address on behalf of the user.
  75. description: >-
  76. Send an authorization to create rollup accounts associated with an Ethereum address. Each account creation (an account can only hold a specific token) is effective once the coordinator forges the corresponding L1CoordinatorTx (which is always of type *account creation*).
  77. operationId: postRegister
  78. requestBody:
  79. description: Account creation authorization.
  80. required: true
  81. content:
  82. application/json:
  83. schema:
  84. $ref: '#/components/schemas/AccountCreationAuthorizationPost'
  85. responses:
  86. '200':
  87. description: Successful operation.
  88. '400':
  89. description: Bad request.
  90. content:
  91. application/json:
  92. schema:
  93. $ref: '#/components/schemas/Error400'
  94. '500':
  95. description: Internal server error.
  96. content:
  97. application/json:
  98. schema:
  99. $ref: '#/components/schemas/Error500'
  100. '/account-creation-authorization/{hezEthereumAddress}':
  101. get:
  102. tags:
  103. - Account
  104. summary: Find out if the coordinator has the ability to create accounts associated with an Ethereum address.
  105. description: >-
  106. Returns the authorization to perform an account creation with the given Ethereum address on behalf of the Ethereum address holder.
  107. operationId: getAccountCreationAuthorization
  108. parameters:
  109. - name: hezEthereumAddress
  110. in: path
  111. description: Ethereum address.
  112. required: true
  113. schema:
  114. $ref: '#/components/schemas/HezEthereumAddress'
  115. responses:
  116. '200':
  117. description: Successful operation.
  118. content:
  119. application/json:
  120. schema:
  121. $ref: '#/components/schemas/AccountCreationAuthorization'
  122. '400':
  123. description: Bad request.
  124. content:
  125. application/json:
  126. schema:
  127. $ref: '#/components/schemas/Error400'
  128. '404':
  129. description: Not found.
  130. content:
  131. application/json:
  132. schema:
  133. $ref: '#/components/schemas/Error404'
  134. '500':
  135. description: Internal server error.
  136. content:
  137. application/json:
  138. schema:
  139. $ref: '#/components/schemas/Error500'
  140. '/accounts':
  141. get:
  142. tags:
  143. - Account
  144. summary: Get accounts balances and other associated information.
  145. description: Get account balances and other associated information.
  146. operationId: getAccounts
  147. parameters:
  148. - name: hezEthereumAddress
  149. in: query
  150. description: Only get accounts associated to an Ethereum address. Incompatible with the query `BJJ`.
  151. required: false
  152. schema:
  153. $ref: '#/components/schemas/HezEthereumAddress'
  154. - name: BJJ
  155. in: query
  156. description: Only get accounts associated to a BabyJubJub public key. Incompatible with the query `hezEthereumAddress`.
  157. required: false
  158. schema:
  159. $ref: '#/components/schemas/BJJ'
  160. - name: tokenIds
  161. in: query
  162. required: false
  163. description: Only get accounts of specific tokens. This is represented by a comma separated list of token identifiers.
  164. schema:
  165. type: string
  166. description: Comma separated list of token identifiers.
  167. example: "3,87,91"
  168. - name: fromItem
  169. in: query
  170. required: false
  171. description: Indicates the desired first item (using the itemId property) to be included in the response.
  172. schema:
  173. type: number
  174. - name: order
  175. in: query
  176. required: false
  177. description: Order of the returned items. Accounts will be ordered by increasing account index.
  178. schema:
  179. type: string
  180. default: ASC
  181. enum:
  182. - ASC
  183. - DESC
  184. - name: limit
  185. in: query
  186. required: false
  187. description: Maximum number of items to be returned.
  188. schema:
  189. type: integer
  190. minimum: 1
  191. maximum: 2049
  192. responses:
  193. '200':
  194. description: Successful operation.
  195. content:
  196. application/json:
  197. schema:
  198. $ref: '#/components/schemas/Accounts'
  199. '400':
  200. description: Bad request.
  201. content:
  202. application/json:
  203. schema:
  204. $ref: '#/components/schemas/Error400'
  205. '404':
  206. description: Not found.
  207. content:
  208. application/json:
  209. schema:
  210. $ref: '#/components/schemas/Error404'
  211. '500':
  212. description: Internal server error.
  213. content:
  214. application/json:
  215. schema:
  216. $ref: '#/components/schemas/Error500'
  217. '/accounts/{accountIndex}':
  218. get:
  219. tags:
  220. - Account
  221. summary: Get an account by its index.
  222. description: Get an account by its index.
  223. operationId: getAccount
  224. parameters:
  225. - name: accountIndex
  226. in: path
  227. description: Identifier of an account.
  228. required: true
  229. schema:
  230. $ref: '#/components/schemas/AccountIndex'
  231. responses:
  232. '200':
  233. description: Successful operation.
  234. content:
  235. application/json:
  236. schema:
  237. $ref: '#/components/schemas/Account'
  238. '400':
  239. description: Bad request.
  240. content:
  241. application/json:
  242. schema:
  243. $ref: '#/components/schemas/Error400'
  244. '404':
  245. description: Not found.
  246. content:
  247. application/json:
  248. schema:
  249. $ref: '#/components/schemas/Error404'
  250. '500':
  251. description: Internal server error.
  252. content:
  253. application/json:
  254. schema:
  255. $ref: '#/components/schemas/Error500'
  256. '/exits':
  257. get:
  258. tags:
  259. - Account
  260. summary: Get exit information. This information is required to perform a withdraw.
  261. description: Get exit information. This information is required to perform a withdraw.
  262. operationId: getExits
  263. parameters:
  264. - name: tokenId
  265. in: query
  266. required: false
  267. description: Only get exits of specific token
  268. schema:
  269. $ref: '#/components/schemas/TokenId'
  270. - name: hezEthereumAddress
  271. in: query
  272. description: Get exits associated to an Ethereum address. Incompatible with query `BJJ` and `accountIndex`.
  273. required: false
  274. schema:
  275. $ref: '#/components/schemas/HezEthereumAddress'
  276. - name: BJJ
  277. in: query
  278. description: Get exits associated to a BabyJubJub public key. Incompatible with query `hezEthereumAddress` and `accountIndex`.
  279. required: false
  280. schema:
  281. $ref: '#/components/schemas/BJJ'
  282. - name: accountIndex
  283. in: query
  284. description: Get exits associated to a specific account. Incompatible with queries `tokenId`, `hezEthereumAddress` and `BJJ`.
  285. required: false
  286. schema:
  287. $ref: '#/components/schemas/AccountIndex'
  288. - name: batchNum
  289. in: query
  290. description: Get exits from the exit tree of a specific batch.
  291. required: false
  292. schema:
  293. $ref: '#/components/schemas/BatchNum'
  294. - name: onlyPendingWithdraws
  295. in: query
  296. description: Get exits with pending withdrawals.
  297. required: false
  298. schema:
  299. type: boolean
  300. - name: fromItem
  301. in: query
  302. required: false
  303. description: Indicates the desired first item (using the itemId property) to be included in the response.
  304. schema:
  305. type: number
  306. - name: order
  307. in: query
  308. required: false
  309. description: Order of the returned items. Exits will be ordered by increasing (batchNum, accountIndex).
  310. schema:
  311. type: string
  312. default: ASC
  313. enum:
  314. - ASC
  315. - DESC
  316. - name: limit
  317. in: query
  318. required: false
  319. description: Maximum number of items to be returned.
  320. schema:
  321. type: integer
  322. minimum: 1
  323. maximum: 2049
  324. responses:
  325. '200':
  326. description: Successful operation.
  327. content:
  328. application/json:
  329. schema:
  330. $ref: '#/components/schemas/Exits'
  331. '400':
  332. description: Bad request.
  333. content:
  334. application/json:
  335. schema:
  336. $ref: '#/components/schemas/Error400'
  337. '404':
  338. description: Not found.
  339. content:
  340. application/json:
  341. schema:
  342. $ref: '#/components/schemas/Error404'
  343. '500':
  344. description: Internal server error.
  345. content:
  346. application/json:
  347. schema:
  348. $ref: '#/components/schemas/Error500'
  349. '/exits/{batchNum}/{accountIndex}':
  350. get:
  351. tags:
  352. - Account
  353. summary: Get specific exit information.
  354. description: Get exit information form a specific exit tree and account. This information is required to perform a withdraw. Exits are identified with accounIndex and batchNum since every batch that has exits has a different exit tree.
  355. operationId: getExit
  356. parameters:
  357. - name: batchNum
  358. in: path
  359. description: Batch of the exit tree.
  360. required: true
  361. schema:
  362. $ref: '#/components/schemas/BatchNum'
  363. - name: accountIndex
  364. in: path
  365. description: Account identifier.
  366. required: true
  367. schema:
  368. $ref: '#/components/schemas/AccountIndex'
  369. responses:
  370. '200':
  371. description: Successful operation.
  372. content:
  373. application/json:
  374. schema:
  375. $ref: '#/components/schemas/Exit'
  376. '400':
  377. description: Bad request.
  378. content:
  379. application/json:
  380. schema:
  381. $ref: '#/components/schemas/Error400'
  382. '404':
  383. description: Not found.
  384. content:
  385. application/json:
  386. schema:
  387. $ref: '#/components/schemas/Error404'
  388. '500':
  389. description: Internal server error.
  390. content:
  391. application/json:
  392. schema:
  393. $ref: '#/components/schemas/Error500'
  394. '/transactions-pool':
  395. post:
  396. tags:
  397. - Transaction
  398. summary: Add an L2 transaction to the coordinator's pool.
  399. description: >-
  400. Send L2 transaction. The transaction will be stored in the transaction pool of the coordinator and eventually forged.
  401. operationId: postTx
  402. requestBody:
  403. description: Signed transaction.
  404. required: true
  405. content:
  406. application/json:
  407. schema:
  408. $ref: '#/components/schemas/PostPoolL2Transaction'
  409. responses:
  410. '200':
  411. description: Successful operation.
  412. content:
  413. application/json:
  414. schema:
  415. $ref: '#/components/schemas/TransactionId'
  416. '400':
  417. description: Bad request.
  418. content:
  419. application/json:
  420. schema:
  421. $ref: '#/components/schemas/Error400'
  422. '500':
  423. description: Internal server error.
  424. content:
  425. application/json:
  426. schema:
  427. $ref: '#/components/schemas/Error500'
  428. '/transactions-pool/{id}':
  429. get:
  430. tags:
  431. - Transaction
  432. summary: Get details and status of a transaction that is in the pool.
  433. description: >-
  434. Get transaction from the pool by its ID. This endpoint is specially useful for tracking the status of a transaction that may not be forged yet.
  435. Only transactions from the pool will be returned.
  436. Note that the transaction pool is different for each coordinator and therefore only a coordinator that has received a specific transaction
  437. will be able to provide information about that transaction.
  438. operationId: getPoolTx
  439. parameters:
  440. - name: id
  441. in: path
  442. description: Transaction identifier.
  443. required: true
  444. schema:
  445. $ref: '#/components/schemas/TransactionId'
  446. responses:
  447. '200':
  448. description: Successful operation.
  449. content:
  450. application/json:
  451. schema:
  452. $ref: '#/components/schemas/PoolL2Transaction'
  453. '400':
  454. description: Bad request.
  455. content:
  456. application/json:
  457. schema:
  458. $ref: '#/components/schemas/Error400'
  459. '404':
  460. description: Not found.
  461. content:
  462. application/json:
  463. schema:
  464. $ref: '#/components/schemas/Error404'
  465. '500':
  466. description: Internal server error.
  467. content:
  468. application/json:
  469. schema:
  470. $ref: '#/components/schemas/Error500'
  471. '/transactions-history':
  472. get:
  473. tags:
  474. - Transaction
  475. summary: Get details and status of transactions that have been forged.
  476. description: >-
  477. Get historical transactions. This endpoint will return all the different types of **forged** transactions, this means that:
  478. * Transactions that are still in the transaction pool of any coordinator are not included. These transactions can be fetched using `GET /transactions-pool/{id}`.
  479. * L1 transactions sent by users that have not been forged yet are not included. These transactions can be fetched using `GET /transactions-history/{id}`.
  480. operationId: getHistoryTxs
  481. parameters:
  482. - name: tokenId
  483. in: query
  484. required: false
  485. description: Only get transactions of specific token
  486. schema:
  487. $ref: '#/components/schemas/TokenId'
  488. - name: hezEthereumAddress
  489. in: query
  490. required: false
  491. description: Only get transactions sent from or to an account associated with an Ethereum address Incompatible with the queries `BJJ` and `accountIndex`.
  492. schema:
  493. $ref: '#/components/schemas/HezEthereumAddress'
  494. - name: BJJ
  495. in: query
  496. description: Only get transactions associated with a BabyJubJub public key. Incompatible with the queries `hezEthereumAddress` and `accountIndex`.
  497. required: false
  498. schema:
  499. $ref: '#/components/schemas/BJJ'
  500. - name: accountIndex
  501. in: query
  502. required: false
  503. description: Only get transactions sent from or to a specific account. Incompatible with the queries `tokenId`, `hezEthereumAddress` and `BJJ`.
  504. schema:
  505. $ref: '#/components/schemas/AccountIndex'
  506. - name: batchNum
  507. in: query
  508. required: false
  509. description: Only get transactions forged in a specific batch.
  510. schema:
  511. $ref: '#/components/schemas/BatchNum'
  512. - name: type
  513. in: query
  514. required: false
  515. description: Only get transactions of a specific type.
  516. schema:
  517. $ref: '#/components/schemas/TransactionType'
  518. - name: fromItem
  519. in: query
  520. required: false
  521. description: Indicates the desired first item (using the itemId property) to be included in the response.
  522. schema:
  523. type: number
  524. - name: order
  525. in: query
  526. required: false
  527. description: Order of the returned items. History transactions will be ordered by (batchNum, position).
  528. schema:
  529. type: string
  530. default: ASC
  531. enum:
  532. - ASC
  533. - DESC
  534. - name: limit
  535. in: query
  536. required: false
  537. description: Maximum number of items to be returned.
  538. schema:
  539. type: integer
  540. minimum: 1
  541. maximum: 2049
  542. responses:
  543. '200':
  544. description: Successful operation.
  545. content:
  546. application/json:
  547. schema:
  548. $ref: '#/components/schemas/HistoryTransactions'
  549. '400':
  550. description: Bad request.
  551. content:
  552. application/json:
  553. schema:
  554. $ref: '#/components/schemas/Error400'
  555. '404':
  556. description: Not found.
  557. content:
  558. application/json:
  559. schema:
  560. $ref: '#/components/schemas/Error404'
  561. '500':
  562. description: Internal server error.
  563. content:
  564. application/json:
  565. schema:
  566. $ref: '#/components/schemas/Error500'
  567. '/transactions-history/{id}':
  568. get:
  569. tags:
  570. - Transaction
  571. summary: Get details and status of a historical transaction.
  572. description: >-
  573. Get transaction by its ID. This endpoint will return all the different types of transactions except those that are still in the pool of any coordinator.
  574. operationId: getHistoryTx
  575. parameters:
  576. - name: id
  577. in: path
  578. description: Transaction identifier.
  579. required: true
  580. schema:
  581. $ref: '#/components/schemas/TransactionId'
  582. responses:
  583. '200':
  584. description: Successful operation.
  585. content:
  586. application/json:
  587. schema:
  588. $ref: '#/components/schemas/HistoryTransaction'
  589. '400':
  590. description: Bad request.
  591. content:
  592. application/json:
  593. schema:
  594. $ref: '#/components/schemas/Error400'
  595. '404':
  596. description: Not found.
  597. content:
  598. application/json:
  599. schema:
  600. $ref: '#/components/schemas/Error404'
  601. '500':
  602. description: Internal server error.
  603. content:
  604. application/json:
  605. schema:
  606. $ref: '#/components/schemas/Error500'
  607. '/batches':
  608. get:
  609. tags:
  610. - Hermez status
  611. summary: Get information about forged batches.
  612. description: >-
  613. Get information about forged batches.
  614. operationId: getBatches
  615. parameters:
  616. - name: minBatchNum
  617. in: query
  618. required: false
  619. description: Include only `batchNum > minBatchNum` batches.
  620. schema:
  621. $ref: '#/components/schemas/BatchNum'
  622. - name: maxBatchNum
  623. in: query
  624. required: false
  625. description: Include only `batchNum < maxBatchNum` batches.
  626. schema:
  627. type: number
  628. - name: slotNum
  629. in: query
  630. required: false
  631. description: Include only batches that were forged within the specified slot.
  632. schema:
  633. $ref: '#/components/schemas/SlotNum'
  634. - name: forgerAddr
  635. in: query
  636. required: false
  637. description: Include only batches forged by `forgerAddr`
  638. schema:
  639. $ref: '#/components/schemas/EthereumAddress'
  640. - name: fromItem
  641. in: query
  642. required: false
  643. description: Indicates the desired first item (using the itemId property) to be included in the response.
  644. schema:
  645. type: number
  646. - name: order
  647. in: query
  648. required: false
  649. description: Order of the returned items. Batches will be ordered by increasing `batchNum`.
  650. schema:
  651. type: string
  652. default: ASC
  653. enum:
  654. - ASC
  655. - DESC
  656. - name: limit
  657. in: query
  658. required: false
  659. description: Maximum number of items to be returned.
  660. schema:
  661. type: integer
  662. minimum: 1
  663. maximum: 2049
  664. responses:
  665. '200':
  666. description: Successful operation.
  667. content:
  668. application/json:
  669. schema:
  670. $ref: '#/components/schemas/Batches'
  671. '400':
  672. description: Bad request.
  673. content:
  674. application/json:
  675. schema:
  676. $ref: '#/components/schemas/Error400'
  677. '404':
  678. description: Not found.
  679. content:
  680. application/json:
  681. schema:
  682. $ref: '#/components/schemas/Error404'
  683. '500':
  684. description: Internal server error.
  685. content:
  686. application/json:
  687. schema:
  688. $ref: '#/components/schemas/Error500'
  689. '/batches/{batchNum}':
  690. get:
  691. tags:
  692. - Hermez status
  693. summary: Get a specific batch.
  694. description: >-
  695. Get a specific batch.
  696. operationId: getBatch
  697. parameters:
  698. - name: batchNum
  699. in: path
  700. description: Batch identifier.
  701. required: true
  702. schema:
  703. $ref: '#/components/schemas/BatchNum'
  704. responses:
  705. '200':
  706. description: Successful operation
  707. content:
  708. application/json:
  709. schema:
  710. $ref: '#/components/schemas/Batch'
  711. '400':
  712. description: Bad request.
  713. content:
  714. application/json:
  715. schema:
  716. $ref: '#/components/schemas/Error400'
  717. '404':
  718. description: Not found.
  719. content:
  720. application/json:
  721. schema:
  722. $ref: '#/components/schemas/Error404'
  723. '500':
  724. description: Internal server error.
  725. content:
  726. application/json:
  727. schema:
  728. $ref: '#/components/schemas/Error500'
  729. '/full-batches/{batchNum}':
  730. get:
  731. tags:
  732. - Hermez status
  733. summary: Get a full batch.
  734. description: >-
  735. Get a specific batch, including the associated transactions. The object returned in this method can be a bit heavy.
  736. If you're devloping a front end, you may consider using a combinaton of `GET /batches/{batchnum}` and `GET /history-transactions?batchNum={batchNum}`.
  737. operationId: getFullBatch
  738. parameters:
  739. - name: batchNum
  740. in: path
  741. description: Batch identifier
  742. required: true
  743. schema:
  744. $ref: '#/components/schemas/BatchNum'
  745. responses:
  746. '200':
  747. description: successful operation
  748. content:
  749. application/json:
  750. schema:
  751. $ref: '#/components/schemas/FullBatch'
  752. '400':
  753. description: Bad request.
  754. content:
  755. application/json:
  756. schema:
  757. $ref: '#/components/schemas/Error400'
  758. '404':
  759. description: Not found.
  760. content:
  761. application/json:
  762. schema:
  763. $ref: '#/components/schemas/Error404'
  764. '500':
  765. description: Internal server error.
  766. content:
  767. application/json:
  768. schema:
  769. $ref: '#/components/schemas/Error500'
  770. '/slots':
  771. get:
  772. tags:
  773. - Hermez status
  774. summary: Get information about slots.
  775. description: >-
  776. Get information about slots.
  777. operationId: getSlots
  778. parameters:
  779. - name: minSlotNum
  780. in: query
  781. required: false
  782. description: Only include slots with `slotNum >= minSlotNum`. By default, `minSlotNum = 0`.
  783. schema:
  784. $ref: '#/components/schemas/SlotNum'
  785. - name: maxSlotNum
  786. in: query
  787. required: false
  788. description: Only include slots with `slotNum <= maxSlotNum`.
  789. schema:
  790. $ref: '#/components/schemas/SlotNum'
  791. - name: wonByEthereumAddress
  792. in: query
  793. required: false
  794. description: Only include slots won by a coordinator whose `bidderAddr == wonByEthereumAddress`.
  795. schema:
  796. $ref: '#/components/schemas/EthereumAddress'
  797. - name: finishedAuction
  798. in: query
  799. required: false
  800. description: If set to true, only include slots whose auction has finished.
  801. schema:
  802. type: boolean
  803. - name: fromItem
  804. in: query
  805. required: false
  806. description: Indicates the desired first item (using the itemId property) to be included in the response.
  807. schema:
  808. type: number
  809. - name: order
  810. in: query
  811. required: false
  812. description: Order of the returned items. Slots will be ordered by increasing `slotNum`.
  813. schema:
  814. type: string
  815. default: ASC
  816. enum:
  817. - ASC
  818. - DESC
  819. - name: limit
  820. in: query
  821. required: false
  822. description: Maximum number of items to be returned.
  823. schema:
  824. type: integer
  825. minimum: 1
  826. maximum: 2049
  827. responses:
  828. '200':
  829. description: Successful operation.
  830. content:
  831. application/json:
  832. schema:
  833. $ref: '#/components/schemas/Slots'
  834. '400':
  835. description: Bad request.
  836. content:
  837. application/json:
  838. schema:
  839. $ref: '#/components/schemas/Error400'
  840. '404':
  841. description: Not found.
  842. content:
  843. application/json:
  844. schema:
  845. $ref: '#/components/schemas/Error404'
  846. '500':
  847. description: Internal server error.
  848. content:
  849. application/json:
  850. schema:
  851. $ref: '#/components/schemas/Error500'
  852. '/slots/{slotNum}':
  853. get:
  854. tags:
  855. - Hermez status
  856. summary: Get information about a specific slot.
  857. description: >-
  858. Get information about a specific slot.
  859. operationId: getSlot
  860. parameters:
  861. - name: slotNum
  862. in: path
  863. required: true
  864. description: Identifier of the slot.
  865. schema:
  866. $ref: '#/components/schemas/SlotNum'
  867. responses:
  868. '200':
  869. description: Successful operation.
  870. content:
  871. application/json:
  872. schema:
  873. $ref: '#/components/schemas/Slot'
  874. '400':
  875. description: Bad request.
  876. content:
  877. application/json:
  878. schema:
  879. $ref: '#/components/schemas/Error400'
  880. '404':
  881. description: Not found.
  882. content:
  883. application/json:
  884. schema:
  885. $ref: '#/components/schemas/Error404'
  886. '500':
  887. description: Internal server error.
  888. content:
  889. application/json:
  890. schema:
  891. $ref: '#/components/schemas/Error500'
  892. '/bids':
  893. get:
  894. tags:
  895. - Hermez status
  896. summary: Get a list of bids.
  897. description: >-
  898. Get a list of bids. It's necessary to provide at least one of the following filters: `slotNum`, `bidderAddr`.
  899. operationId: getSlotBids
  900. parameters:
  901. - name: slotNum
  902. in: query
  903. description: Slot identifier. Specify the auction where the returned bids were made.
  904. required: false
  905. schema:
  906. $ref: '#/components/schemas/SlotNum'
  907. - name: bidderAddr
  908. in: query
  909. description: Get only bids made by a coordinator identified by its bidder address. In this case, the bids will be returned in the order that the coordinator made them.
  910. required: false
  911. schema:
  912. $ref: '#/components/schemas/EthereumAddress'
  913. - name: fromItem
  914. in: query
  915. required: false
  916. description: Indicates the desired first item (using the itemId property) to be included in the response.
  917. schema:
  918. type: number
  919. - name: order
  920. in: query
  921. required: false
  922. description: Order of the returned items. Bids will be ordered by increasing (slotNum, bidValue)`.
  923. schema:
  924. type: string
  925. default: ASC
  926. enum:
  927. - ASC
  928. - DESC
  929. - name: limit
  930. in: query
  931. required: false
  932. description: Maximum number of items to be returned.
  933. schema:
  934. type: integer
  935. minimum: 1
  936. maximum: 2049
  937. responses:
  938. '200':
  939. description: Successful operation
  940. content:
  941. application/json:
  942. schema:
  943. $ref: '#/components/schemas/Bids'
  944. '400':
  945. description: Bad request.
  946. content:
  947. application/json:
  948. schema:
  949. $ref: '#/components/schemas/Error400'
  950. '404':
  951. description: Not found.
  952. content:
  953. application/json:
  954. schema:
  955. $ref: '#/components/schemas/Error404'
  956. '500':
  957. description: Internal server error.
  958. content:
  959. application/json:
  960. schema:
  961. $ref: '#/components/schemas/Error500'
  962. '/state':
  963. get:
  964. tags:
  965. - Hermez status
  966. summary: Return information that represents the current state of the network.
  967. description: Return information that represents the current state of the network. It also includes metrics and statistics.
  968. operationId: getState
  969. responses:
  970. '200':
  971. description: Successful operation.
  972. content:
  973. application/json:
  974. schema:
  975. $ref: '#/components/schemas/State'
  976. '400':
  977. description: Bad request.
  978. content:
  979. application/json:
  980. schema:
  981. $ref: '#/components/schemas/Error400'
  982. '500':
  983. description: Internal server error.
  984. content:
  985. application/json:
  986. schema:
  987. $ref: '#/components/schemas/Error500'
  988. '/config':
  989. get:
  990. tags:
  991. - Hermez status
  992. summary: Return constant configuration of the network.
  993. description: Return constant configuration of the network.
  994. operationId: getConfig
  995. responses:
  996. '200':
  997. description: Successful operation.
  998. content:
  999. application/json:
  1000. schema:
  1001. $ref: '#/components/schemas/Config'
  1002. '500':
  1003. description: Internal server error.
  1004. content:
  1005. application/json:
  1006. schema:
  1007. $ref: '#/components/schemas/Error500'
  1008. '/tokens':
  1009. get:
  1010. tags:
  1011. - Hermez status
  1012. summary: Get information of the supported tokens in the Hermez Network.
  1013. description: Get information of the supported tokens in the Hermez Network.
  1014. operationId: getTokens
  1015. parameters:
  1016. - name: ids
  1017. in: query
  1018. required: false
  1019. description: Include only specific tokens by their Hermez identifiers.
  1020. schema:
  1021. type: string
  1022. description: Comma separated list of token identifiers
  1023. example: "2,44,689"
  1024. - name: symbols
  1025. in: query
  1026. required: false
  1027. description: Include only specific tokens by their symbols.
  1028. schema:
  1029. type: string
  1030. description: Comma separated list of token symbols.
  1031. example: "DAI,NEC,UMA"
  1032. - name: name
  1033. in: query
  1034. required: false
  1035. description: Include token(s) by their names (or a substring of the name).
  1036. schema:
  1037. type: string
  1038. - name: fromItem
  1039. in: query
  1040. required: false
  1041. description: Indicates the desired first item (using the itemId property) to be included in the response.
  1042. schema:
  1043. type: number
  1044. - name: order
  1045. in: query
  1046. required: false
  1047. description: Order of the returned items. Tokens will be ordered by increasing tokenID.
  1048. schema:
  1049. type: string
  1050. default: ASC
  1051. enum:
  1052. - ASC
  1053. - DESC
  1054. - name: limit
  1055. in: query
  1056. required: false
  1057. description: Maximum number of items to be returned.
  1058. schema:
  1059. type: integer
  1060. minimum: 1
  1061. maximum: 2049
  1062. responses:
  1063. '200':
  1064. description: Successful operation.
  1065. content:
  1066. application/json:
  1067. schema:
  1068. $ref: '#/components/schemas/Tokens'
  1069. '400':
  1070. description: Bad request.
  1071. content:
  1072. application/json:
  1073. schema:
  1074. $ref: '#/components/schemas/Error400'
  1075. '404':
  1076. description: Not found.
  1077. content:
  1078. application/json:
  1079. schema:
  1080. $ref: '#/components/schemas/Error404'
  1081. '500':
  1082. description: Internal server error.
  1083. content:
  1084. application/json:
  1085. schema:
  1086. $ref: '#/components/schemas/Error500'
  1087. '/tokens/{id}':
  1088. get:
  1089. tags:
  1090. - Hermez status
  1091. summary: Get information of a token supported by Hermez Network.
  1092. description: Get information of a token supported by Hermez Network.
  1093. operationId: getToken
  1094. parameters:
  1095. - name: id
  1096. in: path
  1097. description: Token identifier
  1098. required: true
  1099. schema:
  1100. $ref: '#/components/schemas/TokenId'
  1101. responses:
  1102. '200':
  1103. description: Successful operation.
  1104. content:
  1105. application/json:
  1106. schema:
  1107. $ref: '#/components/schemas/Token'
  1108. '400':
  1109. description: Bad request.
  1110. content:
  1111. application/json:
  1112. schema:
  1113. $ref: '#/components/schemas/Error400'
  1114. '404':
  1115. description: Not found.
  1116. content:
  1117. application/json:
  1118. schema:
  1119. $ref: '#/components/schemas/Error404'
  1120. '500':
  1121. description: Internal server error.
  1122. content:
  1123. application/json:
  1124. schema:
  1125. $ref: '#/components/schemas/Error500'
  1126. '/coordinators':
  1127. get:
  1128. tags:
  1129. - Hermez status
  1130. summary: Get information about coordinators.
  1131. description: Get information about coordinators.
  1132. operationId: getCoordinators
  1133. parameters:
  1134. - name: forgerAddr
  1135. in: query
  1136. required: false
  1137. description: Get coordinators by it's forger address.
  1138. schema:
  1139. $ref: '#/components/schemas/EthereumAddress'
  1140. - name: bidderAddr
  1141. in: query
  1142. required: false
  1143. description: Get coordinators by it's bidder address.
  1144. schema:
  1145. $ref: '#/components/schemas/EthereumAddress'
  1146. - name: fromItem
  1147. in: query
  1148. required: false
  1149. description: Indicates the desired first item (using the itemId property) to be included in the response.
  1150. schema:
  1151. type: number
  1152. - name: order
  1153. in: query
  1154. required: false
  1155. description: Order of the returned items. Coordinators will be ordered by increasing (ethereumBlock, forgerAddr).
  1156. schema:
  1157. type: string
  1158. default: ASC
  1159. enum:
  1160. - ASC
  1161. - DESC
  1162. - name: limit
  1163. in: query
  1164. required: false
  1165. description: Maximum number of items to be returned.
  1166. schema:
  1167. type: integer
  1168. minimum: 1
  1169. maximum: 2049
  1170. responses:
  1171. '200':
  1172. description: Successful operation.
  1173. content:
  1174. application/json:
  1175. schema:
  1176. $ref: '#/components/schemas/Coordinators'
  1177. '400':
  1178. description: Bad request.
  1179. content:
  1180. application/json:
  1181. schema:
  1182. $ref: '#/components/schemas/Error400'
  1183. '500':
  1184. description: Internal server error.
  1185. content:
  1186. application/json:
  1187. schema:
  1188. $ref: '#/components/schemas/Error500'
  1189. components:
  1190. schemas:
  1191. ItemId:
  1192. type: integer
  1193. description: Position of the item in the DB. This is useful for pagination, but has nothing to do with the protocol.
  1194. PostPoolL2Transaction:
  1195. type: object
  1196. description: L2 transaction to be posted.
  1197. properties:
  1198. id:
  1199. $ref: '#/components/schemas/TransactionId'
  1200. type:
  1201. $ref: '#/components/schemas/TransactionTypeL2'
  1202. tokenId:
  1203. $ref: '#/components/schemas/TokenId'
  1204. fromAccountIndex:
  1205. $ref: '#/components/schemas/AccountIndex'
  1206. toAccountIndex:
  1207. type: string
  1208. description: >-
  1209. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1210. The identifier is built using: `hez:` + `token symbol:` + `index`. If this is provided, toHezEthereumAddress and toBjj
  1211. must be null. To perform an exit the value hez:EXIT:1 must be used.
  1212. example: null
  1213. nullable: true
  1214. toHezEthereumAddress:
  1215. type: string
  1216. description: "Address of an Etherum account linked to the Hermez Network. If this is provided, toAccountIndex and toBjj must be null."
  1217. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1218. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1219. nullable: true
  1220. toBjj:
  1221. type: string
  1222. description: >-
  1223. BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes.
  1224. If this is provided, toAccountIndex must be null and toHezEthereumAddress must be hez:0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.
  1225. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1226. example: null
  1227. nullable: true
  1228. amount:
  1229. allOf:
  1230. - $ref: '#/components/schemas/BigInt'
  1231. - description: Amount of tokens to be sent.
  1232. example: "6300000000000000000"
  1233. fee:
  1234. $ref: '#/components/schemas/FeeSelector'
  1235. nonce:
  1236. $ref: '#/components/schemas/Nonce'
  1237. signature:
  1238. allOf:
  1239. - $ref: '#/components/schemas/BJJSignature'
  1240. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1241. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1242. requestFromAccountIndex:
  1243. type: string
  1244. description: References the `fromAccountIndex` of the requested transaction.
  1245. example: null
  1246. nullable: true
  1247. requestToAccountIndex:
  1248. type: string
  1249. description: References the `toAccountIndex` of the requested transaction.
  1250. example: null
  1251. nullable: true
  1252. requestToHezEthereumAddress:
  1253. type: string
  1254. description: References the `toHezEthereumAddress` of the requested transaction.
  1255. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1256. example: null
  1257. nullable: true
  1258. requestToBjj:
  1259. type: string
  1260. description: References the `toBjj` of the requested transaction.
  1261. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1262. example: null
  1263. nullable: true
  1264. requestTokenId:
  1265. type: integer
  1266. description: References the `tokenId` of the requested transaction.
  1267. example: null
  1268. nullable: true
  1269. requestAmount:
  1270. type: string
  1271. description: References the `amount` of the requested transaction.
  1272. example: null
  1273. nullable: true
  1274. requestFee:
  1275. type: integer
  1276. description: References the `fee` of the requested transaction.
  1277. example: null
  1278. nullable: true
  1279. requestNonce:
  1280. type: integer
  1281. description: References the `nonce` of the requested transaction.
  1282. example: null
  1283. nullable: true
  1284. example:
  1285. id: '0x020000000001000000000006'
  1286. type: Transfer
  1287. tokenId: 6
  1288. fromAccountIndex: hez:DAI:256
  1289. toAccountIndex: hez:DAI:257
  1290. toHezEthereumAddress:
  1291. toBjj:
  1292. amount: '100000000000000'
  1293. fee: 0
  1294. nonce: 6
  1295. signature: 1a79dd5e661d58266901a0de8afb046b466c4c1af937100f627a421771f2911fa3fde8ea2e272b4802a8b1f1229689292acd6f7e8ab4cadc4ab37b6b9e13a101
  1296. additionalProperties: false
  1297. required:
  1298. - id
  1299. - type
  1300. - tokenId
  1301. - fromAccountIndex
  1302. - amount
  1303. - fee
  1304. - nonce
  1305. - signature
  1306. PoolL2Transaction:
  1307. type: object
  1308. properties:
  1309. id:
  1310. $ref: '#/components/schemas/TransactionId'
  1311. type:
  1312. $ref: '#/components/schemas/TransactionTypeL2'
  1313. fromAccountIndex:
  1314. $ref: '#/components/schemas/AccountIndex'
  1315. fromHezEthereumAddress:
  1316. type: string
  1317. description: "Address of an Etherum account linked to the Hermez Network."
  1318. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1319. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1320. nullable: true
  1321. fromBJJ:
  1322. type: string
  1323. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1324. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1325. example: "hez:9CK9fjQdMUTGm8KDvGLy3MB-vnP0NCcGX7Uh7OO6KRJm"
  1326. nullable: true
  1327. toAccountIndex:
  1328. type: string
  1329. description: >-
  1330. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1331. The identifier is built using: `hez:` + `token symbol:` + `index`
  1332. example: "hez:DAI:309"
  1333. nullable: true
  1334. toHezEthereumAddress:
  1335. type: string
  1336. description: "Address of an Etherum account linked to the Hermez Network."
  1337. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1338. example: null
  1339. nullable: true
  1340. toBjj:
  1341. type: string
  1342. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1343. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1344. example: null
  1345. nullable: true
  1346. amount:
  1347. allOf:
  1348. - $ref: '#/components/schemas/BigInt'
  1349. - description: Amount of tokens to be sent.
  1350. example: "6303020000000000000"
  1351. fee:
  1352. $ref: '#/components/schemas/FeeSelector'
  1353. nonce:
  1354. $ref: '#/components/schemas/Nonce'
  1355. state:
  1356. $ref: '#/components/schemas/PoolL2TransactionState'
  1357. signature:
  1358. allOf:
  1359. - $ref: '#/components/schemas/BJJSignature'
  1360. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1361. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1362. timestamp:
  1363. type: string
  1364. description: Moment in which the transaction was added to the pool.
  1365. format: date-time
  1366. batchNum:
  1367. type: integer
  1368. description: Identifier of a batch. Every new forged batch increases by one the batchNum, starting at 0.
  1369. minimum: 0
  1370. maximum: 4294967295
  1371. nullable: true
  1372. example: null
  1373. requestFromAccountIndex:
  1374. type: string
  1375. description: >-
  1376. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1377. The identifier is built using: `hez:` + `token symbol:` + `index`
  1378. nullable: true
  1379. example: null
  1380. requestToAccountIndex:
  1381. type: string
  1382. description: >-
  1383. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1384. The identifier is built using: `hez:` + `token symbol:` + `index`
  1385. nullable: true
  1386. example: null
  1387. requestToHezEthereumAddress:
  1388. type: string
  1389. description: "Address of an Etherum account linked to the Hermez Network."
  1390. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1391. nullable: true
  1392. example: null
  1393. requestToBJJ:
  1394. type: string
  1395. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1396. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1397. nullable: true
  1398. example: null
  1399. requestTokenId:
  1400. type: integer
  1401. description: References the `tokenId` of the requested transaction.
  1402. example: null
  1403. nullable: true
  1404. requestAmount:
  1405. type: string
  1406. description: BigInt is an integer encoded as a string for numbers that are very large.
  1407. nullable: true
  1408. example: null
  1409. requestFee:
  1410. type: integer
  1411. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1412. minimum: 0
  1413. maximum: 256
  1414. nullable: true
  1415. example: null
  1416. requestNonce:
  1417. type: integer
  1418. description: Number that can only be used once per account. Increments by one with each transaction.
  1419. minimum: 0
  1420. maximum: 1.84467440737096e+19
  1421. nullable: true
  1422. example: null
  1423. token:
  1424. $ref: '#/components/schemas/Token'
  1425. example:
  1426. amount: '100000000000000'
  1427. batchNum:
  1428. fee: 0
  1429. fromAccountIndex: hez:SCC:256
  1430. fromBJJ: hez:r_trOasVEk0zNaalOoS9aLedu6mO7jI5XTIPu_zGXoyn
  1431. fromHezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  1432. id: '0x020000000001000000000006'
  1433. nonce: 6
  1434. requestAmount:
  1435. requestFee: 0
  1436. requestFromAccountIndex:
  1437. requestNonce: 0
  1438. requestToAccountIndex:
  1439. requestToBJJ:
  1440. requestToHezEthereumAddress:
  1441. requestTokenId:
  1442. signature: 5ee9c7b5baa243ba282d18596a55cc357b01513eaed75165365f802102cce4a7a1dd35e3ab31cf9039e2b8a9f570d935115be9379a3dd47813dfc014031ab201
  1443. state: pend
  1444. timestamp: '2020-11-17T13:58:54.422232Z'
  1445. toAccountIndex: hez:SCC:257
  1446. toBjj: hez:r_trOasVEk0zNaalOoS9aLedu6mO7jI5XTIPu_zGXoyn
  1447. toHezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  1448. token:
  1449. USD: 23.74
  1450. decimals: 7
  1451. ethereumAddress: '0x0000000000000000000000000000000000000006'
  1452. ethereumBlockNum: 2
  1453. fiatUpdate:
  1454. id: 6
  1455. itemId: 7
  1456. name: Some Cool Coin
  1457. symbol: 'SCC'
  1458. type: Transfer
  1459. required:
  1460. - id
  1461. - type
  1462. - fromAccountIndex
  1463. - fromHezEthereumAddress
  1464. - fromBJJ
  1465. - toAccountIndex
  1466. - toHezEthereumAddress
  1467. - toBjj
  1468. - amount
  1469. - fee
  1470. - nonce
  1471. - state
  1472. - signature
  1473. - timestamp
  1474. - batchNum
  1475. - requestFromAccountIndex
  1476. - requestToAccountIndex
  1477. - requestToHezEthereumAddress
  1478. - requestToBJJ
  1479. - requestTokenId
  1480. - requestAmount
  1481. - requestFee
  1482. - requestNonce
  1483. - token
  1484. TransactionId:
  1485. type: string
  1486. description: Identifier for transactions. Used for any kind of transaction (both L1 and L2). More info on how the identifiers are built [here](https://idocs.hermez.io/#/spec/architecture/db/README?id=txid)
  1487. example: "0x00000000000001e240004700"
  1488. EthereumAddress:
  1489. type: string
  1490. description: "Address of an Etherum account."
  1491. pattern: "^0x[a-fA-F0-9]{40}$"
  1492. example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1493. HezEthereumAddress:
  1494. type: string
  1495. description: "Address of an Etherum account linked to the Hermez Network."
  1496. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1497. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1498. BJJ:
  1499. type: string
  1500. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1501. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1502. example: "hez:rR7LXKal-av7I56Y0dEBCVmwc9zpoLY5ERhy5w7G-xwe"
  1503. AccountIndex:
  1504. type: string
  1505. description: >-
  1506. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1507. The identifier is built using: `hez:` + `token symbol:` + `index`
  1508. example: "hez:DAI:4444"
  1509. TransactionType:
  1510. type: string
  1511. description: Type of transaction.
  1512. enum:
  1513. - Exit
  1514. - Transfer
  1515. - Deposit
  1516. - CreateAccountDeposit
  1517. - CreateAccountDepositTransfer
  1518. - DepositTransfer
  1519. - ForceTransfer
  1520. - ForceExit
  1521. - TransferToEthAddr
  1522. - TransferToBJJ
  1523. TransactionTypeL2:
  1524. type: string
  1525. description: Type of transaction.
  1526. enum:
  1527. - Exit
  1528. - Transfer
  1529. - TransferToEthAddr
  1530. - TransferToBJJ
  1531. TokenId:
  1532. type: integer
  1533. description: Identifier of a token registered in the network.
  1534. minimum: 0
  1535. maximum: 4294967295
  1536. example: 98765
  1537. BigInt:
  1538. type: string
  1539. description: BigInt is an integer encoded as a string for numbers that are very large.
  1540. example: "8708856933496328593"
  1541. pattern: "^\\d+$"
  1542. FeeSelector:
  1543. type: integer
  1544. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1545. minimum: 0
  1546. maximum: 256
  1547. example: 36
  1548. Nonce:
  1549. type: integer
  1550. description: Number that can only be used once per account, increments by one at each transaction.
  1551. minimum: 0
  1552. maximum: 1.84467440737096e+19
  1553. example: 121
  1554. PoolL2TransactionState:
  1555. type: string
  1556. description: >
  1557. State of a L2 transaction from the coordinator pool.
  1558. * pend: Pending
  1559. * fing: Forging
  1560. * fged: Forged
  1561. * invl: Invalid
  1562. enum:
  1563. - pend
  1564. - fing
  1565. - fged
  1566. - invl
  1567. ETHSignature:
  1568. type: string
  1569. description: Ethereum signature.
  1570. pattern: "^0x[a-fA-F0-9]{130}$"
  1571. example: "0xf9161cd688394772d93aa3e7b3f8f9553ca4f94f65b7cece93ed4a239d5c0b4677dca6d1d459e3a5c271a34de735d4664a43e5a8960a9a6e027d12c562dd448e1c"
  1572. BJJSignature:
  1573. type: string
  1574. description: BabyJubJub compressed signature.
  1575. pattern: "^[a-fA-F0-9]{128}$"
  1576. example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1577. BatchNum:
  1578. type: integer
  1579. description: Identifier of a batch. Every new forged batch increments by one the batchNum, starting at 0.
  1580. minimum: 0
  1581. maximum: 4294967295
  1582. example: 5432
  1583. AccountCreationAuthorizationPost:
  1584. type: object
  1585. properties:
  1586. hezEthereumAddress:
  1587. $ref: '#/components/schemas/HezEthereumAddress'
  1588. bjj:
  1589. $ref: '#/components/schemas/BJJ'
  1590. signature:
  1591. $ref: '#/components/schemas/ETHSignature'
  1592. example:
  1593. hezEthereumAddress: hez:0xb5270eB4ae11c6fAAff6F5fa0A5202B8d963634C
  1594. bjj: hez:hg2Ydsb8O66H-steBR3cnHl944ua7E-PkTJ_SbPBBg5r
  1595. signature: '0xb7cf237c4a2ff3d4df57752e7b9deb236fa384f03a79d39acf17ec5f8d12a3cf00b017c2466611310cb2bacac68460e96778278646842c6d2bcb79979271c28501'
  1596. required:
  1597. - hezEthereumAddress
  1598. - bjj
  1599. - signature
  1600. AccountCreationAuthorization:
  1601. type: object
  1602. properties:
  1603. timestamp:
  1604. type: string
  1605. format: date-time
  1606. hezEthereumAddress:
  1607. $ref: '#/components/schemas/HezEthereumAddress'
  1608. bjj:
  1609. $ref: '#/components/schemas/BJJ'
  1610. signature:
  1611. $ref: '#/components/schemas/ETHSignature'
  1612. example:
  1613. hezEthereumAddress: hez:0x74a549b410d01d9eC56346aE52b8550515B283b2
  1614. bjj: hez:dEZ-Tj7d5h0TAqbnRTTYURYDEo5KZzB87_2WknUU8gCN
  1615. signature: '0x8db6db2ad6cbe21297fb8ee01c59b01b52d4df7ea92a0f0dee0be0075a8f224a06b367407c8f402cfe0490c142a1c92da3fc29b51162ae160d35e1577d3071bb01'
  1616. timestamp: '2020-11-17T13:25:36.784295Z'
  1617. additionalProperties: false
  1618. required:
  1619. - timestamp
  1620. - hezEthereumAddress
  1621. - bjj
  1622. - signature
  1623. HistoryTransaction:
  1624. type: object
  1625. description: Transaction of the Hermez Network
  1626. properties:
  1627. L1orL2:
  1628. type: string
  1629. enum:
  1630. - L1
  1631. - L2
  1632. id:
  1633. $ref: '#/components/schemas/TransactionId'
  1634. itemId:
  1635. $ref: '#/components/schemas/ItemId'
  1636. type:
  1637. $ref: '#/components/schemas/TransactionType'
  1638. position:
  1639. $ref: '#/components/schemas/TransactionPosition'
  1640. fromAccountIndex:
  1641. type: string
  1642. description: >-
  1643. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1644. The identifier is built using: `hez:` + `token symbol:` + `index`
  1645. example: "hez:DAI:4444"
  1646. nullable: true
  1647. fromHezEthereumAddress:
  1648. type: string
  1649. description: "Address of an Etherum account linked to the Hermez Network."
  1650. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1651. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1652. nullable: true
  1653. fromBJJ:
  1654. type: string
  1655. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1656. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1657. example: "hez:9CK9fjQdMUTGm8KDvGLy3MB-vnP0NCcGX7Uh7OO6KRJm"
  1658. nullable: true
  1659. toAccountIndex:
  1660. allOf:
  1661. - $ref: '#/components/schemas/AccountIndex'
  1662. - example: "hez:DAI:672"
  1663. toHezEthereumAddress:
  1664. type: string
  1665. description: "Address of an Etherum account linked to the Hermez Network."
  1666. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1667. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1668. nullable: true
  1669. toBJJ:
  1670. type: string
  1671. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1672. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1673. example: "hez:f1J78_6uqTyjX6jrVCqN4RFeRBnWQAGl477ZFtOnH6Sm"
  1674. nullable: true
  1675. amount:
  1676. allOf:
  1677. - $ref: '#/components/schemas/BigInt'
  1678. - description: Amount of tokens to be sent.
  1679. - example: "4903020000000000000"
  1680. batchNum:
  1681. type: integer
  1682. description: Batch in which the transaction was forged. Null indicates not forged yet.
  1683. minimum: 0
  1684. maximum: 4294967295
  1685. example: 5432
  1686. nullable: true
  1687. historicUSD:
  1688. type: number
  1689. description: Value in USD at the moment the transaction was forged.
  1690. example: 49.7
  1691. nullable: true
  1692. timestamp:
  1693. type: string
  1694. format: date-time
  1695. description: In the case of L1 indicates the moment where the transaction was added in the smart contract. For L2 indicates when the transaction was forged.
  1696. token:
  1697. $ref: '#/components/schemas/Token'
  1698. L1Info:
  1699. type: object
  1700. description: Additional information that only applies to L1 transactions.
  1701. nullable: true
  1702. properties:
  1703. toForgeL1TransactionsNum:
  1704. $ref: '#/components/schemas/ToForgeL1TransactionsNum'
  1705. userOrigin:
  1706. type: boolean
  1707. description: True if the transaction was sent by a user. False if it was sent by a coordinator.
  1708. depositAmount:
  1709. allOf:
  1710. - $ref: '#/components/schemas/BigInt'
  1711. - description: Tokens transfered from L1 to L2.
  1712. - example: "4900000000000000000"
  1713. amountSuccess:
  1714. type: boolean
  1715. description: >-
  1716. Indicates if the amount specified by the user has been sent propperly. If false, the amount that actualy has been sent is 0.
  1717. If the transaction hasn't been forged yet (`batchNum == null`), this value will be false, as it's unknown if it has succeed or not.
  1718. An example were this value could be false: a user send a `DepositTransfer` transaction, but when the tx is forged there are not
  1719. enougth founds in the account. In this case the transfer part of the transaction won't be effective making the amount have a real value of 0.
  1720. example: true
  1721. depositAmountSuccess:
  1722. type: boolean
  1723. description: >-
  1724. Indicates if the deposit amount specified by the user has been sent propperly. If false, the deposit amount that actualy has been sent is 0.
  1725. If the transaction hasn't been forged yet (`batchNum == null`), this value will be false, as it's unknown if it has succeed or not.
  1726. An example were this value could be false: a user send a `Deposit` transaction, but when the tx is forged the token id is not registered on the network.
  1727. In this case transaction won't be effective making the deposit amount have a real value of 0.
  1728. example: true
  1729. historicDepositAmountUSD:
  1730. type: number
  1731. description: Deposit amount in USD, at the moment the transaction was made.
  1732. example: 3.897
  1733. nullable: true
  1734. ethereumBlockNum:
  1735. allOf:
  1736. - $ref: '#/components/schemas/EthBlockNum'
  1737. - description: Ethereum block in which the transaction was added to the smart contract forge queue.
  1738. - example: 258723049
  1739. required:
  1740. - toForgeL1TransactionsNum
  1741. - userOrigin
  1742. - depositAmount
  1743. - amountSuccess
  1744. - depositAmountSuccess
  1745. - historicDepositAmountUSD
  1746. - ethereumBlockNum
  1747. additionalProperties: false
  1748. L2Info:
  1749. type: object
  1750. description: Additional information that only applies to L2 transactions.
  1751. nullable: true
  1752. properties:
  1753. fee:
  1754. $ref: '#/components/schemas/FeeSelector'
  1755. historicFeeUSD:
  1756. type: number
  1757. description: Fee in USD, at the moment the transaction was forged.
  1758. example: 263.89
  1759. nullable: true
  1760. nonce:
  1761. $ref: '#/components/schemas/Nonce'
  1762. example: null
  1763. required:
  1764. - fee
  1765. - historicFeeUSD
  1766. - nonce
  1767. additionalProperties: false
  1768. example:
  1769. L1Info:
  1770. ethereumBlockNum: 1
  1771. historicDepositAmountUSD: 232.47
  1772. depositAmount: '261'
  1773. toForgeL1TransactionsNum: 10
  1774. userOrigin: true
  1775. L1orL2: L1
  1776. L2Info:
  1777. amount: '261'
  1778. batchNum: 1
  1779. fromAccountIndex: hez:ETH:276
  1780. fromBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1781. fromHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1782. historicUSD: 3784.19
  1783. id: '0x00000000000000000a000400'
  1784. itemId: 2
  1785. position: 4
  1786. timestamp: '2020-11-17T14:08:12.197554Z'
  1787. toAccountIndex: hez:ETH:276
  1788. toBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1789. toHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1790. token:
  1791. USD: 234.56
  1792. decimals: 18
  1793. ethereumAddress: '0x0000000000000000000000000000000000000000'
  1794. ethereumBlockNum: 0
  1795. fiatUpdate:
  1796. id: 0
  1797. itemId: 1
  1798. name: Ether
  1799. symbol: ETH
  1800. type: CreateAccountDeposit
  1801. required:
  1802. - L1orL2
  1803. - id
  1804. - itemId
  1805. - type
  1806. - position
  1807. - fromAccountIndex
  1808. - fromHezEthereumAddress
  1809. - fromBJJ
  1810. - toAccountIndex
  1811. - toHezEthereumAddress
  1812. - toBJJ
  1813. - amount
  1814. - batchNum
  1815. - historicUSD
  1816. - timestamp
  1817. - token
  1818. - L1Info
  1819. - L2Info
  1820. additionalProperties: false
  1821. HistoryTransactions:
  1822. type: object
  1823. properties:
  1824. transactions:
  1825. type: array
  1826. description: List of history transactions.
  1827. items:
  1828. $ref: '#/components/schemas/HistoryTransaction'
  1829. pendingItems:
  1830. $ref: '#/components/schemas/PendingItems'
  1831. example:
  1832. transactions:
  1833. - L1Info:
  1834. ethereumBlockNum: 3
  1835. historicDepositAmountUSD:
  1836. depositAmount: '0'
  1837. toForgeL1TransactionsNum: 7
  1838. userOrigin: true
  1839. L1orL2: L1
  1840. L2Info:
  1841. amount: '88888800000000000'
  1842. batchNum: 9
  1843. fromAccountIndex: hez:ETH:262
  1844. fromBJJ: hez:Mj_xDCjfN-y3h_4hbhEdtkqnz6LFF1Cf4AV_8IoQswwh
  1845. fromHezEthereumAddress: hez:0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF
  1846. historicUSD: 44.4444
  1847. id: '0x000000000000000007000300'
  1848. itemId: 28
  1849. position: 3
  1850. timestamp: '2020-11-26T09:18:40.004749Z'
  1851. toAccountIndex: hez:EXIT:1
  1852. toBJJ:
  1853. toHezEthereumAddress:
  1854. token:
  1855. USD: 500
  1856. decimals: 18
  1857. ethereumAddress: '0x0000000000000000000000000000000000000000'
  1858. ethereumBlockNum: 0
  1859. fiatUpdate: '2020-11-26T09:18:27.034866Z'
  1860. id: 0
  1861. itemId: 1
  1862. name: Ether
  1863. symbol: ETH
  1864. type: ForceExit
  1865. - L1Info:
  1866. L1orL2: L2
  1867. L2Info:
  1868. fee: 123
  1869. historicFeeUSD: 2.15037380962404
  1870. nonce: 1
  1871. amount: '55555500000000000'
  1872. batchNum: 8
  1873. fromAccountIndex: hez:TKN1:264
  1874. fromBJJ: hez:Mj_xDCjfN-y3h_4hbhEdtkqnz6LFF1Cf4AV_8IoQswwh
  1875. fromHezEthereumAddress: hez:0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF
  1876. historicUSD: 23.4999765
  1877. id: '0x020000000001080000000001'
  1878. itemId: 19
  1879. position: 2
  1880. timestamp: '2020-11-26T09:18:40.004749Z'
  1881. toAccountIndex: hez:TKN1:260
  1882. toBJJ: hez:81h61cx0FKR1RXcLbHW8cZMPY8SR6yKU3ei4pmcLjpaQ
  1883. toHezEthereumAddress: hez:0x6813Eb9362372EEF6200f3b1dbC3f819671cBA69
  1884. token:
  1885. USD: 423
  1886. decimals: 18
  1887. ethereumAddress: '0x0000000000000000000000000000000000000064'
  1888. ethereumBlockNum: 2
  1889. fiatUpdate: '2020-11-26T09:18:27.04357Z'
  1890. id: 1
  1891. itemId: 2
  1892. name: Test Token 1
  1893. symbol: TKN1
  1894. type: Transfer
  1895. - L1Info:
  1896. L1orL2: L2
  1897. L2Info:
  1898. fee: 44
  1899. historicFeeUSD: 0.1973587359744
  1900. nonce: 2
  1901. amount: '66666600000000000'
  1902. batchNum: 8
  1903. fromAccountIndex: hez:ETH:259
  1904. fromBJJ: hez:W6x4TZOAZ9mAqdOb3Xm_hKDLspaXfEfMMN4tXOkinS-W
  1905. fromHezEthereumAddress: hez:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
  1906. historicUSD: 33.3333
  1907. id: '0x020000000001030000000002'
  1908. itemId: 20
  1909. position: 3
  1910. timestamp: '2020-11-26T09:18:40.004749Z'
  1911. toAccountIndex: hez:EXIT:1
  1912. toBJJ:
  1913. toHezEthereumAddress:
  1914. token:
  1915. USD: 500
  1916. decimals: 18
  1917. ethereumAddress: '0x0000000000000000000000000000000000000000'
  1918. ethereumBlockNum: 0
  1919. fiatUpdate: '2020-11-26T09:18:27.034866Z'
  1920. id: 0
  1921. itemId: 1
  1922. name: Ether
  1923. symbol: ETH
  1924. type: Exit
  1925. - L1Info:
  1926. ethereumBlockNum: 3
  1927. historicDepositAmountUSD: 14099.9999859
  1928. depositAmount: '33333333300000000000'
  1929. toForgeL1TransactionsNum: 2
  1930. userOrigin: true
  1931. L1orL2: L1
  1932. L2Info:
  1933. amount: '0'
  1934. batchNum: 4
  1935. fromAccountIndex: hez:TKN1:0
  1936. fromBJJ: hez:W6x4TZOAZ9mAqdOb3Xm_hKDLspaXfEfMMN4tXOkinS-W
  1937. fromHezEthereumAddress: hez:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
  1938. historicUSD:
  1939. id: '0x000000000000000002000000'
  1940. itemId: 9
  1941. position: 0
  1942. timestamp: '2020-11-26T09:18:40.004749Z'
  1943. toAccountIndex: hez:TKN1:0
  1944. toBJJ:
  1945. toHezEthereumAddress:
  1946. token:
  1947. USD: 423
  1948. decimals: 18
  1949. ethereumAddress: '0x0000000000000000000000000000000000000064'
  1950. ethereumBlockNum: 2
  1951. fiatUpdate: '2020-11-26T09:18:27.04357Z'
  1952. id: 1
  1953. itemId: 2
  1954. name: Test Token 1
  1955. symbol: TKN1
  1956. type: CreateAccountDeposit
  1957. - L1Info:
  1958. L1orL2: L2
  1959. L2Info:
  1960. fee: 2
  1961. historicFeeUSD: 3.87833366166246e-17
  1962. nonce: 1
  1963. amount: '11111100000000000'
  1964. batchNum: 7
  1965. fromAccountIndex: hez:TKN1:261
  1966. fromBJJ: hez:W6x4TZOAZ9mAqdOb3Xm_hKDLspaXfEfMMN4tXOkinS-W
  1967. fromHezEthereumAddress: hez:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
  1968. historicUSD: 4.6999953
  1969. id: '0x020000000001050000000001'
  1970. itemId: 15
  1971. position: 2
  1972. timestamp: '2020-11-26T09:18:40.004749Z'
  1973. toAccountIndex: hez:TKN1:264
  1974. toBJJ: hez:Mj_xDCjfN-y3h_4hbhEdtkqnz6LFF1Cf4AV_8IoQswwh
  1975. toHezEthereumAddress: hez:0x2B5AD5c4795c026514f8317c7a215E218DcCD6cF
  1976. token:
  1977. USD: 423
  1978. decimals: 18
  1979. ethereumAddress: '0x0000000000000000000000000000000000000064'
  1980. ethereumBlockNum: 2
  1981. fiatUpdate: '2020-11-26T09:18:27.04357Z'
  1982. id: 1
  1983. itemId: 2
  1984. name: Test Token 1
  1985. symbol: TKN1
  1986. type: Transfer
  1987. pendingItems: 23
  1988. required:
  1989. - transactions
  1990. - pendingItems
  1991. additionalProperties: false
  1992. EthBlockNum:
  1993. type: integer
  1994. description: Ethereum block number
  1995. minimum: 0
  1996. maximum: 1.84467440737096e+19
  1997. example: 762375478
  1998. ToForgeL1TransactionsNum:
  1999. type: integer
  2000. description: Reference to know in which batch a L1 transaction was forged / will be forged.
  2001. minimum: 0
  2002. maximum: 4294967295
  2003. example: 784
  2004. nullable: true
  2005. TransactionPosition:
  2006. type: integer
  2007. description: Position that a transaction occupies in a batch.
  2008. minimum: 0
  2009. example: 5
  2010. URL:
  2011. type: string
  2012. description: HTTP URL
  2013. example: "https://hermez.io"
  2014. TokenSymbol:
  2015. type: string
  2016. description: Abreviation of the token name.
  2017. example: "DAI"
  2018. TokenName:
  2019. type: string
  2020. description: Token name.
  2021. example: "Dai"
  2022. CollectedFees:
  2023. type: object
  2024. description: Collected fees by the forger of the batch, represented by a map of tokenId => amount. A maximum of 64 different tokens can be used.
  2025. additionalProperties:
  2026. type: string
  2027. example:
  2028. 1234: "425632785672345647"
  2029. 4321: "86538967235465432654352"
  2030. Batch:
  2031. type: object
  2032. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  2033. properties:
  2034. itemId:
  2035. $ref: '#/components/schemas/ItemId'
  2036. batchNum:
  2037. $ref: '#/components/schemas/BatchNum'
  2038. ethereumBlockNum:
  2039. $ref: '#/components/schemas/EthBlockNum'
  2040. ethereumBlockHash:
  2041. type: string
  2042. description: hash of the Ethereum block in which the batch was forged
  2043. example: "0xfe88c94d860f01a17f961bf4bdfb6e0c6cd10d3fda5cc861e805ca1240c58553"
  2044. timestamp:
  2045. type: string
  2046. format: date-time
  2047. description: Time in which the batch was forged.
  2048. forgerAddr:
  2049. $ref: '#/components/schemas/EthereumAddress'
  2050. collectedFees:
  2051. $ref: '#/components/schemas/CollectedFees'
  2052. historicTotalCollectedFeesUSD:
  2053. type: number
  2054. description: Sum of the all the fees collected, in USD, at the moment the batch was forged.
  2055. example: 23.3
  2056. stateRoot:
  2057. allOf:
  2058. - $ref: '#/components/schemas/Hash'
  2059. - description: Root of the accounts Merkle Tree.
  2060. - example: "2734657026572a8708d883"
  2061. numAccounts:
  2062. type: integer
  2063. description: Number of registered accounts in this batch.
  2064. exitRoot:
  2065. allOf:
  2066. - $ref: '#/components/schemas/Hash'
  2067. - description: Root of the exit Merkle Tree associated to this batch.
  2068. - example: "2734657026572a8708d883"
  2069. forgeL1TransactionsNum:
  2070. type: integer
  2071. description: Identifier that corresponds to the group of L1 transactions forged in the current batch.
  2072. example: 5
  2073. nullable: true
  2074. slotNum:
  2075. $ref: '#/components/schemas/SlotNum'
  2076. additionalProperties: false
  2077. required:
  2078. - itemId
  2079. - batchNum
  2080. - ethereumBlockNum
  2081. - ethereumBlockHash
  2082. - timestamp
  2083. - forgerAddr
  2084. - collectedFees
  2085. - historicTotalCollectedFeesUSD
  2086. - stateRoot
  2087. - numAccounts
  2088. - exitRoot
  2089. - forgeL1TransactionsNum
  2090. - slotNum
  2091. FullBatch:
  2092. type: object
  2093. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  2094. properties:
  2095. batch:
  2096. $ref: '#/components/schemas/Batch'
  2097. transactions:
  2098. type: array
  2099. description: List of forged transactions in the batch
  2100. items:
  2101. $ref: '#/components/schemas/HistoryTransaction'
  2102. nullable: true
  2103. additionalProperties: false
  2104. required:
  2105. - batch
  2106. - transactions
  2107. Hash:
  2108. type: string
  2109. description: hashed data
  2110. example: "2734657026572a8708d883"
  2111. SlotNum:
  2112. type: integer
  2113. description: Identifier of a slot.
  2114. minimum: 0
  2115. maximum: 4294967295
  2116. example: 784
  2117. Batches:
  2118. type: object
  2119. properties:
  2120. batches:
  2121. type: array
  2122. description: List of batches.
  2123. items:
  2124. $ref: '#/components/schemas/Batch'
  2125. pendingItems:
  2126. $ref: '#/components/schemas/PendingItems'
  2127. additionalProperties: false
  2128. required:
  2129. - batches
  2130. - pendingItems
  2131. Coordinator:
  2132. type: object
  2133. properties:
  2134. itemId:
  2135. $ref: '#/components/schemas/ItemId'
  2136. forgerAddr:
  2137. $ref: '#/components/schemas/EthereumAddress'
  2138. bidderAddr:
  2139. $ref: '#/components/schemas/EthereumAddress'
  2140. URL:
  2141. $ref: '#/components/schemas/URL'
  2142. ethereumBlock:
  2143. allOf:
  2144. - $ref: '#/components/schemas/EthBlockNum'
  2145. - description: Ethereum block in which the coordinator registered into the network.
  2146. - example: 5735943738
  2147. additionalProperties: false
  2148. required:
  2149. - itemId
  2150. - forgerAddr
  2151. - bidderAddr
  2152. - URL
  2153. - ethereumBlock
  2154. Coordinators:
  2155. type: object
  2156. properties:
  2157. coordinators:
  2158. type: array
  2159. description: List of coordinators.
  2160. items:
  2161. $ref: '#/components/schemas/Coordinator'
  2162. pendingItems:
  2163. $ref: '#/components/schemas/PendingItems'
  2164. additionalProperties: false
  2165. required:
  2166. - coordinators
  2167. - pendingItems
  2168. Bid:
  2169. type: object
  2170. description: Tokens placed in an auction by a coordinator to gain the right to forge batches during a specific slot.
  2171. properties:
  2172. itemId:
  2173. $ref: '#/components/schemas/ItemId'
  2174. bidderAddr:
  2175. $ref: '#/components/schemas/EthereumAddress'
  2176. forgerAddr:
  2177. $ref: '#/components/schemas/EthereumAddress'
  2178. slotNum:
  2179. $ref: '#/components/schemas/SlotNum'
  2180. URL:
  2181. $ref: '#/components/schemas/URL'
  2182. bidValue:
  2183. $ref: '#/components/schemas/BigInt'
  2184. ethereumBlockNum:
  2185. $ref: '#/components/schemas/EthBlockNum'
  2186. timestamp:
  2187. type: string
  2188. format: date-time
  2189. additionalProperties: false
  2190. required:
  2191. - bidderAddr
  2192. - forgerAddr
  2193. - slotNum
  2194. - URL
  2195. - bidValue
  2196. - ethereumBlockNum
  2197. - timestamp
  2198. Bids:
  2199. type: object
  2200. properties:
  2201. bids:
  2202. type: array
  2203. description: List of bids.
  2204. items:
  2205. $ref: '#/components/schemas/Bid'
  2206. pendingItems:
  2207. $ref: '#/components/schemas/PendingItems'
  2208. additionalProperties: false
  2209. required:
  2210. - bids
  2211. - pendingItems
  2212. RecommendedFee:
  2213. type: object
  2214. description: Fee that the coordinator recommends per transaction in USD.
  2215. properties:
  2216. existingAccount:
  2217. type: number
  2218. description: Recommended fee if the destination account of the transaction already exists.
  2219. minimum: 0
  2220. example: 0.1
  2221. createAccount:
  2222. type: number
  2223. description: Recommended fee if the destination account of the transaction doesn't exist, but the coordinator has an authorization to create a valid account associated to an Ethereum address and a BJJ public key controlled by the receiver.
  2224. minimum: 0
  2225. example: 1.3
  2226. createAccountInternal:
  2227. type: number
  2228. description: Recommended fee if the destination account of the transaction doesn't exist, but the coordinator has the ability to create a valid account associated to a BJJ public key controlled by the receiver. Note that these kind of accounts are not associated with an Ethereum address and therefore can only operate in L2.
  2229. minimum: 0
  2230. example: 0.5
  2231. Token:
  2232. type: object
  2233. description: Hermez Network compatible and registered token.
  2234. properties:
  2235. id:
  2236. $ref: '#/components/schemas/TokenId'
  2237. ethereumAddress:
  2238. allOf:
  2239. - $ref: '#/components/schemas/EthereumAddress'
  2240. - description: Ethereum address in which the token is deployed.
  2241. - example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  2242. itemId:
  2243. $ref: '#/components/schemas/ItemId'
  2244. name:
  2245. type: string
  2246. description: full name of the token
  2247. example: Maker Dai
  2248. symbol:
  2249. allOf:
  2250. - $ref: '#/components/schemas/TokenSymbol'
  2251. - example: DAI
  2252. decimals:
  2253. type: integer
  2254. description: Number of decimals of the token.
  2255. example: 18
  2256. ethereumBlockNum:
  2257. allOf:
  2258. - $ref: '#/components/schemas/EthBlockNum'
  2259. - description: Ethereum block number in which the token was added to the Hermez Network.
  2260. - example: 539847538
  2261. USD:
  2262. type: number
  2263. description: Value of the token in USD.
  2264. example: 1.01
  2265. nullable: true
  2266. fiatUpdate:
  2267. type: string
  2268. format: date-time
  2269. description: Timestamp of the moment the `USD` value was updated.
  2270. nullable: true
  2271. required:
  2272. - id
  2273. - ethereumAddress
  2274. - itemId
  2275. - name
  2276. - symbol
  2277. - decimals
  2278. - ethereumBlockNum
  2279. - USD
  2280. - fiatUpdate
  2281. additionalProperties: false
  2282. Tokens:
  2283. type: object
  2284. properties:
  2285. tokens:
  2286. type: array
  2287. description: List of tokens.
  2288. items:
  2289. $ref: '#/components/schemas/Token'
  2290. pendingItems:
  2291. $ref: '#/components/schemas/PendingItems'
  2292. Exit:
  2293. type: object
  2294. description: Exit tree leaf. It Contains the necessary information to perform a withdrawal.
  2295. properties:
  2296. batchNum:
  2297. allOf:
  2298. - $ref: '#/components/schemas/BatchNum'
  2299. - description: Batch in which the exit was forged.
  2300. - example: 7394
  2301. accountIndex:
  2302. $ref: '#/components/schemas/AccountIndex'
  2303. itemId:
  2304. $ref: '#/components/schemas/ItemId'
  2305. merkleProof:
  2306. type: object
  2307. description: Existence proof of a leaf in a given Merkle Root. Encoded as hexadecimal string.
  2308. properties:
  2309. root:
  2310. $ref: '#/components/schemas/BigInt'
  2311. siblings:
  2312. type: array
  2313. items:
  2314. $ref: '#/components/schemas/BigInt'
  2315. oldKey:
  2316. $ref: '#/components/schemas/BigInt'
  2317. oldValue:
  2318. $ref: '#/components/schemas/BigInt'
  2319. isOld0:
  2320. type: boolean
  2321. key:
  2322. $ref: '#/components/schemas/BigInt'
  2323. value:
  2324. $ref: '#/components/schemas/BigInt'
  2325. fnc:
  2326. type: integer
  2327. maximum: 3
  2328. minimum: 0
  2329. required:
  2330. - root
  2331. - siblings
  2332. - oldKey
  2333. - oldValue
  2334. - isOld0
  2335. - key
  2336. - value
  2337. - fnc
  2338. additionalProperties: false
  2339. balance:
  2340. $ref: '#/components/schemas/BigInt'
  2341. instantWithdrawn:
  2342. type: integer
  2343. description: Block in which the exit balance was instantly withdrawn. Null indicates that an instant withdrawn hasn't been performed.
  2344. minimum: 0
  2345. maximum: 1.84467440737096e+19
  2346. example: 74747363
  2347. nullable: true
  2348. delayedWithdrawRequest:
  2349. type: integer
  2350. description: Block in which the exit balance was requested to delay withdraw. Null indicates that a delay withdraw hasn't been performed.
  2351. minimum: 0
  2352. maximum: 1.84467440737096e+19
  2353. example: null
  2354. nullable: true
  2355. delayedWithdrawn:
  2356. type: integer
  2357. description: Block in which the exit balance was delayed withdrawn after a delay withdraw request. Null indicates that a delay withdraw hasn't been performed.
  2358. minimum: 0
  2359. maximum: 1.84467440737096e+19
  2360. example: null
  2361. nullable: true
  2362. token:
  2363. $ref: '#/components/schemas/Token'
  2364. required:
  2365. - batchNum
  2366. - accountIndex
  2367. - itemId
  2368. - merkleProof
  2369. - balance
  2370. - instantWithdrawn
  2371. - delayedWithdrawRequest
  2372. - delayedWithdrawn
  2373. - token
  2374. additionalProperties: false
  2375. Exits:
  2376. type: object
  2377. properties:
  2378. exits:
  2379. type: array
  2380. description: List of exits.
  2381. items:
  2382. $ref: '#/components/schemas/Exit'
  2383. pendingItems:
  2384. $ref: '#/components/schemas/PendingItems'
  2385. required:
  2386. - exits
  2387. - pendingItems
  2388. additionalProperties: false
  2389. Account:
  2390. type: object
  2391. description: State tree leaf. It contains balance and nonce of an account.
  2392. properties:
  2393. itemId:
  2394. $ref: '#/components/schemas/ItemId'
  2395. accountIndex:
  2396. $ref: '#/components/schemas/AccountIndex'
  2397. nonce:
  2398. $ref: '#/components/schemas/Nonce'
  2399. balance:
  2400. $ref: '#/components/schemas/BigInt'
  2401. bjj:
  2402. $ref: '#/components/schemas/BJJ'
  2403. hezEthereumAddress:
  2404. $ref: '#/components/schemas/HezEthereumAddress'
  2405. token:
  2406. $ref: '#/components/schemas/Token'
  2407. example:
  2408. exits:
  2409. - accountIndex: hez:ETH:259
  2410. balance: '66666600000000000'
  2411. batchNum: 8
  2412. delayedWithdrawRequest:
  2413. delayedWithdrawn:
  2414. instantWithdrawn:
  2415. itemId: 1
  2416. merkleProof:
  2417. Fnc: 0
  2418. IsOld0: true
  2419. Key: '256'
  2420. OldKey: '256'
  2421. OldValue: '256'
  2422. Root: '256'
  2423. Siblings:
  2424. - '0'
  2425. - '1'
  2426. - '2'
  2427. Value: '256'
  2428. token:
  2429. USD: 500
  2430. decimals: 18
  2431. ethereumAddress: '0x0000000000000000000000000000000000000000'
  2432. ethereumBlockNum: 0
  2433. fiatUpdate: '2020-11-26T09:57:29.110879Z'
  2434. id: 0
  2435. itemId: 1
  2436. name: Ether
  2437. symbol: ETH
  2438. pendingItems: 0
  2439. additionalProperties: false
  2440. required:
  2441. - itemId
  2442. - accountIndex
  2443. - nonce
  2444. - balance
  2445. - bjj
  2446. - hezEthereumAddress
  2447. - token
  2448. Accounts:
  2449. type: object
  2450. properties:
  2451. accounts:
  2452. type: array
  2453. description: List of accounts.
  2454. items:
  2455. $ref: '#/components/schemas/Account'
  2456. pendingItems:
  2457. $ref: '#/components/schemas/PendingItems'
  2458. example:
  2459. accounts:
  2460. - accountIndex: hez:ETH:259
  2461. balance: '2590000000000000000'
  2462. bjj: hez:W6x4TZOAZ9mAqdOb3Xm_hKDLspaXfEfMMN4tXOkinS-W
  2463. hezEthereumAddress: hez:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
  2464. itemId: 4
  2465. nonce: 0
  2466. token:
  2467. USD: 500
  2468. decimals: 18
  2469. ethereumAddress: '0x0000000000000000000000000000000000000000'
  2470. ethereumBlockNum: 0
  2471. fiatUpdate: '2020-11-26T09:53:47.444444Z'
  2472. id: 0
  2473. itemId: 1
  2474. name: Ether
  2475. symbol: ETH
  2476. - accountIndex: hez:TKN1:261
  2477. balance: '2610000000'
  2478. bjj: hez:W6x4TZOAZ9mAqdOb3Xm_hKDLspaXfEfMMN4tXOkinS-W
  2479. hezEthereumAddress: hez:0x7E5F4552091A69125d5DfCb7b8C2659029395Bdf
  2480. itemId: 6
  2481. nonce: 0
  2482. token:
  2483. USD: 423
  2484. decimals: 18
  2485. ethereumAddress: '0x0000000000000000000000000000000000000064'
  2486. ethereumBlockNum: 2
  2487. fiatUpdate: '2020-11-26T09:53:47.456619Z'
  2488. id: 1
  2489. itemId: 2
  2490. name: Test Token 1
  2491. symbol: TKN1
  2492. pendingItems: 0
  2493. additionalProperties: false
  2494. required:
  2495. - accounts
  2496. - pendingItems
  2497. Slot:
  2498. type: object
  2499. description: Slot information.
  2500. properties:
  2501. itemId:
  2502. $ref: '#/components/schemas/ItemId'
  2503. slotNum:
  2504. $ref: '#/components/schemas/SlotNum'
  2505. firstBlock:
  2506. allOf:
  2507. - $ref: '#/components/schemas/EthBlockNum'
  2508. - description: Block in which the slot began or will begin
  2509. - example: 76238647846
  2510. lastBlock:
  2511. allOf:
  2512. - $ref: '#/components/schemas/EthBlockNum'
  2513. - description: Block in which the slot ended or will end
  2514. - example: 4475934
  2515. openAuction:
  2516. type: boolean
  2517. description: Whether the auction of the slot is open or not.
  2518. bestBid:
  2519. type: object
  2520. description: The best bid of the auction. If the bestBid is null, it is because no coordinator has bid for that slot.
  2521. nullable: true
  2522. properties:
  2523. itemId:
  2524. $ref: '#/components/schemas/ItemId'
  2525. bidderAddr:
  2526. $ref: '#/components/schemas/EthereumAddress'
  2527. forgerAddr:
  2528. $ref: '#/components/schemas/EthereumAddress'
  2529. slotNum:
  2530. $ref: '#/components/schemas/SlotNum'
  2531. URL:
  2532. $ref: '#/components/schemas/URL'
  2533. bidValue:
  2534. type: string
  2535. description: BigInt is an integer encoded as a string for numbers that are very large.
  2536. example: "8708856933496328593"
  2537. pattern: "^\\d+$"
  2538. ethereumBlockNum:
  2539. $ref: '#/components/schemas/EthBlockNum'
  2540. timestamp:
  2541. type: string
  2542. format: date-time
  2543. additionalProperties: false
  2544. required:
  2545. - bidderAddr
  2546. - forgerAddr
  2547. - slotNum
  2548. - URL
  2549. - bidValue
  2550. - ethereumBlockNum
  2551. - timestamp
  2552. additionalProperties: false
  2553. required:
  2554. - slotNum
  2555. - firstBlock
  2556. - lastBlock
  2557. - openAuction
  2558. - bestBid
  2559. Slots:
  2560. type: object
  2561. properties:
  2562. slots:
  2563. type: array
  2564. description: List of slots.
  2565. items:
  2566. allOf:
  2567. - $ref: '#/components/schemas/Slot'
  2568. - description: Last synchronized Etherum block.
  2569. pendingItems:
  2570. $ref: '#/components/schemas/PendingItems'
  2571. additionalProperties: false
  2572. required:
  2573. - slots
  2574. - pendingItems
  2575. NextForger:
  2576. type: object
  2577. description: Coordinator information along with the scheduled forging period
  2578. properties:
  2579. coordinator:
  2580. $ref: '#/components/schemas/Coordinator'
  2581. period:
  2582. type: object
  2583. description: Time period in which the coordinator will have the ability to forge. Specified both in Ethereum blocks and timestamp
  2584. properties:
  2585. slotNum:
  2586. $ref: '#/components/schemas/SlotNum'
  2587. fromBlock:
  2588. $ref: '#/components/schemas/EthBlockNum'
  2589. toBlock:
  2590. $ref: '#/components/schemas/EthBlockNum'
  2591. fromTimestamp:
  2592. type: string
  2593. format: date-time
  2594. toTimestamp:
  2595. type: string
  2596. format: date-time
  2597. required:
  2598. - slotNum
  2599. - fromBlock
  2600. - toBlock
  2601. - fromTimestamp
  2602. - toTimestamp
  2603. additionalProperties: false
  2604. required:
  2605. - coordinator
  2606. - period
  2607. additionalProperties: false
  2608. NextForgers:
  2609. type: array
  2610. description: List of next coordinators to forge.
  2611. items:
  2612. $ref: '#/components/schemas/NextForger'
  2613. State:
  2614. type: object
  2615. description: Gobal variables of the network
  2616. properties:
  2617. network:
  2618. $ref: '#/components/schemas/StateNetwork'
  2619. metrics:
  2620. $ref: '#/components/schemas/StateMetrics'
  2621. rollup:
  2622. $ref: '#/components/schemas/StateRollup'
  2623. auction:
  2624. $ref: '#/components/schemas/StateAuction'
  2625. withdrawalDelayer:
  2626. $ref: '#/components/schemas/StateWithdrawDelayer'
  2627. recommendedFee:
  2628. $ref: '#/components/schemas/RecommendedFee'
  2629. additionalProperties: false
  2630. required:
  2631. - network
  2632. - metrics
  2633. - rollup
  2634. - auction
  2635. - withdrawalDelayer
  2636. - recommendedFee
  2637. StateNetwork:
  2638. type: object
  2639. description: Gobal statistics of the network
  2640. properties:
  2641. lastEthereumBlock:
  2642. allOf:
  2643. - $ref: '#/components/schemas/EthBlockNum'
  2644. - description: Current Etherum block. Note that this is the actual last block of Ethereum, not the last synchronized block by the node.
  2645. - example: 3457437
  2646. lastSynchedBlock:
  2647. allOf:
  2648. - $ref: '#/components/schemas/EthBlockNum'
  2649. - description: Last synchronized Etherum block. Compare with lastEthereumBlock to check the synchronization status of the node.
  2650. - example: 3457437
  2651. lastBatch:
  2652. $ref: '#/components/schemas/Batch'
  2653. currentSlot:
  2654. allOf:
  2655. - $ref: '#/components/schemas/SlotNum'
  2656. - description: Slot where batches are currently being forged.
  2657. - example: 2334
  2658. nextForgers:
  2659. $ref: '#/components/schemas/NextForgers'
  2660. additionalProperties: false
  2661. required:
  2662. - lastEthereumBlock
  2663. - lastSynchedBlock
  2664. - lastBatch
  2665. - currentSlot
  2666. - nextForgers
  2667. StateAuction:
  2668. type: object
  2669. description: Auction parameters.
  2670. properties:
  2671. ethereumBlockNum:
  2672. $ref: '#/components/schemas/EthBlockNum'
  2673. bootCoordinator:
  2674. allOf:
  2675. - $ref: '#/components/schemas/EthereumAddress'
  2676. - description: Ethereum address of the boot coordinator.
  2677. - example: "0x997dc4262BCDbf85190C01c996b4C06a461d2430"
  2678. bootCoordinatorUrl:
  2679. type: string
  2680. description: Boot Coordinator URL
  2681. example: "https://boot.coordinator.io"
  2682. slotDeadline:
  2683. type: integer
  2684. description: Number of blocks after the beginning of a slot after which any coordinator can forge if the winner has not forged any batch in that slot.
  2685. example: 3
  2686. closedAuctionSlots:
  2687. type: integer
  2688. description: Amount of slots between the current slot and the slot auction that is closed. Example if the value is 2, when slot 10 begins, the auction of the slot 12 gets closed.
  2689. example: 2
  2690. openAuctionSlots:
  2691. type: integer
  2692. description: Amount of days in advance are auctions opened.
  2693. defaultSlotSetBid:
  2694. type: array
  2695. description: "Initial minimal bid for each auction. Expressed as an array of 6 values. To calculate which value corresponds to each slot: `initialMinimalBidding[slotNum%6]`."
  2696. items:
  2697. type: integer
  2698. example: [32,0,68,21,55,99]
  2699. outbidding:
  2700. type: number
  2701. description: Minimum outbid over the previous one to consider it valid.
  2702. example: 3.64
  2703. donationAddress:
  2704. allOf:
  2705. - $ref: '#/components/schemas/EthereumAddress'
  2706. - description: Ethereum address where the donations will go to.
  2707. - example: "0x887dc4262BCDbf85190C01c996b4C06a461d2430"
  2708. allocationRatio:
  2709. type: array
  2710. description: Percentage in which fees will be split between donations, governance, and burning. The sum of the tree values should be 100.
  2711. items:
  2712. type: integer
  2713. example: [80,10,10]
  2714. additionalProperties: false
  2715. required:
  2716. - ethereumBlockNum
  2717. - bootCoordinator
  2718. - bootCoordinatorUrl
  2719. - slotDeadline
  2720. - closedAuctionSlots
  2721. - openAuctionSlots
  2722. - defaultSlotSetBid
  2723. - outbidding
  2724. - donationAddress
  2725. - allocationRatio
  2726. StateRollup:
  2727. type: object
  2728. description: Rollup parameters
  2729. properties:
  2730. ethereumBlockNum:
  2731. $ref: '#/components/schemas/EthBlockNum'
  2732. forgeL1L2BatchTimeout:
  2733. type: integer
  2734. description: Max Ethereum blocks after the last L1-L2-batch, when exceeds the timeout only L1-L2-batch are allowed.
  2735. example: 5
  2736. feeAddToken:
  2737. type: integer
  2738. description: Fee to pay when registering tokens into the network.
  2739. example: 5698
  2740. withdrawalDelay:
  2741. type: integer
  2742. description: Withdraw delay in seconds
  2743. example: 432000
  2744. buckets:
  2745. type: array
  2746. description: List of buckets state
  2747. items:
  2748. type: object
  2749. properties:
  2750. ceilUSD:
  2751. type: integer
  2752. description: Max USD value
  2753. example: 1000
  2754. withdrawals:
  2755. type: integer
  2756. description: Available withdrawals of the bucket
  2757. example: 4
  2758. blockWithdrawalRate:
  2759. type: integer
  2760. description: Every `blockWithdrawalRate` blocks add 1 withdrawal
  2761. example: 8
  2762. maxWithdrawals:
  2763. type: integer
  2764. description: Max withdrawals the bucket can hold
  2765. example: 4
  2766. additionalProperties: false
  2767. required:
  2768. - ceilUSD
  2769. - withdrawals
  2770. - blockWithdrawalRate
  2771. - maxWithdrawals
  2772. additionalProperties: false
  2773. required:
  2774. - ethereumBlockNum
  2775. - forgeL1L2BatchTimeout
  2776. - feeAddToken
  2777. - withdrawalDelay
  2778. - buckets
  2779. StateWithdrawDelayer:
  2780. type: object
  2781. description: Withdrawal delayer parameters
  2782. properties:
  2783. ethereumBlockNum:
  2784. $ref: '#/components/schemas/EthBlockNum'
  2785. hermezGovernanceAddress:
  2786. allOf:
  2787. - $ref: '#/components/schemas/EthereumAddress'
  2788. - description: Ethereum address of the governance.
  2789. - example: "0x667dc4262BCDbf85190C01c996b4C06a461d2430"
  2790. emergencyCouncilAddress:
  2791. allOf:
  2792. - $ref: '#/components/schemas/EthereumAddress'
  2793. - description: Ethereum address that can claim the funds in an emergency when the maximum emergency mode time is exceeded.
  2794. - example: "0x557dc4262BCDbf85190C01c996b4C06a461d2430"
  2795. withdrawalDelay:
  2796. allOf:
  2797. - $ref: '#/components/schemas/EthBlockNum'
  2798. - description: The time that everyone needs to wait until a withdrawal of the funds is allowed, in seconds.
  2799. - example: 539573849
  2800. emergencyModeStartingBlock:
  2801. type: integer
  2802. description: Block number in which the emergency mode has been activated.
  2803. example: 10
  2804. emergencyMode:
  2805. type: boolean
  2806. description: Indicates if emergency mode has been activated.
  2807. example: false
  2808. additionalProperties: false
  2809. required:
  2810. - ethereumBlockNum
  2811. - hermezGovernanceAddress
  2812. - emergencyCouncilAddress
  2813. - withdrawalDelay
  2814. - emergencyModeStartingBlock
  2815. - emergencyMode
  2816. StateMetrics:
  2817. type: object
  2818. description: Metrics of the network
  2819. properties:
  2820. transactionsPerBatch:
  2821. type: number
  2822. description: Average transactions per batch in the last 24 hours.
  2823. example: 2002.7
  2824. batchFrequency:
  2825. type: number
  2826. description: Average elapsed time between batches in the last 24 hours, in seconds.
  2827. example: 8.9
  2828. transactionsPerSecond:
  2829. type: number
  2830. description: Average transactions per second in the last 24 hours.
  2831. example: 302.3
  2832. totalAccounts:
  2833. type: integer
  2834. description: Number of created accounts.
  2835. example: 90473
  2836. totalBJJs:
  2837. type: integer
  2838. description: Number of different registered BJJs.
  2839. example: 23067
  2840. avgTransactionFee:
  2841. type: number
  2842. description: Average fee percentage paid for L2 transactions in the last 24 hours.
  2843. example: 1.54
  2844. additionalProperties: false
  2845. required:
  2846. - transactionsPerBatch
  2847. - batchFrequency
  2848. - transactionsPerSecond
  2849. - totalAccounts
  2850. - totalBJJs
  2851. - avgTransactionFee
  2852. PendingItems:
  2853. type: integer
  2854. description: Amount of items that will be returned in subsequent calls to the endpoint, as long as they are done with same filters. When the value is 0 it means that all items have been sent.
  2855. example: 15
  2856. Config:
  2857. type: object
  2858. description: Configuration parameters of the different smart contracts that power the Hermez Network.
  2859. properties:
  2860. hermez:
  2861. type: object
  2862. description: Constant configuration of the Hermez smart contract.
  2863. properties:
  2864. publicConstants:
  2865. type: object
  2866. description: Public Hermez smart contract constants
  2867. properties:
  2868. tokenHEZ:
  2869. allOf:
  2870. - $ref: '#/components/schemas/EthereumAddress'
  2871. - description: Ethereum address of the HEZ token.
  2872. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2873. absoluteMaxL1L2BatchTimeout:
  2874. type: integer
  2875. description: L1L2 Batch Timeout
  2876. example: 240
  2877. verifiers:
  2878. type: array
  2879. description: List of verifiers struct
  2880. items:
  2881. type: object
  2882. properties:
  2883. maxTx:
  2884. type: integer
  2885. description: Maximum rollup transactions in a batch
  2886. example: 512
  2887. nlevels:
  2888. type: integer
  2889. description: Number of levels of the circuit
  2890. example: 32
  2891. required:
  2892. - maxTx
  2893. - nlevels
  2894. additionalProperties: false
  2895. hermezAuctionContract:
  2896. allOf:
  2897. - $ref: '#/components/schemas/EthereumAddress'
  2898. - description: Ethereum address of the auction smart contract.
  2899. - example: "0x111dc4262BCDbf85190C01c996b4C06a461d2430"
  2900. hermezGovernanceAddress:
  2901. allOf:
  2902. - $ref: '#/components/schemas/EthereumAddress'
  2903. - description: Ethereum address of the governance.
  2904. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2905. withdrawDelayerContract:
  2906. allOf:
  2907. - $ref: '#/components/schemas/EthereumAddress'
  2908. - description: Ethereum address of the withdraw delayer contracts.
  2909. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2910. required:
  2911. - tokenHEZ
  2912. - absoluteMaxL1L2BatchTimeout
  2913. - verifiers
  2914. - hermezAuctionContract
  2915. - hermezGovernanceAddress
  2916. - withdrawDelayerContract
  2917. additionalProperties: false
  2918. maxFeeIdxCoordinator:
  2919. type: integer
  2920. description: is the maximum number of tokens the coordinator can use to collect fees.
  2921. example: 64
  2922. reservedIdx:
  2923. type: integer
  2924. description: First 256 indexes reserved, first user index will be the 256.
  2925. example: 255
  2926. exitIdx:
  2927. type: integer
  2928. description: Account index used to indicate that a transaction is an `exit` or `force exit`.
  2929. example: 1
  2930. limitDepositAmount:
  2931. type: integer
  2932. description: Maximum deposit amount (L1 to L2) allowed.
  2933. example: 321
  2934. limitL2TransferAmount:
  2935. type: integer
  2936. description: Maximum amount (L2 to L2) allowed.
  2937. example: 837
  2938. limitTokens:
  2939. type: integer
  2940. description: Maximum number of different tokens that can be registered in the network.
  2941. example: 4294967295
  2942. l1CoordinatorTotalBytes:
  2943. type: integer
  2944. description: Number of bytes that a L1 coordinator transaction has ([4 bytes] token + [32 bytes] babyjub + [65 bytes] compressedSignature).
  2945. example: 101
  2946. l1UserTotalBytes:
  2947. type: integer
  2948. description: Number of bytes that a L1 user transaction has ([20 bytes] fromEthAddr + [32 bytes] fromBjj-compressed + [6 bytes] fromIdx + [2 bytes] depositAmountFloat16 + [2 bytes] amountFloat16 + [4 bytes] tokenId + [6 bytes] toIdx).
  2949. example: 72
  2950. maxL1UserTx:
  2951. type: integer
  2952. description: Maximum L1-user transactions allowed to be queued in a batch.
  2953. example: 128
  2954. maxL1Tx:
  2955. type: integer
  2956. description: Maximum L1 transactions allowed to be queued in a batch.
  2957. example: 256
  2958. inputSHAConstantBytes:
  2959. type: integer
  2960. description: Input SHA constant bytes
  2961. example: 18542
  2962. numBuckets:
  2963. type: integer
  2964. description: Number of buckets
  2965. example: 5
  2966. maxWithdrawalDelay:
  2967. type: integer
  2968. description: Maximum delay to withdraw tokens. Time is measured in seconds.
  2969. example: 2 * 7 * 24 * 60 * 60
  2970. exchangeMultiplier:
  2971. type: integer
  2972. description: exchange multiplier
  2973. example: 1e14
  2974. required:
  2975. - publicConstants
  2976. - reservedIdx
  2977. - exitIdx
  2978. - limitDepositAmount
  2979. - limitL2TransferAmount
  2980. - limitTokens
  2981. - l1CoordinatorTotalBytes
  2982. - l1UserTotalBytes
  2983. - maxL1UserTx
  2984. - maxL1Tx
  2985. - inputSHAConstantBytes
  2986. - numBuckets
  2987. - maxWithdrawalDelay
  2988. - exchangeMultiplier
  2989. additionalProperties: false
  2990. auction:
  2991. type: object
  2992. description: Constant configuration of the auction smart contract.
  2993. properties:
  2994. blocksPerSlot:
  2995. type: integer
  2996. description: Blocks per slot.
  2997. initialMinimalBidding:
  2998. type: integer
  2999. description: Minimum bid when no one has bid yet.
  3000. genesisBlockNum:
  3001. allOf:
  3002. - $ref: '#/components/schemas/EthBlockNum'
  3003. - description: Ethereum block number in which the smart contract starts operating.
  3004. tokenHEZ:
  3005. allOf:
  3006. - $ref: '#/components/schemas/EthereumAddress'
  3007. - description: Ethereum address of the HEZ token.
  3008. - example: "0x333dc4262BCDbf85190C01c996b4C06a461d2430"
  3009. hermezRollup:
  3010. allOf:
  3011. - $ref: '#/components/schemas/EthereumAddress'
  3012. - description: Ethereum address of the rollup smart contract.
  3013. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  3014. governanceAddress:
  3015. allOf:
  3016. - $ref: '#/components/schemas/EthereumAddress'
  3017. - description: Ethereum address of the governance.
  3018. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  3019. required:
  3020. - blocksPerSlot
  3021. - initialMinimalBidding
  3022. - genesisBlockNum
  3023. - tokenHEZ
  3024. - hermezRollup
  3025. - governanceAddress
  3026. additionalProperties: false
  3027. withdrawalDelayer:
  3028. type: object
  3029. description: Constant configuration of the withdrawal delayer smart contract.
  3030. properties:
  3031. maxWithdrawalDelay:
  3032. type: integer
  3033. description: Maximum time delay in which the tokens can be locked in the contract. Time is measured in seconds.
  3034. example: 200
  3035. maxEmergencyModeTime:
  3036. type: integer
  3037. description: Maximum amount of time in which the contract can be in emergency mode. Time is measured in seconds.
  3038. example: 2000
  3039. hermezRollup:
  3040. allOf:
  3041. - $ref: '#/components/schemas/EthereumAddress'
  3042. - description: Ethereum address of the rollup smart contract.
  3043. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  3044. required:
  3045. - maxWithdrawalDelay
  3046. - maxEmergencyModeTime
  3047. - hermezRollup
  3048. additionalProperties: false
  3049. required:
  3050. - hermez
  3051. - auction
  3052. - withdrawalDelayer
  3053. additionalProperties: false
  3054. Error:
  3055. type: object
  3056. description: Error response.
  3057. properties:
  3058. message:
  3059. type: string
  3060. Error400:
  3061. allOf:
  3062. - $ref: '#/components/schemas/Error'
  3063. - example:
  3064. message: Invalid signature.
  3065. Error404:
  3066. allOf:
  3067. - $ref: '#/components/schemas/Error'
  3068. - example:
  3069. message: Item(s) not found.
  3070. Error500:
  3071. allOf:
  3072. - $ref: '#/components/schemas/Error'
  3073. - example:
  3074. message: Database error.