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.

3016 lines
105 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 chronologicaly. 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 safetyness
  22. Since all the items are ordered chronologicaly, 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 queryng 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: http://167.71.59.190:4010
  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 to 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: Get to know if the coordinator has the ability to create accounts associated to 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 accounts 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 a 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 to 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 to 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: maxSlothNum
  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: fromItem
  1135. in: query
  1136. required: false
  1137. description: Indicates the desired first item (using the itemId property) to be included in the response.
  1138. schema:
  1139. type: number
  1140. - name: order
  1141. in: query
  1142. required: false
  1143. description: Order of the returned items. Coordinators will be ordered by increasing (ethereumBlock, forgerAddr).
  1144. schema:
  1145. type: string
  1146. default: ASC
  1147. enum:
  1148. - ASC
  1149. - DESC
  1150. - name: limit
  1151. in: query
  1152. required: false
  1153. description: Maximum number of items to be returned.
  1154. schema:
  1155. type: integer
  1156. minimum: 1
  1157. maximum: 2049
  1158. responses:
  1159. '200':
  1160. description: Successful operation.
  1161. content:
  1162. application/json:
  1163. schema:
  1164. $ref: '#/components/schemas/Coordinators'
  1165. '400':
  1166. description: Bad request.
  1167. content:
  1168. application/json:
  1169. schema:
  1170. $ref: '#/components/schemas/Error400'
  1171. '500':
  1172. description: Internal server error.
  1173. content:
  1174. application/json:
  1175. schema:
  1176. $ref: '#/components/schemas/Error500'
  1177. '/coordinators/{bidderAddr}':
  1178. get:
  1179. tags:
  1180. - Hermez status
  1181. summary: Get the information of a coordinator.
  1182. description: Get the information of a coordinator.
  1183. operationId: getCoordinator
  1184. parameters:
  1185. - name: bidderAddr
  1186. in: path
  1187. description: Coordinator identifier
  1188. required: true
  1189. schema:
  1190. $ref: '#/components/schemas/EthereumAddress'
  1191. responses:
  1192. '200':
  1193. description: Successful operation.
  1194. content:
  1195. application/json:
  1196. schema:
  1197. $ref: '#/components/schemas/Coordinator'
  1198. '400':
  1199. description: Bad request.
  1200. content:
  1201. application/json:
  1202. schema:
  1203. $ref: '#/components/schemas/Error400'
  1204. '404':
  1205. description: Not found.
  1206. content:
  1207. application/json:
  1208. schema:
  1209. $ref: '#/components/schemas/Error404'
  1210. '500':
  1211. description: Internal server error.
  1212. content:
  1213. application/json:
  1214. schema:
  1215. $ref: '#/components/schemas/Error500'
  1216. components:
  1217. schemas:
  1218. ItemId:
  1219. type: integer
  1220. description: Position of the item in the DB. This is useful for pagination, but has nothing to do with the protocol.
  1221. PostPoolL2Transaction:
  1222. type: object
  1223. description: L2 transaction to be posted.
  1224. properties:
  1225. id:
  1226. $ref: '#/components/schemas/TransactionId'
  1227. type:
  1228. $ref: '#/components/schemas/TransactionTypeL2'
  1229. tokenId:
  1230. $ref: '#/components/schemas/TokenId'
  1231. fromAccountIndex:
  1232. $ref: '#/components/schemas/AccountIndex'
  1233. toAccountIndex:
  1234. type: string
  1235. description: >-
  1236. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1237. The identifier is built using: `hez:` + `token symbol:` + `index`. If this is provided, toHezEthereumAddress and toBjj
  1238. must be null. To perform an exit the value hez:EXIT:1 must be used.
  1239. example: null
  1240. nullable: true
  1241. toHezEthereumAddress:
  1242. type: string
  1243. description: "Address of an Etherum account linked to the Hermez network. If this is provided, toAccountIndex and toBjj must be null."
  1244. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1245. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1246. nullable: true
  1247. toBjj:
  1248. type: string
  1249. description: >-
  1250. 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.
  1251. If this is prvided, toAccountIndex must be null and toHezEthereumAddress must be hez:0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.
  1252. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1253. example: null
  1254. nullable: true
  1255. amount:
  1256. allOf:
  1257. - $ref: '#/components/schemas/BigInt'
  1258. - description: Amount of tokens to be sent.
  1259. example: "6300000000000000000"
  1260. fee:
  1261. $ref: '#/components/schemas/FeeSelector'
  1262. nonce:
  1263. $ref: '#/components/schemas/Nonce'
  1264. signature:
  1265. allOf:
  1266. - $ref: '#/components/schemas/BJJSignature'
  1267. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1268. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1269. requestFromAccountIndex:
  1270. type: string
  1271. description: References the `fromAccountIndex` of the requested transaction.
  1272. example: null
  1273. nullable: true
  1274. requestToAccountIndex:
  1275. type: string
  1276. description: References the `toAccountIndex` of the requested transaction.
  1277. example: null
  1278. nullable: true
  1279. requestToHezEthereumAddress:
  1280. type: string
  1281. description: References the `toHezEthereumAddress` of the requested transaction.
  1282. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1283. example: null
  1284. nullable: true
  1285. requestToBjj:
  1286. type: string
  1287. description: References the `toBjj` of the requested transaction.
  1288. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1289. example: null
  1290. nullable: true
  1291. requestTokenId:
  1292. type: integer
  1293. description: References the `tokenId` of the requested transaction.
  1294. example: null
  1295. nullable: true
  1296. requestAmount:
  1297. type: string
  1298. description: References the `amount` of the requested transaction.
  1299. example: null
  1300. nullable: true
  1301. requestFee:
  1302. type: integer
  1303. description: References the `fee` of the requested transaction.
  1304. example: null
  1305. nullable: true
  1306. requestNonce:
  1307. type: integer
  1308. description: References the `nonce` of the requested transaction.
  1309. example: null
  1310. nullable: true
  1311. example:
  1312. id: '0x020000000001000000000006'
  1313. type: Transfer
  1314. tokenId: 6
  1315. fromAccountIndex: hez:DAI:256
  1316. toAccountIndex: hez:DAI:257
  1317. toHezEthereumAddress:
  1318. toBjj:
  1319. amount: '100000000000000'
  1320. fee: 0
  1321. nonce: 6
  1322. signature: 1a79dd5e661d58266901a0de8afb046b466c4c1af937100f627a421771f2911fa3fde8ea2e272b4802a8b1f1229689292acd6f7e8ab4cadc4ab37b6b9e13a101
  1323. additionalProperties: false
  1324. required:
  1325. - id
  1326. - type
  1327. - tokenId
  1328. - fromAccountIndex
  1329. - amount
  1330. - fee
  1331. - nonce
  1332. - signature
  1333. PoolL2Transaction:
  1334. type: object
  1335. properties:
  1336. id:
  1337. $ref: '#/components/schemas/TransactionId'
  1338. type:
  1339. $ref: '#/components/schemas/TransactionTypeL2'
  1340. fromAccountIndex:
  1341. $ref: '#/components/schemas/AccountIndex'
  1342. fromHezEthereumAddress:
  1343. type: string
  1344. description: "Address of an Etherum account linked to the Hermez network."
  1345. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1346. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1347. nullable: true
  1348. fromBJJ:
  1349. type: string
  1350. 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."
  1351. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1352. example: "hez:9CK9fjQdMUTGm8KDvGLy3MB-vnP0NCcGX7Uh7OO6KRJm"
  1353. nullable: true
  1354. toAccountIndex:
  1355. type: string
  1356. description: >-
  1357. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1358. The identifier is built using: `hez:` + `token symbol:` + `index`
  1359. example: "hez:DAI:309"
  1360. nullable: true
  1361. toHezEthereumAddress:
  1362. type: string
  1363. description: "Address of an Etherum account linked to the Hermez network."
  1364. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1365. example: null
  1366. nullable: true
  1367. toBjj:
  1368. type: string
  1369. 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."
  1370. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1371. example: null
  1372. nullable: true
  1373. amount:
  1374. allOf:
  1375. - $ref: '#/components/schemas/BigInt'
  1376. - description: Amount of tokens to be sent.
  1377. example: "6303020000000000000"
  1378. fee:
  1379. $ref: '#/components/schemas/FeeSelector'
  1380. nonce:
  1381. $ref: '#/components/schemas/Nonce'
  1382. state:
  1383. $ref: '#/components/schemas/PoolL2TransactionState'
  1384. signature:
  1385. allOf:
  1386. - $ref: '#/components/schemas/BJJSignature'
  1387. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1388. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1389. timestamp:
  1390. type: string
  1391. description: Moment in which the transaction was added to the pool.
  1392. format: date-time
  1393. batchNum:
  1394. type: integer
  1395. description: Identifier of a batch. Every new forged batch increments by one the batchNum, starting at 0.
  1396. minimum: 0
  1397. maximum: 4294967295
  1398. nullable: true
  1399. example: null
  1400. requestFromAccountIndex:
  1401. type: string
  1402. description: >-
  1403. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1404. The identifier is built using: `hez:` + `token symbol:` + `index`
  1405. nullable: true
  1406. example: null
  1407. requestToAccountIndex:
  1408. type: string
  1409. description: >-
  1410. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1411. The identifier is built using: `hez:` + `token symbol:` + `index`
  1412. nullable: true
  1413. example: null
  1414. requestToHezEthereumAddress:
  1415. type: string
  1416. description: "Address of an Etherum account linked to the Hermez network."
  1417. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1418. nullable: true
  1419. example: null
  1420. requestToBJJ:
  1421. type: string
  1422. 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."
  1423. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1424. nullable: true
  1425. example: null
  1426. requestTokenId:
  1427. type: integer
  1428. description: References the `tokenId` of the requested transaction.
  1429. example: null
  1430. nullable: true
  1431. requestAmount:
  1432. type: string
  1433. description: BigInt is an integer encoded as a string for numbers that are very large.
  1434. nullable: true
  1435. example: null
  1436. requestFee:
  1437. type: integer
  1438. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1439. minimum: 0
  1440. maximum: 256
  1441. nullable: true
  1442. example: null
  1443. requestNonce:
  1444. type: integer
  1445. description: Number that can only be used once per account. Increments by one with each transaction.
  1446. minimum: 0
  1447. maximum: 1.84467440737096e+19
  1448. nullable: true
  1449. example: null
  1450. token:
  1451. $ref: '#/components/schemas/Token'
  1452. example:
  1453. amount: '100000000000000'
  1454. batchNum:
  1455. fee: 0
  1456. fromAccountIndex: hez:SCC:256
  1457. fromBJJ: hez:r_trOasVEk0zNaalOoS9aLedu6mO7jI5XTIPu_zGXoyn
  1458. fromHezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  1459. id: '0x020000000001000000000006'
  1460. nonce: 6
  1461. requestAmount:
  1462. requestFee: 0
  1463. requestFromAccountIndex:
  1464. requestNonce: 0
  1465. requestToAccountIndex:
  1466. requestToBJJ:
  1467. requestToHezEthereumAddress:
  1468. requestTokenId:
  1469. signature: 5ee9c7b5baa243ba282d18596a55cc357b01513eaed75165365f802102cce4a7a1dd35e3ab31cf9039e2b8a9f570d935115be9379a3dd47813dfc014031ab201
  1470. state: pend
  1471. timestamp: '2020-11-17T13:58:54.422232Z'
  1472. toAccountIndex: hez:SCC:257
  1473. toBjj: hez:r_trOasVEk0zNaalOoS9aLedu6mO7jI5XTIPu_zGXoyn
  1474. toHezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  1475. token:
  1476. USD: 23.74
  1477. decimals: 7
  1478. ethereumAddress: '0x0000000000000000000000000000000000000006'
  1479. ethereumBlockNum: 2
  1480. fiatUpdate:
  1481. id: 6
  1482. itemId: 7
  1483. name: Some Cool Coin
  1484. symbol: 'SCC'
  1485. type: Transfer
  1486. required:
  1487. - id
  1488. - type
  1489. - fromAccountIndex
  1490. - fromHezEthereumAddress
  1491. - fromBJJ
  1492. - toAccountIndex
  1493. - toHezEthereumAddress
  1494. - toBjj
  1495. - amount
  1496. - fee
  1497. - nonce
  1498. - state
  1499. - signature
  1500. - timestamp
  1501. - batchNum
  1502. - requestFromAccountIndex
  1503. - requestToAccountIndex
  1504. - requestToHezEthereumAddress
  1505. - requestToBJJ
  1506. - requestTokenId
  1507. - requestAmount
  1508. - requestFee
  1509. - requestNonce
  1510. - token
  1511. TransactionId:
  1512. type: string
  1513. 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)
  1514. example: "0x00000000000001e240004700"
  1515. EthereumAddress:
  1516. type: string
  1517. description: "Address of an Etherum account."
  1518. pattern: "^0x[a-fA-F0-9]{40}$"
  1519. example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1520. HezEthereumAddress:
  1521. type: string
  1522. description: "Address of an Etherum account linked to the Hermez network."
  1523. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1524. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1525. BJJ:
  1526. type: string
  1527. 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."
  1528. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1529. example: "hez:rR7LXKal-av7I56Y0dEBCVmwc9zpoLY5ERhy5w7G-xwe"
  1530. AccountIndex:
  1531. type: string
  1532. description: >-
  1533. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1534. The identifier is built using: `hez:` + `token symbol:` + `index`
  1535. example: "hez:DAI:4444"
  1536. TransactionType:
  1537. type: string
  1538. description: Type of transaction.
  1539. enum:
  1540. - Exit
  1541. - Transfer
  1542. - Deposit
  1543. - CreateAccountDeposit
  1544. - CreateAccountDepositTransfer
  1545. - DepositTransfer
  1546. - ForceTransfer
  1547. - ForceExit
  1548. - TransferToEthAddr
  1549. - TransferToBJJ
  1550. TransactionTypeL2:
  1551. type: string
  1552. description: Type of transaction.
  1553. enum:
  1554. - Exit
  1555. - Transfer
  1556. - TransferToEthAddr
  1557. - TransferToBJJ
  1558. TokenId:
  1559. type: integer
  1560. description: Identifier of a token registered in the network.
  1561. minimum: 0
  1562. maximum: 4294967295
  1563. example: 98765
  1564. BigInt:
  1565. type: string
  1566. description: BigInt is an integer encoded as a string for numbers that are very large.
  1567. example: "8708856933496328593"
  1568. pattern: "^\\d+$"
  1569. FeeSelector:
  1570. type: integer
  1571. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1572. minimum: 0
  1573. maximum: 256
  1574. example: 36
  1575. Nonce:
  1576. type: integer
  1577. description: Number that can only be used once per account, increments by one at each transaction.
  1578. minimum: 0
  1579. maximum: 1.84467440737096e+19
  1580. example: 121
  1581. PoolL2TransactionState:
  1582. type: string
  1583. description: >
  1584. State of a L2 transaction from the coordinator pool.
  1585. * pend: Pending
  1586. * fing: Forging
  1587. * fged: Forged
  1588. * invl: Invalid
  1589. enum:
  1590. - pend
  1591. - fing
  1592. - fged
  1593. - invl
  1594. ETHSignature:
  1595. type: string
  1596. description: Ethereum signature.
  1597. pattern: "^0x[a-fA-F0-9]{130}$"
  1598. example: "0xf9161cd688394772d93aa3e7b3f8f9553ca4f94f65b7cece93ed4a239d5c0b4677dca6d1d459e3a5c271a34de735d4664a43e5a8960a9a6e027d12c562dd448e1c"
  1599. BJJSignature:
  1600. type: string
  1601. description: BabyJubJub compressed signature.
  1602. pattern: "^[a-fA-F0-9]{128}$"
  1603. example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1604. BatchNum:
  1605. type: integer
  1606. description: Identifier of a batch. Every new forged batch increments by one the batchNum, starting at 0.
  1607. minimum: 0
  1608. maximum: 4294967295
  1609. example: 5432
  1610. AccountCreationAuthorizationPost:
  1611. type: object
  1612. properties:
  1613. hezEthereumAddress:
  1614. $ref: '#/components/schemas/HezEthereumAddress'
  1615. bjj:
  1616. $ref: '#/components/schemas/BJJ'
  1617. signature:
  1618. $ref: '#/components/schemas/ETHSignature'
  1619. example:
  1620. hezEthereumAddress: hez:0xb5270eB4ae11c6fAAff6F5fa0A5202B8d963634C
  1621. bjj: hez:hg2Ydsb8O66H-steBR3cnHl944ua7E-PkTJ_SbPBBg5r
  1622. signature: '0xb7cf237c4a2ff3d4df57752e7b9deb236fa384f03a79d39acf17ec5f8d12a3cf00b017c2466611310cb2bacac68460e96778278646842c6d2bcb79979271c28501'
  1623. required:
  1624. - hezEthereumAddress
  1625. - bjj
  1626. - signature
  1627. AccountCreationAuthorization:
  1628. type: object
  1629. properties:
  1630. timestamp:
  1631. type: string
  1632. format: date-time
  1633. hezEthereumAddress:
  1634. $ref: '#/components/schemas/HezEthereumAddress'
  1635. bjj:
  1636. $ref: '#/components/schemas/BJJ'
  1637. signature:
  1638. $ref: '#/components/schemas/ETHSignature'
  1639. example:
  1640. hezEthereumAddress: hez:0x74a549b410d01d9eC56346aE52b8550515B283b2
  1641. bjj: hez:dEZ-Tj7d5h0TAqbnRTTYURYDEo5KZzB87_2WknUU8gCN
  1642. signature: '0x8db6db2ad6cbe21297fb8ee01c59b01b52d4df7ea92a0f0dee0be0075a8f224a06b367407c8f402cfe0490c142a1c92da3fc29b51162ae160d35e1577d3071bb01'
  1643. timestamp: '2020-11-17T13:25:36.784295Z'
  1644. additionalProperties: false
  1645. required:
  1646. - timestamp
  1647. - hezEthereumAddress
  1648. - bjj
  1649. - signature
  1650. HistoryTransaction:
  1651. type: object
  1652. description: Transaction of the Hermez network
  1653. properties:
  1654. L1orL2:
  1655. type: string
  1656. enum:
  1657. - L1
  1658. - L2
  1659. id:
  1660. $ref: '#/components/schemas/TransactionId'
  1661. itemId:
  1662. $ref: '#/components/schemas/ItemId'
  1663. type:
  1664. $ref: '#/components/schemas/TransactionType'
  1665. position:
  1666. $ref: '#/components/schemas/TransactionPosition'
  1667. fromAccountIndex:
  1668. type: string
  1669. description: >-
  1670. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1671. The identifier is built using: `hez:` + `token symbol:` + `index`
  1672. example: "hez:DAI:4444"
  1673. nullable: true
  1674. fromHezEthereumAddress:
  1675. type: string
  1676. description: "Address of an Etherum account linked to the Hermez network."
  1677. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1678. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1679. nullable: true
  1680. fromBJJ:
  1681. type: string
  1682. 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."
  1683. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1684. example: "hez:9CK9fjQdMUTGm8KDvGLy3MB-vnP0NCcGX7Uh7OO6KRJm"
  1685. nullable: true
  1686. toAccountIndex:
  1687. allOf:
  1688. - $ref: '#/components/schemas/AccountIndex'
  1689. - example: "hez:DAI:672"
  1690. toHezEthereumAddress:
  1691. type: string
  1692. description: "Address of an Etherum account linked to the Hermez network."
  1693. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1694. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1695. nullable: true
  1696. toBJJ:
  1697. type: string
  1698. 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."
  1699. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1700. example: "hez:f1J78_6uqTyjX6jrVCqN4RFeRBnWQAGl477ZFtOnH6Sm"
  1701. nullable: true
  1702. amount:
  1703. allOf:
  1704. - $ref: '#/components/schemas/BigInt'
  1705. - description: Amount of tokens to be sent.
  1706. - example: "4903020000000000000"
  1707. batchNum:
  1708. type: integer
  1709. description: Batch in which the transaction was forged. Null indicates not forged yet.
  1710. minimum: 0
  1711. maximum: 4294967295
  1712. example: 5432
  1713. nullable: true
  1714. historicUSD:
  1715. type: number
  1716. description: Value in USD at the moment the transaction was forged.
  1717. example: 49.7
  1718. nullable: true
  1719. timestamp:
  1720. type: string
  1721. format: date-time
  1722. 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.
  1723. token:
  1724. $ref: '#/components/schemas/Token'
  1725. L1Info:
  1726. type: object
  1727. description: Additional information that only applies to L1 transactions.
  1728. nullable: true
  1729. properties:
  1730. toForgeL1TransactionsNum:
  1731. $ref: '#/components/schemas/ToForgeL1TransactionsNum'
  1732. userOrigin:
  1733. type: boolean
  1734. description: True if the transaction was sent by a user. False if it was sent by a coordinator.
  1735. loadAmount:
  1736. allOf:
  1737. - $ref: '#/components/schemas/BigInt'
  1738. - description: Tokens transfered from L1 to L2.
  1739. - example: "4900000000000000000"
  1740. historicLoadAmountUSD:
  1741. type: number
  1742. description: Load amount in USD, at the moment the transaction was made.
  1743. example: 3.897
  1744. nullable: true
  1745. ethereumBlockNum:
  1746. allOf:
  1747. - $ref: '#/components/schemas/EthBlockNum'
  1748. - description: Ethereum block in which the transaction was added to the smart contract forge queue.
  1749. - example: 258723049
  1750. required:
  1751. - toForgeL1TransactionsNum
  1752. - userOrigin
  1753. - loadAmount
  1754. - historicLoadAmountUSD
  1755. - ethereumBlockNum
  1756. additionalProperties: false
  1757. L2Info:
  1758. type: object
  1759. description: Additional information that only applies to L2 transactions.
  1760. nullable: true
  1761. properties:
  1762. fee:
  1763. $ref: '#/components/schemas/FeeSelector'
  1764. historicFeeUSD:
  1765. type: number
  1766. description: Fee in USD, at the moment the transaction was forged.
  1767. example: 263.89
  1768. nullable: true
  1769. nonce:
  1770. $ref: '#/components/schemas/Nonce'
  1771. example: null
  1772. required:
  1773. - fee
  1774. - historicFeeUSD
  1775. - nonce
  1776. additionalProperties: false
  1777. example:
  1778. L1Info:
  1779. ethereumBlockNum: 1
  1780. historicLoadAmountUSD: 232.47
  1781. loadAmount: '261'
  1782. toForgeL1TransactionsNum: 10
  1783. userOrigin: true
  1784. L1orL2: L1
  1785. L2Info:
  1786. amount: '261'
  1787. batchNum: 1
  1788. fromAccountIndex: hez:ETH:276
  1789. fromBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1790. fromHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1791. historicUSD: 3784.19
  1792. id: '0x00000000000000000a000400'
  1793. itemId: 2
  1794. position: 4
  1795. timestamp: '2020-11-17T14:08:12.197554Z'
  1796. toAccountIndex: hez:ETH:276
  1797. toBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1798. toHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1799. token:
  1800. USD: 234.56
  1801. decimals: 18
  1802. ethereumAddress: '0x0000000000000000000000000000000000000000'
  1803. ethereumBlockNum: 0
  1804. fiatUpdate:
  1805. id: 0
  1806. itemId: 1
  1807. name: Ether
  1808. symbol: ETH
  1809. type: CreateAccountDeposit
  1810. required:
  1811. - L1orL2
  1812. - id
  1813. - itemId
  1814. - type
  1815. - position
  1816. - fromAccountIndex
  1817. - fromHezEthereumAddress
  1818. - fromBJJ
  1819. - toAccountIndex
  1820. - toHezEthereumAddress
  1821. - toBJJ
  1822. - amount
  1823. - batchNum
  1824. - historicUSD
  1825. - timestamp
  1826. - token
  1827. - L1Info
  1828. - L2Info
  1829. additionalProperties: false
  1830. HistoryTransactions:
  1831. type: object
  1832. properties:
  1833. transactions:
  1834. type: array
  1835. description: List of history transactions.
  1836. items:
  1837. $ref: '#/components/schemas/HistoryTransaction'
  1838. pendingItems:
  1839. $ref: '#/components/schemas/PendingItems'
  1840. example:
  1841. transactions:
  1842. - L1Info:
  1843. L1orL2: L2
  1844. L2Info:
  1845. fee: 44
  1846. historicFeeUSD: 0.01
  1847. nonce: 301
  1848. amount: '301'
  1849. batchNum: 1
  1850. fromAccountIndex: hez:SCC:276
  1851. fromBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1852. fromHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1853. historicUSD: 44.72
  1854. id: '0x02000000000000000000002c'
  1855. itemId: 1
  1856. position: 4
  1857. timestamp: '2020-11-17T14:08:12.197554Z'
  1858. toAccountIndex: hez:6:276
  1859. toBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1860. toHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1861. token:
  1862. USD: 3478.67
  1863. decimals: 7
  1864. ethereumAddress: '0x0000000000000000000000000000000000000006'
  1865. ethereumBlockNum: 2
  1866. fiatUpdate:
  1867. id: 6
  1868. itemId: 7
  1869. name: Some Cool Coin
  1870. symbol: 'SCC'
  1871. type: Deposit
  1872. - L1Info:
  1873. ethereumBlockNum: 1
  1874. historicLoadAmountUSD: 269
  1875. loadAmount: '261'
  1876. toForgeL1TransactionsNum: 10
  1877. userOrigin: true
  1878. L1orL2: L1
  1879. L2Info:
  1880. amount: '261'
  1881. batchNum: 1
  1882. fromAccountIndex: hez:ETH:276
  1883. fromBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1884. fromHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1885. historicUSD:
  1886. id: '0x00000000000000000a000400'
  1887. itemId: 2
  1888. position: 4
  1889. timestamp: '2020-11-17T14:08:12.197554Z'
  1890. toAccountIndex: hez:ETH:276
  1891. toBJJ: hez:p_OohTzjzZnD3Sw93HQlK13DSxfD6lyvbfhh2kBsV6Z4
  1892. toHezEthereumAddress: hez:0x0000000000000000000000000000000000000114
  1893. token:
  1894. USD: 734.21
  1895. decimals: 18
  1896. ethereumAddress: '0x0000000000000000000000000000000000000000'
  1897. ethereumBlockNum: 0
  1898. fiatUpdate:
  1899. id: 0
  1900. itemId: 1
  1901. name: Ether
  1902. symbol: ETH
  1903. type: CreateAccountDeposit
  1904. pendingItems: 38
  1905. required:
  1906. - transactions
  1907. - pendingItems
  1908. additionalProperties: false
  1909. EthBlockNum:
  1910. type: integer
  1911. description: Ethereum block number
  1912. minimum: 0
  1913. maximum: 1.84467440737096e+19
  1914. example: 762375478
  1915. ToForgeL1TransactionsNum:
  1916. type: integer
  1917. description: Reference to know in which batch a L1 transaction was forged / will be forged.
  1918. minimum: 0
  1919. maximum: 4294967295
  1920. example: 784
  1921. nullable: true
  1922. TransactionPosition:
  1923. type: integer
  1924. description: Position that a transaction occupies in a batch.
  1925. minimum: 0
  1926. example: 5
  1927. URL:
  1928. type: string
  1929. description: HTTP URL
  1930. example: "https://hermez.io"
  1931. TokenSymbol:
  1932. type: string
  1933. description: Abreviation of the token name.
  1934. example: "DAI"
  1935. TokenName:
  1936. type: string
  1937. description: Token name.
  1938. example: "Dai"
  1939. CollectedFees:
  1940. type: object
  1941. 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.
  1942. additionalProperties:
  1943. type: string
  1944. example:
  1945. 1234: "425632785672345647"
  1946. 4321: "86538967235465432654352"
  1947. Batch:
  1948. type: object
  1949. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  1950. properties:
  1951. itemId:
  1952. $ref: '#/components/schemas/ItemId'
  1953. batchNum:
  1954. $ref: '#/components/schemas/BatchNum'
  1955. ethereumBlockNum:
  1956. $ref: '#/components/schemas/EthBlockNum'
  1957. ethereumBlockHash:
  1958. type: string
  1959. description: hash of the Ethereum block in which the batch was forged
  1960. example: "0xfe88c94d860f01a17f961bf4bdfb6e0c6cd10d3fda5cc861e805ca1240c58553"
  1961. timestamp:
  1962. type: string
  1963. format: date-time
  1964. description: Time in which the batch was forged.
  1965. forgerAddr:
  1966. $ref: '#/components/schemas/EthereumAddress'
  1967. collectedFees:
  1968. $ref: '#/components/schemas/CollectedFees'
  1969. historicTotalCollectedFeesUSD:
  1970. type: number
  1971. description: Sum of the all the fees collected, in USD, at the moment the batch was forged.
  1972. example: 23.3
  1973. stateRoot:
  1974. allOf:
  1975. - $ref: '#/components/schemas/Hash'
  1976. - description: Root of the accounts Merkle Tree.
  1977. - example: "2734657026572a8708d883"
  1978. numAccounts:
  1979. type: integer
  1980. description: Number of registered accounts in this batch.
  1981. exitRoot:
  1982. allOf:
  1983. - $ref: '#/components/schemas/Hash'
  1984. - description: Root of the exit Merkle Tree associated to this batch.
  1985. - example: "2734657026572a8708d883"
  1986. forgeL1TransactionsNum:
  1987. type: integer
  1988. description: Identifier that corresponds to the group of L1 transactions forged in the current batch.
  1989. example: 5
  1990. nullable: true
  1991. slotNum:
  1992. $ref: '#/components/schemas/SlotNum'
  1993. additionalProperties: false
  1994. required:
  1995. - itemId
  1996. - batchNum
  1997. - ethereumBlockNum
  1998. - ethereumBlockHash
  1999. - timestamp
  2000. - forgerAddr
  2001. - collectedFees
  2002. - historicTotalCollectedFeesUSD
  2003. - stateRoot
  2004. - numAccounts
  2005. - exitRoot
  2006. - forgeL1TransactionsNum
  2007. - slotNum
  2008. FullBatch:
  2009. type: object
  2010. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  2011. properties:
  2012. batch:
  2013. $ref: '#/components/schemas/Batch'
  2014. transactions:
  2015. type: array
  2016. description: List of forged transactions in the batch
  2017. items:
  2018. $ref: '#/components/schemas/HistoryTransaction'
  2019. nullable: true
  2020. additionalProperties: false
  2021. required:
  2022. - batch
  2023. - transactions
  2024. Hash:
  2025. type: string
  2026. description: hashed data
  2027. example: "2734657026572a8708d883"
  2028. SlotNum:
  2029. type: integer
  2030. description: Identifier of a slot.
  2031. minimum: 0
  2032. maximum: 4294967295
  2033. example: 784
  2034. Batches:
  2035. type: object
  2036. properties:
  2037. batches:
  2038. type: array
  2039. description: List of batches.
  2040. items:
  2041. $ref: '#/components/schemas/Batch'
  2042. pendingItems:
  2043. $ref: '#/components/schemas/PendingItems'
  2044. additionalProperties: false
  2045. required:
  2046. - batches
  2047. - pendingItems
  2048. Coordinator:
  2049. type: object
  2050. properties:
  2051. itemId:
  2052. $ref: '#/components/schemas/ItemId'
  2053. forgerAddr:
  2054. $ref: '#/components/schemas/EthereumAddress'
  2055. bidderAddr:
  2056. $ref: '#/components/schemas/EthereumAddress'
  2057. URL:
  2058. $ref: '#/components/schemas/URL'
  2059. ethereumBlock:
  2060. allOf:
  2061. - $ref: '#/components/schemas/EthBlockNum'
  2062. - description: Ethereum block in which the coordinator registered into the network.
  2063. - example: 5735943738
  2064. additionalProperties: false
  2065. required:
  2066. - itemId
  2067. - forgerAddr
  2068. - bidderAddr
  2069. - URL
  2070. - ethereumBlock
  2071. Coordinators:
  2072. type: object
  2073. properties:
  2074. coordinators:
  2075. type: array
  2076. description: List of coordinators.
  2077. items:
  2078. $ref: '#/components/schemas/Coordinator'
  2079. pendingItems:
  2080. $ref: '#/components/schemas/PendingItems'
  2081. additionalProperties: false
  2082. required:
  2083. - coordinators
  2084. - pendingItems
  2085. Bid:
  2086. type: object
  2087. description: Tokens placed in an auction by a coordinator to gain the right to forge batches during a specific slot.
  2088. properties:
  2089. itemId:
  2090. $ref: '#/components/schemas/ItemId'
  2091. bidderAddr:
  2092. $ref: '#/components/schemas/EthereumAddress'
  2093. forgerAddr:
  2094. $ref: '#/components/schemas/EthereumAddress'
  2095. slotNum:
  2096. $ref: '#/components/schemas/SlotNum'
  2097. URL:
  2098. $ref: '#/components/schemas/URL'
  2099. bidValue:
  2100. $ref: '#/components/schemas/BigInt'
  2101. ethereumBlockNum:
  2102. $ref: '#/components/schemas/EthBlockNum'
  2103. timestamp:
  2104. type: string
  2105. format: date-time
  2106. additionalProperties: false
  2107. required:
  2108. - bidderAddr
  2109. - forgerAddr
  2110. - slotNum
  2111. - URL
  2112. - bidValue
  2113. - ethereumBlockNum
  2114. - timestamp
  2115. Bids:
  2116. type: object
  2117. properties:
  2118. bids:
  2119. type: array
  2120. description: List of bids.
  2121. items:
  2122. $ref: '#/components/schemas/Bid'
  2123. pendingItems:
  2124. $ref: '#/components/schemas/PendingItems'
  2125. additionalProperties: false
  2126. required:
  2127. - bids
  2128. - pendingItems
  2129. RecommendedFee:
  2130. type: object
  2131. description: Fee that the coordinator recommends per transaction in USD.
  2132. properties:
  2133. existingAccount:
  2134. type: number
  2135. description: Recommended fee if the destination account of the transaction already exists.
  2136. minimum: 0
  2137. example: 0.1
  2138. createAccount:
  2139. type: number
  2140. 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.
  2141. minimum: 0
  2142. example: 1.3
  2143. createAccountInternal:
  2144. type: number
  2145. 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 to an Ethereum address and therefore can only operate in L2.
  2146. minimum: 0
  2147. example: 0.5
  2148. Token:
  2149. type: object
  2150. description: Hermez network compatible and registered token.
  2151. properties:
  2152. id:
  2153. $ref: '#/components/schemas/TokenId'
  2154. ethereumAddress:
  2155. allOf:
  2156. - $ref: '#/components/schemas/EthereumAddress'
  2157. - description: Ethereum address in which the token is deployed.
  2158. - example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  2159. itemId:
  2160. $ref: '#/components/schemas/ItemId'
  2161. name:
  2162. type: string
  2163. description: full name of the token
  2164. example: Maker Dai
  2165. symbol:
  2166. allOf:
  2167. - $ref: '#/components/schemas/TokenSymbol'
  2168. - example: DAI
  2169. decimals:
  2170. type: integer
  2171. description: Number of decimals of the token.
  2172. example: 18
  2173. ethereumBlockNum:
  2174. allOf:
  2175. - $ref: '#/components/schemas/EthBlockNum'
  2176. - description: Ethereum block number in which the token was added to the Hermez network.
  2177. - example: 539847538
  2178. USD:
  2179. type: number
  2180. description: Value of the token in USD.
  2181. example: 1.01
  2182. nullable: true
  2183. fiatUpdate:
  2184. type: string
  2185. format: date-time
  2186. description: Timestamp of the moment the `USD` value was updated.
  2187. nullable: true
  2188. required:
  2189. - id
  2190. - ethereumAddress
  2191. - itemId
  2192. - name
  2193. - symbol
  2194. - decimals
  2195. - ethereumBlockNum
  2196. - USD
  2197. - fiatUpdate
  2198. additionalProperties: false
  2199. Tokens:
  2200. type: object
  2201. properties:
  2202. tokens:
  2203. type: array
  2204. description: List of tokens.
  2205. items:
  2206. $ref: '#/components/schemas/Token'
  2207. pendingItems:
  2208. $ref: '#/components/schemas/PendingItems'
  2209. Exit:
  2210. type: object
  2211. description: Exit tree leaf. It Contains the necessary information to perform a withdrawal.
  2212. properties:
  2213. batchNum:
  2214. allOf:
  2215. - $ref: '#/components/schemas/BatchNum'
  2216. - description: Batch in which the exit was forged.
  2217. - example: 7394
  2218. accountIndex:
  2219. $ref: '#/components/schemas/AccountIndex'
  2220. itemId:
  2221. $ref: '#/components/schemas/ItemId'
  2222. merkleProof:
  2223. type: object
  2224. description: Existence proof of a leaf in a given Merkle Root. Encoded as hexadecimal string.
  2225. properties:
  2226. Root:
  2227. $ref: '#/components/schemas/BigInt'
  2228. Siblings:
  2229. type: array
  2230. items:
  2231. $ref: '#/components/schemas/BigInt'
  2232. OldKey:
  2233. $ref: '#/components/schemas/BigInt'
  2234. OldValue:
  2235. $ref: '#/components/schemas/BigInt'
  2236. IsOld0:
  2237. type: boolean
  2238. Key:
  2239. $ref: '#/components/schemas/BigInt'
  2240. Value:
  2241. $ref: '#/components/schemas/BigInt'
  2242. Fnc:
  2243. type: integer
  2244. maximum: 3
  2245. minimum: 0
  2246. required:
  2247. - Root
  2248. - Siblings
  2249. - OldKey
  2250. - OldValue
  2251. - IsOld0
  2252. - Key
  2253. - Value
  2254. - Fnc
  2255. additionalProperties: false
  2256. balance:
  2257. $ref: '#/components/schemas/BigInt'
  2258. instantWithdrawn:
  2259. type: integer
  2260. description: Block in which the exit balance was instantly withdrawn. Null indicates that an instant withdrawn hasn't been performed.
  2261. minimum: 0
  2262. maximum: 1.84467440737096e+19
  2263. example: 74747363
  2264. nullable: true
  2265. delayedWithdrawRequest:
  2266. type: integer
  2267. description: Block in which the exit balance was requested to delay withdraw. Null indicates that a delay withdraw hasn't been performed.
  2268. minimum: 0
  2269. maximum: 1.84467440737096e+19
  2270. example: null
  2271. nullable: true
  2272. delayedWithdrawn:
  2273. type: integer
  2274. 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.
  2275. minimum: 0
  2276. maximum: 1.84467440737096e+19
  2277. example: null
  2278. nullable: true
  2279. token:
  2280. $ref: '#/components/schemas/Token'
  2281. required:
  2282. - batchNum
  2283. - accountIndex
  2284. - itemId
  2285. - merkleProof
  2286. - balance
  2287. - instantWithdrawn
  2288. - delayedWithdrawRequest
  2289. - delayedWithdrawn
  2290. - token
  2291. additionalProperties: false
  2292. Exits:
  2293. type: object
  2294. properties:
  2295. exits:
  2296. type: array
  2297. description: List of exits.
  2298. items:
  2299. $ref: '#/components/schemas/Exit'
  2300. pendingItems:
  2301. $ref: '#/components/schemas/PendingItems'
  2302. required:
  2303. - exits
  2304. - pendingItems
  2305. additionalProperties: false
  2306. Account:
  2307. type: object
  2308. description: State tree leaf. It contains balance and nonce of an account.
  2309. properties:
  2310. itemId:
  2311. $ref: '#/components/schemas/ItemId'
  2312. accountIndex:
  2313. $ref: '#/components/schemas/AccountIndex'
  2314. nonce:
  2315. $ref: '#/components/schemas/Nonce'
  2316. balance:
  2317. $ref: '#/components/schemas/BigInt'
  2318. bjj:
  2319. $ref: '#/components/schemas/BJJ'
  2320. hezEthereumAddress:
  2321. $ref: '#/components/schemas/HezEthereumAddress'
  2322. token:
  2323. $ref: '#/components/schemas/Token'
  2324. example:
  2325. accountIndex: hez:SCC:256
  2326. balance: '2560000000'
  2327. bjj: hez:m9UXbJElX5OzHMM0IxgD3Qzhx2RJw18o-tiw8s1lnwx4
  2328. hezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  2329. itemId: 1
  2330. nonce: 0
  2331. token:
  2332. USD: 3478.93
  2333. decimals: 7
  2334. ethereumAddress: '0x0000000000000000000000000000000000000006'
  2335. ethereumBlockNum: 2
  2336. fiatUpdate:
  2337. id: 6
  2338. itemId: 7
  2339. name: Some Cool Coin
  2340. symbol: 'SCC'
  2341. additionalProperties: false
  2342. required:
  2343. - itemId
  2344. - accountIndex
  2345. - nonce
  2346. - balance
  2347. - bjj
  2348. - hezEthereumAddress
  2349. - token
  2350. Accounts:
  2351. type: object
  2352. properties:
  2353. accounts:
  2354. type: array
  2355. description: List of accounts.
  2356. items:
  2357. $ref: '#/components/schemas/Account'
  2358. pendingItems:
  2359. $ref: '#/components/schemas/PendingItems'
  2360. example:
  2361. accounts:
  2362. - accountIndex: hez:SCC:256
  2363. balance: '2560000000'
  2364. bjj: hez:m9UXbJElX5OzHMM0IxgD3Qzhx2RJw18o-tiw8s1lnwx4
  2365. hezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  2366. itemId: 1
  2367. nonce: 0
  2368. token:
  2369. USD: 53.92
  2370. decimals: 7
  2371. ethereumAddress: '0x0000000000000000000000000000000000000006'
  2372. ethereumBlockNum: 2
  2373. fiatUpdate:
  2374. id: 6
  2375. itemId: 7
  2376. name: Some Cool Coin
  2377. symbol: 'SCC'
  2378. - accountIndex: hez:ACC:257
  2379. balance: '2570000000'
  2380. bjj: hez:m9UXbJElX5OzHMM0IxgD3Qzhx2RJw18o-tiw8s1lnwx4
  2381. hezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  2382. itemId: 2
  2383. nonce: 0
  2384. token:
  2385. USD: 8.641969
  2386. decimals: 8
  2387. ethereumAddress: '0x0000000000000000000000000000000000000007'
  2388. ethereumBlockNum: 3
  2389. fiatUpdate: '2020-11-17T13:28:11.016998Z'
  2390. id: 7
  2391. itemId: 8
  2392. name: Another Cool Coin
  2393. symbol: 'ACC'
  2394. - accountIndex: hez:VGC:258
  2395. balance: '2580000000'
  2396. bjj: hez:m9UXbJElX5OzHMM0IxgD3Qzhx2RJw18o-tiw8s1lnwx4
  2397. hezEthereumAddress: hez:0x00000000000000000000000000000000004Ab84F
  2398. itemId: 3
  2399. nonce: 0
  2400. token:
  2401. USD: 2349.12
  2402. decimals: 9
  2403. ethereumAddress: '0x0000000000000000000000000000000000000008'
  2404. ethereumBlockNum: 4
  2405. fiatUpdate:
  2406. id: 8
  2407. itemId: 9
  2408. name: Vitalik the Great Coin
  2409. symbol: 'VGC'
  2410. pendingItems: 1
  2411. additionalProperties: false
  2412. required:
  2413. - accounts
  2414. - pendingItems
  2415. Slot:
  2416. type: object
  2417. description: Slot information.
  2418. properties:
  2419. itemId:
  2420. $ref: '#/components/schemas/ItemId'
  2421. slotNum:
  2422. $ref: '#/components/schemas/SlotNum'
  2423. firstBlock:
  2424. allOf:
  2425. - $ref: '#/components/schemas/EthBlockNum'
  2426. - description: Block in which the slot began or will begin
  2427. - example: 76238647846
  2428. lastBlock:
  2429. allOf:
  2430. - $ref: '#/components/schemas/EthBlockNum'
  2431. - description: Block in which the slot ended or will end
  2432. - example: 4475934
  2433. openAuction:
  2434. type: boolean
  2435. description: Whether the auction of the slot is open or not.
  2436. bestBid:
  2437. type: object
  2438. description: The best bid of the auction. If the bestBid is null, it is because no coordinator has bid for that slot.
  2439. nullable: true
  2440. properties:
  2441. itemId:
  2442. $ref: '#/components/schemas/ItemId'
  2443. bidderAddr:
  2444. $ref: '#/components/schemas/EthereumAddress'
  2445. forgerAddr:
  2446. $ref: '#/components/schemas/EthereumAddress'
  2447. slotNum:
  2448. $ref: '#/components/schemas/SlotNum'
  2449. URL:
  2450. $ref: '#/components/schemas/URL'
  2451. bidValue:
  2452. type: string
  2453. description: BigInt is an integer encoded as a string for numbers that are very large.
  2454. example: "8708856933496328593"
  2455. pattern: "^\\d+$"
  2456. ethereumBlockNum:
  2457. $ref: '#/components/schemas/EthBlockNum'
  2458. timestamp:
  2459. type: string
  2460. format: date-time
  2461. additionalProperties: false
  2462. required:
  2463. - bidderAddr
  2464. - forgerAddr
  2465. - slotNum
  2466. - URL
  2467. - bidValue
  2468. - ethereumBlockNum
  2469. - timestamp
  2470. additionalProperties: false
  2471. required:
  2472. - slotNum
  2473. - firstBlock
  2474. - lastBlock
  2475. - openAuction
  2476. - bestBid
  2477. Slots:
  2478. type: object
  2479. properties:
  2480. slots:
  2481. type: array
  2482. description: List of slots.
  2483. items:
  2484. allOf:
  2485. - $ref: '#/components/schemas/Slot'
  2486. - description: Last synchronized Etherum block.
  2487. pendingItems:
  2488. $ref: '#/components/schemas/PendingItems'
  2489. additionalProperties: false
  2490. required:
  2491. - slots
  2492. - pendingItems
  2493. NextForger:
  2494. type: object
  2495. description: Coordinator information along with the scheduled forging period
  2496. properties:
  2497. coordinator:
  2498. $ref: '#/components/schemas/Coordinator'
  2499. period:
  2500. type: object
  2501. description: Time period in which the coordinator will have the ability to forge. Specified both in Ethereum blocks and timestamp
  2502. properties:
  2503. slotNum:
  2504. $ref: '#/components/schemas/SlotNum'
  2505. fromBlock:
  2506. $ref: '#/components/schemas/EthBlockNum'
  2507. toBlock:
  2508. $ref: '#/components/schemas/EthBlockNum'
  2509. fromTimestamp:
  2510. type: string
  2511. format: date-time
  2512. toTimestamp:
  2513. type: string
  2514. format: date-time
  2515. required:
  2516. - slotNum
  2517. - fromBlock
  2518. - toBlock
  2519. - fromTimestamp
  2520. - toTimestamp
  2521. additionalProperties: false
  2522. required:
  2523. - coordinator
  2524. - period
  2525. additionalProperties: false
  2526. NextForgers:
  2527. type: array
  2528. description: List of next coordinators to forge.
  2529. items:
  2530. $ref: '#/components/schemas/NextForger'
  2531. State:
  2532. type: object
  2533. description: Gobal variables of the network
  2534. properties:
  2535. network:
  2536. $ref: '#/components/schemas/StateNetwork'
  2537. metrics:
  2538. $ref: '#/components/schemas/StateMetrics'
  2539. rollup:
  2540. $ref: '#/components/schemas/StateRollup'
  2541. auction:
  2542. $ref: '#/components/schemas/StateAuction'
  2543. withdrawalDelayer:
  2544. $ref: '#/components/schemas/StateWithdrawDelayer'
  2545. recommendedFee:
  2546. $ref: '#/components/schemas/RecommendedFee'
  2547. additionalProperties: false
  2548. required:
  2549. - network
  2550. - metrics
  2551. - rollup
  2552. - auction
  2553. - withdrawalDelayer
  2554. - recommendedFee
  2555. StateNetwork:
  2556. type: object
  2557. description: Gobal statistics of the network
  2558. properties:
  2559. lastEthereumBlock:
  2560. allOf:
  2561. - $ref: '#/components/schemas/EthBlockNum'
  2562. - description: Current Etherum block. Note that this is the actual last block of Ethereum, not the last synchronized block by the node.
  2563. - example: 3457437
  2564. lastSynchedBlock:
  2565. allOf:
  2566. - $ref: '#/components/schemas/EthBlockNum'
  2567. - description: Last synchronized Etherum block. Compare with lastEthereumBlock to check the synchronization status of the node.
  2568. - example: 3457437
  2569. lastBatch:
  2570. $ref: '#/components/schemas/Batch'
  2571. currentSlot:
  2572. allOf:
  2573. - $ref: '#/components/schemas/SlotNum'
  2574. - description: Slot where batches are currently being forged.
  2575. - example: 2334
  2576. nextForgers:
  2577. $ref: '#/components/schemas/NextForgers'
  2578. additionalProperties: false
  2579. required:
  2580. - lastEthereumBlock
  2581. - lastSynchedBlock
  2582. - lastBatch
  2583. - currentSlot
  2584. - nextForgers
  2585. StateAuction:
  2586. type: object
  2587. description: Auction parameters.
  2588. properties:
  2589. ethereumBlockNum:
  2590. $ref: '#/components/schemas/EthBlockNum'
  2591. bootCoordinator:
  2592. allOf:
  2593. - $ref: '#/components/schemas/EthereumAddress'
  2594. - description: Ethereum address of the boot coordinator.
  2595. - example: "0x997dc4262BCDbf85190C01c996b4C06a461d2430"
  2596. slotDeadline:
  2597. type: integer
  2598. 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.
  2599. example: 3
  2600. closedAuctionSlots:
  2601. type: integer
  2602. 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.
  2603. example: 2
  2604. openAuctionSlots:
  2605. type: integer
  2606. description: How many days in advance are auctions opened.
  2607. defaultSlotSetBid:
  2608. type: array
  2609. 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]`."
  2610. items:
  2611. type: integer
  2612. example: [32,0,68,21,55,99]
  2613. outbidding:
  2614. type: number
  2615. description: Minimum outbid over the previous one to consider it valid.
  2616. example: 3.64
  2617. donationAddress:
  2618. allOf:
  2619. - $ref: '#/components/schemas/EthereumAddress'
  2620. - description: Ethereum address where the donations will go to.
  2621. - example: "0x887dc4262BCDbf85190C01c996b4C06a461d2430"
  2622. allocationRatio:
  2623. type: array
  2624. description: Percentage in which fees will be splitted between donations, governance and burning. The sum of the tree values should be 100.
  2625. items:
  2626. type: integer
  2627. example: [80,10,10]
  2628. additionalProperties: false
  2629. required:
  2630. - ethereumBlockNum
  2631. - bootCoordinator
  2632. - slotDeadline
  2633. - closedAuctionSlots
  2634. - openAuctionSlots
  2635. - defaultSlotSetBid
  2636. - outbidding
  2637. - donationAddress
  2638. - allocationRatio
  2639. StateRollup:
  2640. type: object
  2641. description: Rollup parameters
  2642. properties:
  2643. ethereumBlockNum:
  2644. $ref: '#/components/schemas/EthBlockNum'
  2645. forgeL1L2BatchTimeout:
  2646. type: integer
  2647. description: Max ethereum blocks after the last L1-L2-batch, when exceeds the timeout only L1-L2-batch are allowed.
  2648. example: 5
  2649. feeAddToken:
  2650. type: integer
  2651. description: Fee to pay when registering tokens into the network.
  2652. example: 5698
  2653. withdrawalDelay:
  2654. type: integer
  2655. description: Withdraw delay in seconds
  2656. example: 432000
  2657. buckets:
  2658. type: array
  2659. description: List of buckets state
  2660. items:
  2661. type: object
  2662. properties:
  2663. ceilUSD:
  2664. type: integer
  2665. description: Max USD value
  2666. example: 1000
  2667. blockStamp:
  2668. type: integer
  2669. description: Last time a withdrawal was added ( or removed if the bucket was full)
  2670. example: 4475934
  2671. withdrawals:
  2672. type: integer
  2673. description: Available withdrawals of the bucket
  2674. example: 4
  2675. blockWithdrawalRate:
  2676. type: integer
  2677. description: Every `blockWithdrawalRate` blocks add 1 withdrawal
  2678. example: 8
  2679. maxWithdrawals:
  2680. type: integer
  2681. description: Max withdrawals the bucket can hold
  2682. example: 4
  2683. additionalProperties: false
  2684. required:
  2685. - ceilUSD
  2686. - blockStamp
  2687. - withdrawals
  2688. - blockWithdrawalRate
  2689. - maxWithdrawals
  2690. additionalProperties: false
  2691. required:
  2692. - ethereumBlockNum
  2693. - forgeL1L2BatchTimeout
  2694. - feeAddToken
  2695. - withdrawalDelay
  2696. - buckets
  2697. StateWithdrawDelayer:
  2698. type: object
  2699. description: Withdrawal delayer parameters
  2700. properties:
  2701. ethereumBlockNum:
  2702. $ref: '#/components/schemas/EthBlockNum'
  2703. hermezGovernanceDAOAddress:
  2704. allOf:
  2705. - $ref: '#/components/schemas/EthereumAddress'
  2706. - description: Ethereum address of the governance DAO.
  2707. - example: "0x667dc4262BCDbf85190C01c996b4C06a461d2430"
  2708. whiteHackGroupAddress:
  2709. allOf:
  2710. - $ref: '#/components/schemas/EthereumAddress'
  2711. - description: Ethereum Address that can claim the funds in an emergency when the maximum emergency mode time is exceeded.
  2712. - example: "0x557dc4262BCDbf85190C01c996b4C06a461d2430"
  2713. hermezKeeperAddress:
  2714. allOf:
  2715. - $ref: '#/components/schemas/EthereumAddress'
  2716. - description: Ethereum Address that can enable emergency mode and modify the delay to make a withdrawal.
  2717. - example: "0x557dc4262BCDbf85190C01c996b4C06a461d2430"
  2718. withdrawalDelay:
  2719. allOf:
  2720. - $ref: '#/components/schemas/EthBlockNum'
  2721. - description: The time that anyone needs to wait until a withdrawal of the funds is allowed, in seconds.
  2722. - example: 539573849
  2723. emergencyModeStartingTime:
  2724. type: integer
  2725. description: Second (since unix epoch) in which the emergency mode has been activated.
  2726. example: 10
  2727. emergencyMode:
  2728. type: boolean
  2729. description: Indicates if emergency mode has been activated.
  2730. example: false
  2731. additionalProperties: false
  2732. required:
  2733. - ethereumBlockNum
  2734. - hermezGovernanceDAOAddress
  2735. - whiteHackGroupAddress
  2736. - hermezKeeperAddress
  2737. - withdrawalDelay
  2738. - emergencyModeStartingTime
  2739. - emergencyMode
  2740. StateMetrics:
  2741. type: object
  2742. description: Metrics of the network
  2743. properties:
  2744. transactionsPerBatch:
  2745. type: number
  2746. description: Average transactions per batch in the last 24 hours.
  2747. example: 2002.7
  2748. batchFrequency:
  2749. type: number
  2750. description: Average elapsed time between batches in the last 24 hours, in seconds.
  2751. example: 8.9
  2752. transactionsPerSecond:
  2753. type: number
  2754. description: Average transactions per second in the last 24 hours.
  2755. example: 302.3
  2756. totalAccounts:
  2757. type: integer
  2758. description: Number of created accounts.
  2759. example: 90473
  2760. totalBJJs:
  2761. type: integer
  2762. description: Number of different registered BJJs.
  2763. example: 23067
  2764. avgTransactionFee:
  2765. type: number
  2766. description: Average fee percentage paid for L2 transactions in the last 24 hours.
  2767. example: 1.54
  2768. additionalProperties: false
  2769. required:
  2770. - transactionsPerBatch
  2771. - batchFrequency
  2772. - transactionsPerSecond
  2773. - totalAccounts
  2774. - totalBJJs
  2775. - avgTransactionFee
  2776. PendingItems:
  2777. type: integer
  2778. 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.
  2779. example: 15
  2780. Config:
  2781. type: object
  2782. description: Configuration parameters of the different smart contracts that power the Hermez network.
  2783. properties:
  2784. hermez:
  2785. type: object
  2786. description: Constant configuration of the Hermez smart contract.
  2787. properties:
  2788. publicConstants:
  2789. type: object
  2790. description: Public Hermez smart contract constants
  2791. properties:
  2792. tokenHEZ:
  2793. allOf:
  2794. - $ref: '#/components/schemas/EthereumAddress'
  2795. - description: Ethereum address of the HEZ token.
  2796. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2797. absoluteMaxL1L2BatchTimeout:
  2798. type: integer
  2799. description: L1L2 Batch Timeout
  2800. example: 240
  2801. verifiers:
  2802. type: array
  2803. description: List of verifiers struct
  2804. items:
  2805. type: object
  2806. properties:
  2807. maxTx:
  2808. type: integer
  2809. description: Maximum rollup transactions in a batch
  2810. example: 512
  2811. nlevels:
  2812. type: integer
  2813. description: Number of levels of the circuit
  2814. example: 32
  2815. required:
  2816. - maxTx
  2817. - nlevels
  2818. additionalProperties: false
  2819. hermezAuctionContract:
  2820. allOf:
  2821. - $ref: '#/components/schemas/EthereumAddress'
  2822. - description: Ethereum address of the auction smart contract.
  2823. - example: "0x111dc4262BCDbf85190C01c996b4C06a461d2430"
  2824. hermezGovernanceDAOAddress:
  2825. allOf:
  2826. - $ref: '#/components/schemas/EthereumAddress'
  2827. - description: Ethereum address of the governanceDAO.
  2828. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2829. safetyAddress:
  2830. allOf:
  2831. - $ref: '#/components/schemas/EthereumAddress'
  2832. - description: Ethereum address of the safety.
  2833. - example: "0x333dc4262BCDbf85190C01c996b4C06a461d2430"
  2834. withdrawDelayerContract:
  2835. allOf:
  2836. - $ref: '#/components/schemas/EthereumAddress'
  2837. - description: Ethereum address of the withdraw delayer contracts.
  2838. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2839. required:
  2840. - tokenHEZ
  2841. - absoluteMaxL1L2BatchTimeout
  2842. - verifiers
  2843. - hermezAuctionContract
  2844. - hermezGovernanceDAOAddress
  2845. - safetyAddress
  2846. - withdrawDelayerContract
  2847. additionalProperties: false
  2848. maxFeeIdxCoordinator:
  2849. type: integer
  2850. description: is the maximum number of tokens the coordinator can use to collect fees.
  2851. example: 64
  2852. reservedIdx:
  2853. type: integer
  2854. description: First 256 indexes reserved, first user index will be the 256.
  2855. example: 255
  2856. exitIdx:
  2857. type: integer
  2858. description: Account index used to indicate that a transaction is an `exit` or `force exit`.
  2859. example: 1
  2860. limitLoadAmount:
  2861. type: integer
  2862. description: Maximum load amount (L1 to L2) allowed.
  2863. example: 321
  2864. limitL2TransferAmount:
  2865. type: integer
  2866. description: Maximum amount (L2 to L2) allowed.
  2867. example: 837
  2868. limitTokens:
  2869. type: integer
  2870. description: Maximum number of different tokens that can be registered in the network.
  2871. example: 4294967295
  2872. l1CoordinatorTotalBytes:
  2873. type: integer
  2874. description: Number of bytes that a L1 coordinator transaction has ([4 bytes] token + [32 bytes] babyjub + [65 bytes] compressedSignature).
  2875. example: 101
  2876. l1UserTotalBytes:
  2877. type: integer
  2878. description: Number of bytes that a L1 user transaction has ([20 bytes] fromEthAddr + [32 bytes] fromBjj-compressed + [6 bytes] fromIdx + [2 bytes] loadAmountFloat16 + [2 bytes] amountFloat16 + [4 bytes] tokenId + [6 bytes] toIdx).
  2879. example: 72
  2880. maxL1UserTx:
  2881. type: integer
  2882. description: Maximum L1-user transactions allowed to be queued in a batch.
  2883. example: 128
  2884. maxL1Tx:
  2885. type: integer
  2886. description: Maximum L1 transactions allowed to be queued in a batch.
  2887. example: 256
  2888. inputSHAConstantBytes:
  2889. type: integer
  2890. description: Input SHA constant bytes
  2891. example: 18542
  2892. numBuckets:
  2893. type: integer
  2894. description: Number of buckets
  2895. example: 5
  2896. maxWithdrawalDelay:
  2897. type: integer
  2898. description: Maximum delay to withdraw tokens. Time is measured in seconds.
  2899. example: 2 * 7 * 24 * 60 * 60
  2900. exchangeMultiplier:
  2901. type: integer
  2902. description: exchange multiplier
  2903. example: 1e14
  2904. required:
  2905. - publicConstants
  2906. - reservedIdx
  2907. - exitIdx
  2908. - limitLoadAmount
  2909. - limitL2TransferAmount
  2910. - limitTokens
  2911. - l1CoordinatorTotalBytes
  2912. - l1UserTotalBytes
  2913. - maxL1UserTx
  2914. - maxL1Tx
  2915. - inputSHAConstantBytes
  2916. - numBuckets
  2917. - maxWithdrawalDelay
  2918. - exchangeMultiplier
  2919. additionalProperties: false
  2920. auction:
  2921. type: object
  2922. description: Constant configuration of the auction smart contract.
  2923. properties:
  2924. blocksPerSlot:
  2925. type: integer
  2926. description: Blocks per slot.
  2927. initialMinimalBidding:
  2928. type: integer
  2929. description: Minimum bid when no one has bid yet.
  2930. genesisBlockNum:
  2931. allOf:
  2932. - $ref: '#/components/schemas/EthBlockNum'
  2933. - description: Ethereum block number in which the smart contract starts operating.
  2934. tokenHEZ:
  2935. allOf:
  2936. - $ref: '#/components/schemas/EthereumAddress'
  2937. - description: Ethereum address of the HEZ token.
  2938. - example: "0x333dc4262BCDbf85190C01c996b4C06a461d2430"
  2939. hermezRollup:
  2940. allOf:
  2941. - $ref: '#/components/schemas/EthereumAddress'
  2942. - description: Ethereum address of the rollup smart contract.
  2943. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2944. governanceAddress:
  2945. allOf:
  2946. - $ref: '#/components/schemas/EthereumAddress'
  2947. - description: Ethereum address of the governance.
  2948. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2949. required:
  2950. - blocksPerSlot
  2951. - initialMinimalBidding
  2952. - genesisBlockNum
  2953. - tokenHEZ
  2954. - hermezRollup
  2955. - governanceAddress
  2956. additionalProperties: false
  2957. withdrawalDelayer:
  2958. type: object
  2959. description: Constant configuration of the withdrawal delayer smart contract.
  2960. properties:
  2961. maxWithdrawalDelay:
  2962. type: integer
  2963. description: Maximum time delay in which the tokens can be locked in the contract. Time is measured in seconds.
  2964. example: 200
  2965. maxEmergencyModeTime:
  2966. type: integer
  2967. description: Maximum amount of time in which the contract can be in emergency mode. Time is measured in seconds.
  2968. example: 2000
  2969. hermezRollup:
  2970. allOf:
  2971. - $ref: '#/components/schemas/EthereumAddress'
  2972. - description: Ethereum address of the rollup smart contract.
  2973. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2974. required:
  2975. - maxWithdrawalDelay
  2976. - maxEmergencyModeTime
  2977. - hermezRollup
  2978. additionalProperties: false
  2979. required:
  2980. - hermez
  2981. - auction
  2982. - withdrawalDelayer
  2983. additionalProperties: false
  2984. Error:
  2985. type: object
  2986. description: Error response.
  2987. properties:
  2988. message:
  2989. type: string
  2990. Error400:
  2991. allOf:
  2992. - $ref: '#/components/schemas/Error'
  2993. - example:
  2994. message: Invalid signature.
  2995. Error404:
  2996. allOf:
  2997. - $ref: '#/components/schemas/Error'
  2998. - example:
  2999. message: Item(s) not found.
  3000. Error500:
  3001. allOf:
  3002. - $ref: '#/components/schemas/Error'
  3003. - example:
  3004. message: Database error.