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.

2538 lines
89 KiB

  1. openapi: 3.0.0
  2. info:
  3. description: |
  4. This API server is the layer that allows 3rd party apps and services interfacing with the coordinator to explore, monitor and use 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. ### Pagination
  10. #### Usage
  11. All the endpoints that return a list of undefined size use pagination. Unless the opposite is explicitly said.
  12. In order to use pagination, three query parameters are used:
  13. * `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).
  14. * `order`: all pginated 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.
  15. * `limit`: maximum amount of items to include in each response. Default is 20, maximum 2049.
  16. Responses for those endpoint will always include a `pagination` object. This object includes the total amount of items that the endpoint will return at a given time with the given filters. Apart from that, it also includes the `itemId` of the last and first items that will be returned (not in a single response but within the total items). These two properties can be used to know when to stop querying.
  17. #### Reorgs and safetyness
  18. 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).
  19. 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`.
  20. 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 the batch 424 get's reorged, it will be deleted, but eventualy, a new batch 424 will appear with potentialy different content.
  21. ### Signatures
  22. The POST endpoint require to be signed using BabyJubJub or Ethereum keys. TODO: add references to libraries / examples / ...
  23. version: "0.0.1"
  24. title: Hermez Network API
  25. # termsOfService: 'http://swagger.io/terms/'
  26. # contact:
  27. # email: apiteam@swagger.io
  28. # license:
  29. # name: Apache 2.0
  30. # url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
  31. externalDocs:
  32. description: Find out more about Hermez.
  33. url: 'https://hermez.io'
  34. servers:
  35. - description: Hosted mock up
  36. url: http://167.71.59.190:4010
  37. - description: Localhost mock Up
  38. url: http://localhost:4010
  39. tags:
  40. - name: Account
  41. description: Hermez account and the tokens it holds.
  42. externalDocs:
  43. description: Find out more.
  44. url: 'https://idocs.hermez.io/#/spec/zkrollup/README?id=account-types'
  45. - name: Transaction
  46. description: Send tokens off chain and track transactions.
  47. externalDocs:
  48. description: Find out more
  49. url: 'https://idocs.hermez.io/#/spec/zkrollup/README?id=transaction-types'
  50. - name: Hermez status
  51. description: Info about operators, tokens, auctions and more.
  52. externalDocs:
  53. description: Find out more.
  54. url: 'https://idocs.hermez.io/#/spec/zkrollup/README'
  55. paths:
  56. '/account-creation-authorization':
  57. post:
  58. tags:
  59. - Account
  60. summary: Send an authorization that will allow the coordinator to register accounts associated to an Ethereum address on behalf of the user.
  61. description: >-
  62. 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 are always of type *account creation*).
  63. operationId: postRegister
  64. requestBody:
  65. description: Account creation authorization.
  66. required: true
  67. content:
  68. application/json:
  69. schema:
  70. $ref: '#/components/schemas/AccountCreationAuthorizationPost'
  71. responses:
  72. '200':
  73. description: Successful operation.
  74. '400':
  75. description: Bad request.
  76. content:
  77. application/json:
  78. schema:
  79. $ref: '#/components/schemas/Error400'
  80. '500':
  81. description: Internal server error.
  82. content:
  83. application/json:
  84. schema:
  85. $ref: '#/components/schemas/Error500'
  86. '/account-creation-authorization/{hezEthereumAddress}':
  87. get:
  88. tags:
  89. - Account
  90. summary: Get to know if the coordinator has the ability to create accounts associated to an Ethereum address.
  91. description: >-
  92. True if the coordinator has the required authorization to perform an account creation with the given Ethereum address on behalf of the Ethereum address holder.
  93. operationId: getAccountCreationAuthorization
  94. parameters:
  95. - name: hezEthereumAddress
  96. in: path
  97. description: Ethereum address.
  98. required: true
  99. schema:
  100. $ref: '#/components/schemas/HezEthereumAddress'
  101. responses:
  102. '200':
  103. description: Successful operation.
  104. content:
  105. application/json:
  106. schema:
  107. $ref: '#/components/schemas/AccountCreationAuthorization'
  108. '400':
  109. description: Bad request.
  110. content:
  111. application/json:
  112. schema:
  113. $ref: '#/components/schemas/Error400'
  114. '404':
  115. description: Not found.
  116. content:
  117. application/json:
  118. schema:
  119. $ref: '#/components/schemas/Error404'
  120. '500':
  121. description: Internal server error.
  122. content:
  123. application/json:
  124. schema:
  125. $ref: '#/components/schemas/Error500'
  126. '/accounts':
  127. get:
  128. tags:
  129. - Account
  130. summary: Get accounts balances and other associated information.
  131. description: Get accounts balances and other associated information.
  132. operationId: getAccounts
  133. parameters:
  134. - name: hezEthereumAddress
  135. in: query
  136. description: Only get accounts associated to an Ethereum address. Incompatible with the query `BJJ`.
  137. required: false
  138. schema:
  139. $ref: '#/components/schemas/HezEthereumAddress'
  140. - name: BJJ
  141. in: query
  142. description: Only get accounts associated to a BabyJubJub public key. Incompatible with the query `hezEthereumAddress`.
  143. required: false
  144. schema:
  145. $ref: '#/components/schemas/BJJ'
  146. - name: tokenIds
  147. in: query
  148. required: false
  149. description: Only get accounts of specific tokens.
  150. schema:
  151. type: string
  152. description: Comma separated list of token identifiers.
  153. example: "3,87,91"
  154. - name: fromItem
  155. in: query
  156. required: false
  157. description: Indicates the desired first item (using the itemId property) to be included in the response.
  158. schema:
  159. type: number
  160. - name: order
  161. in: query
  162. required: false
  163. description: Order of the returned items. Accounts will be ordered by increasing account index.
  164. schema:
  165. type: string
  166. default: ASC
  167. enum:
  168. - ASC
  169. - DESC
  170. - name: limit
  171. in: query
  172. required: false
  173. description: Maximum number of items to be returned.
  174. schema:
  175. type: integer
  176. minimum: 1
  177. maximum: 2049
  178. responses:
  179. '200':
  180. description: Successful operation.
  181. content:
  182. application/json:
  183. schema:
  184. $ref: '#/components/schemas/Accounts'
  185. '400':
  186. description: Bad request.
  187. content:
  188. application/json:
  189. schema:
  190. $ref: '#/components/schemas/Error400'
  191. '404':
  192. description: Not found.
  193. content:
  194. application/json:
  195. schema:
  196. $ref: '#/components/schemas/Error404'
  197. '500':
  198. description: Internal server error.
  199. content:
  200. application/json:
  201. schema:
  202. $ref: '#/components/schemas/Error500'
  203. '/accounts/{accountIndex}':
  204. get:
  205. tags:
  206. - Account
  207. summary: Get an account by its index.
  208. description: Get an account by its index.
  209. operationId: getAccount
  210. parameters:
  211. - name: accountIndex
  212. in: path
  213. description: Identifier of an account.
  214. required: true
  215. schema:
  216. $ref: '#/components/schemas/AccountIndex'
  217. responses:
  218. '200':
  219. description: Successful operation.
  220. content:
  221. application/json:
  222. schema:
  223. $ref: '#/components/schemas/Account'
  224. '400':
  225. description: Bad request.
  226. content:
  227. application/json:
  228. schema:
  229. $ref: '#/components/schemas/Error400'
  230. '404':
  231. description: Not found.
  232. content:
  233. application/json:
  234. schema:
  235. $ref: '#/components/schemas/Error404'
  236. '500':
  237. description: Internal server error.
  238. content:
  239. application/json:
  240. schema:
  241. $ref: '#/components/schemas/Error500'
  242. '/exits':
  243. get:
  244. tags:
  245. - Account
  246. summary: Get exit information. This information is required to perform a withdraw.
  247. description: Get exit information. This information is required to perform a withdraw.
  248. operationId: getExits
  249. parameters:
  250. - name: tokenId
  251. in: query
  252. required: false
  253. description: Only get exits of specific token
  254. schema:
  255. $ref: '#/components/schemas/TokenId'
  256. - name: hezEthereumAddress
  257. in: query
  258. description: Get exits associated to a Ethereum address. Incompatible with query `BJJ` and `accountIndex`.
  259. required: false
  260. schema:
  261. $ref: '#/components/schemas/HezEthereumAddress'
  262. - name: BJJ
  263. in: query
  264. description: Get exits associated to a BabyJubJub public key. Incompatible with query `hezEthereumAddress` and `accountIndex`.
  265. required: false
  266. schema:
  267. $ref: '#/components/schemas/BJJ'
  268. - name: accountIndex
  269. in: query
  270. description: Get exits associated to a specific account. Incompatible with queries `tokenId`, `hezEthereumAddress` and `BJJ`.
  271. required: false
  272. schema:
  273. $ref: '#/components/schemas/AccountIndex'
  274. - name: batchNum
  275. in: query
  276. description: Get exits from the exit tree of a specific batch.
  277. required: false
  278. schema:
  279. $ref: '#/components/schemas/BatchNum'
  280. - name: fromItem
  281. in: query
  282. required: false
  283. description: Indicates the desired first item (using the itemId property) to be included in the response.
  284. schema:
  285. type: number
  286. - name: order
  287. in: query
  288. required: false
  289. description: Order of the returned items. Exits will be ordered by increasing (batchNum, accountIndex).
  290. schema:
  291. type: string
  292. default: ASC
  293. enum:
  294. - ASC
  295. - DESC
  296. - name: limit
  297. in: query
  298. required: false
  299. description: Maximum number of items to be returned.
  300. schema:
  301. type: integer
  302. minimum: 1
  303. maximum: 2049
  304. responses:
  305. '200':
  306. description: Successful operation.
  307. content:
  308. application/json:
  309. schema:
  310. $ref: '#/components/schemas/Exits'
  311. '400':
  312. description: Bad request.
  313. content:
  314. application/json:
  315. schema:
  316. $ref: '#/components/schemas/Error400'
  317. '404':
  318. description: Not found.
  319. content:
  320. application/json:
  321. schema:
  322. $ref: '#/components/schemas/Error404'
  323. '500':
  324. description: Internal server error.
  325. content:
  326. application/json:
  327. schema:
  328. $ref: '#/components/schemas/Error500'
  329. '/exits/{batchNum}/{accountIndex}':
  330. get:
  331. tags:
  332. - Account
  333. summary: Get specific exit information.
  334. 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.
  335. operationId: getExit
  336. parameters:
  337. - name: batchNum
  338. in: path
  339. description: Batch of the exit tree.
  340. required: true
  341. schema:
  342. $ref: '#/components/schemas/BatchNum'
  343. - name: accountIndex
  344. in: path
  345. description: Account identifier.
  346. required: true
  347. schema:
  348. $ref: '#/components/schemas/AccountIndex'
  349. responses:
  350. '200':
  351. description: Successful operation.
  352. content:
  353. application/json:
  354. schema:
  355. $ref: '#/components/schemas/Exit'
  356. '400':
  357. description: Bad request.
  358. content:
  359. application/json:
  360. schema:
  361. $ref: '#/components/schemas/Error400'
  362. '404':
  363. description: Not found.
  364. content:
  365. application/json:
  366. schema:
  367. $ref: '#/components/schemas/Error404'
  368. '500':
  369. description: Internal server error.
  370. content:
  371. application/json:
  372. schema:
  373. $ref: '#/components/schemas/Error500'
  374. '/transactions-pool':
  375. post:
  376. tags:
  377. - Transaction
  378. summary: Add an L2 transaction to the coordinator's pool
  379. description: >-
  380. Send L2 transaction. The transaction will be stored in the transaction pool of the coordinator and eventually forged.
  381. operationId: postTx
  382. requestBody:
  383. description: Signed transaction.
  384. required: true
  385. content:
  386. application/json:
  387. schema:
  388. $ref: '#/components/schemas/PostPoolL2Transaction'
  389. responses:
  390. '200':
  391. description: Successful operation.
  392. content:
  393. application/json:
  394. schema:
  395. $ref: '#/components/schemas/TransactionId'
  396. '400':
  397. description: Bad request.
  398. content:
  399. application/json:
  400. schema:
  401. $ref: '#/components/schemas/Error400'
  402. '500':
  403. description: Internal server error.
  404. content:
  405. application/json:
  406. schema:
  407. $ref: '#/components/schemas/Error500'
  408. '/transactions-pool/{id}':
  409. get:
  410. tags:
  411. - Transaction
  412. summary: Get details and status of a transaction that is in the pool.
  413. description: >-
  414. 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.
  415. Only transactions from the pool will be returned.
  416. Note that the transaction pool is different for each coordinator and therefore only a coordinator that has received a specific transaction
  417. will be able to provide information about that transaction.
  418. operationId: getPoolTx
  419. parameters:
  420. - name: id
  421. in: path
  422. description: Transaction identifier.
  423. required: true
  424. schema:
  425. $ref: '#/components/schemas/TransactionId'
  426. responses:
  427. '200':
  428. description: Successful operation.
  429. content:
  430. application/json:
  431. schema:
  432. $ref: '#/components/schemas/PoolL2Transaction'
  433. '400':
  434. description: Bad request.
  435. content:
  436. application/json:
  437. schema:
  438. $ref: '#/components/schemas/Error400'
  439. '404':
  440. description: Not found.
  441. content:
  442. application/json:
  443. schema:
  444. $ref: '#/components/schemas/Error404'
  445. '500':
  446. description: Internal server error.
  447. content:
  448. application/json:
  449. schema:
  450. $ref: '#/components/schemas/Error500'
  451. '/transactions-history':
  452. get:
  453. tags:
  454. - Transaction
  455. summary: Get details and status of transactions that have been forged.
  456. description: >-
  457. Get historical transactions. This endpoint will return all the different types of transactions except for:
  458. - Transactions that are still in the transaction pool of any coordinator. These transactions can be fetched using `GET /transactions-pool/{id}`.
  459. - L1 transactions sent by users that have not been forged yet. These transactions can be fetched using `GET /transactions-history/{id}`.
  460. operationId: getHistoryTxs
  461. parameters:
  462. - name: tokenId
  463. in: query
  464. required: false
  465. description: Only get transactions of specific token
  466. schema:
  467. $ref: '#/components/schemas/TokenId'
  468. - name: hezEthereumAddress
  469. in: query
  470. required: false
  471. description: Only get transactions sent from or to an account associated to an Ethereum address Incompatible with the queries `BJJ` and `accountIndex`.
  472. schema:
  473. $ref: '#/components/schemas/HezEthereumAddress'
  474. - name: BJJ
  475. in: query
  476. description: Only get transactions associated to a BabyJubJub public key. Incompatible with the queries `hezEthereumAddress` and `accountIndex`.
  477. required: false
  478. schema:
  479. $ref: '#/components/schemas/BJJ'
  480. - name: accountIndex
  481. in: query
  482. required: false
  483. description: Only get transactions sent from or to a specific account. Incompatible with the queries `tokenId`, `hezEthereumAddress` and `BJJ`.
  484. schema:
  485. $ref: '#/components/schemas/AccountIndex'
  486. - name: batchNum
  487. in: query
  488. required: false
  489. description: Only get transactions forged in a specific batch.
  490. schema:
  491. $ref: '#/components/schemas/BatchNum'
  492. - name: type
  493. in: query
  494. required: false
  495. description: Only get transactions of a specific type.
  496. schema:
  497. $ref: '#/components/schemas/TransactionType'
  498. - name: fromItem
  499. in: query
  500. required: false
  501. description: Indicates the desired first item (using the itemId property) to be included in the response.
  502. schema:
  503. type: number
  504. - name: order
  505. in: query
  506. required: false
  507. description: Order of the returned items. History transactions will be ordered by (batchNum, position).
  508. schema:
  509. type: string
  510. default: ASC
  511. enum:
  512. - ASC
  513. - DESC
  514. - name: limit
  515. in: query
  516. required: false
  517. description: Maximum number of items to be returned.
  518. schema:
  519. type: integer
  520. minimum: 1
  521. maximum: 2049
  522. responses:
  523. '200':
  524. description: Successful operation.
  525. content:
  526. application/json:
  527. schema:
  528. $ref: '#/components/schemas/HistoryTransactions'
  529. '400':
  530. description: Bad request.
  531. content:
  532. application/json:
  533. schema:
  534. $ref: '#/components/schemas/Error400'
  535. '404':
  536. description: Not found.
  537. content:
  538. application/json:
  539. schema:
  540. $ref: '#/components/schemas/Error404'
  541. '500':
  542. description: Internal server error.
  543. content:
  544. application/json:
  545. schema:
  546. $ref: '#/components/schemas/Error500'
  547. '/transactions-history/{id}':
  548. get:
  549. tags:
  550. - Transaction
  551. summary: Get details and status of a historical transaction.
  552. description: >-
  553. Get transaction from the history by its id. This endpoint will return all the different types of transactions except those that are still in the pool of any coordinator.
  554. operationId: getHistoryTx
  555. parameters:
  556. - name: id
  557. in: path
  558. description: Transaction identifier.
  559. required: true
  560. schema:
  561. $ref: '#/components/schemas/TransactionId'
  562. responses:
  563. '200':
  564. description: Successful operation.
  565. content:
  566. application/json:
  567. schema:
  568. $ref: '#/components/schemas/HistoryTransaction'
  569. '400':
  570. description: Bad request.
  571. content:
  572. application/json:
  573. schema:
  574. $ref: '#/components/schemas/Error400'
  575. '404':
  576. description: Not found.
  577. content:
  578. application/json:
  579. schema:
  580. $ref: '#/components/schemas/Error404'
  581. '500':
  582. description: Internal server error.
  583. content:
  584. application/json:
  585. schema:
  586. $ref: '#/components/schemas/Error500'
  587. '/batches':
  588. get:
  589. tags:
  590. - Hermez status
  591. summary: Get information about forged batches.
  592. description: >-
  593. Get information about forged batches.
  594. operationId: getBatches
  595. parameters:
  596. - name: minBatchNum
  597. in: query
  598. required: false
  599. description: Include only `batchNum < minBatchNum` batches.
  600. schema:
  601. $ref: '#/components/schemas/BatchNum'
  602. - name: maxBatchNum
  603. in: query
  604. required: false
  605. description: Include only `batchNum > maxBatchNum` batches.
  606. schema:
  607. type: number
  608. - name: slotNum
  609. in: query
  610. required: false
  611. description: Include only batches that were forged within the specified slot.
  612. schema:
  613. $ref: '#/components/schemas/SlotNum'
  614. - name: forgerAddr
  615. in: query
  616. required: false
  617. description: Include only batches forged by `forgerAddr`
  618. schema:
  619. $ref: '#/components/schemas/EthereumAddress'
  620. - name: fromItem
  621. in: query
  622. required: false
  623. description: Indicates the desired first item (using the itemId property) to be included in the response.
  624. schema:
  625. type: number
  626. - name: order
  627. in: query
  628. required: false
  629. description: Order of the returned items. Batches will be ordered by increasing `batchNum`.
  630. schema:
  631. type: string
  632. default: ASC
  633. enum:
  634. - ASC
  635. - DESC
  636. - name: limit
  637. in: query
  638. required: false
  639. description: Maximum number of items to be returned.
  640. schema:
  641. type: integer
  642. minimum: 1
  643. maximum: 2049
  644. responses:
  645. '200':
  646. description: Successful operation.
  647. content:
  648. application/json:
  649. schema:
  650. $ref: '#/components/schemas/Batches'
  651. '400':
  652. description: Bad request.
  653. content:
  654. application/json:
  655. schema:
  656. $ref: '#/components/schemas/Error400'
  657. '404':
  658. description: Not found.
  659. content:
  660. application/json:
  661. schema:
  662. $ref: '#/components/schemas/Error404'
  663. '500':
  664. description: Internal server error.
  665. content:
  666. application/json:
  667. schema:
  668. $ref: '#/components/schemas/Error500'
  669. '/batches/{batchNum}':
  670. get:
  671. tags:
  672. - Hermez status
  673. summary: Get a specific batch.
  674. description: >-
  675. Get a specific batch.
  676. operationId: getBatch
  677. parameters:
  678. - name: batchNum
  679. in: path
  680. description: Batch identifier.
  681. required: true
  682. schema:
  683. $ref: '#/components/schemas/BatchNum'
  684. responses:
  685. '200':
  686. description: Successful operation
  687. content:
  688. application/json:
  689. schema:
  690. $ref: '#/components/schemas/Batch'
  691. '400':
  692. description: Bad request.
  693. content:
  694. application/json:
  695. schema:
  696. $ref: '#/components/schemas/Error400'
  697. '404':
  698. description: Not found.
  699. content:
  700. application/json:
  701. schema:
  702. $ref: '#/components/schemas/Error404'
  703. '500':
  704. description: Internal server error.
  705. content:
  706. application/json:
  707. schema:
  708. $ref: '#/components/schemas/Error500'
  709. '/full-batches/{batchNum}':
  710. get:
  711. tags:
  712. - Hermez status
  713. summary: Get a full batch
  714. description: >-
  715. Get a specific batch, including the associated transactions. The object returned in this method can be a bit heavy.
  716. If you're devloping a front end, you may consider using a combinaton of `GET /batches/{batchnum}` and `GET /history-transactions?batchNum={batchNum}`.
  717. operationId: getFullBatch
  718. parameters:
  719. - name: batchNum
  720. in: path
  721. description: Batch identifier
  722. required: true
  723. schema:
  724. $ref: '#/components/schemas/BatchNum'
  725. responses:
  726. '200':
  727. description: successful operation
  728. content:
  729. application/json:
  730. schema:
  731. $ref: '#/components/schemas/FullBatch'
  732. '400':
  733. description: Bad request.
  734. content:
  735. application/json:
  736. schema:
  737. $ref: '#/components/schemas/Error400'
  738. '404':
  739. description: Not found.
  740. content:
  741. application/json:
  742. schema:
  743. $ref: '#/components/schemas/Error404'
  744. '500':
  745. description: Internal server error.
  746. content:
  747. application/json:
  748. schema:
  749. $ref: '#/components/schemas/Error500'
  750. '/slots':
  751. get:
  752. tags:
  753. - Hermez status
  754. summary: Get information about slots.
  755. description: >-
  756. Get information about slots.
  757. operationId: getSlots
  758. parameters:
  759. - name: minSlotNum
  760. in: query
  761. required: false
  762. description: Only include batches with `slotNum < minSlotNum`.
  763. schema:
  764. $ref: '#/components/schemas/SlotNum'
  765. - name: maxSlothNum
  766. in: query
  767. required: false
  768. description: Only include batches with `slotNum > maxSlotNum`.
  769. schema:
  770. $ref: '#/components/schemas/SlotNum'
  771. - name: wonByEthereumAddress
  772. in: query
  773. required: false
  774. description: Only include slots won by a coordinator whose `forgerAddr == wonByEthereumAddress`.
  775. schema:
  776. $ref: '#/components/schemas/EthereumAddress'
  777. - name: finishedAuction
  778. in: query
  779. required: false
  780. description: If set to true, only include slots whose auction has finished.
  781. schema:
  782. type: boolean
  783. - name: fromItem
  784. in: query
  785. required: false
  786. description: Indicates the desired first item (using the itemId property) to be included in the response.
  787. schema:
  788. type: number
  789. - name: order
  790. in: query
  791. required: false
  792. description: Order of the returned items. Slots will be ordered by increasing `slotNum`.
  793. schema:
  794. type: string
  795. default: ASC
  796. enum:
  797. - ASC
  798. - DESC
  799. - name: limit
  800. in: query
  801. required: false
  802. description: Maximum number of items to be returned.
  803. schema:
  804. type: integer
  805. minimum: 1
  806. maximum: 2049
  807. responses:
  808. '200':
  809. description: Successful operation.
  810. content:
  811. application/json:
  812. schema:
  813. $ref: '#/components/schemas/Slots'
  814. '400':
  815. description: Bad request.
  816. content:
  817. application/json:
  818. schema:
  819. $ref: '#/components/schemas/Error400'
  820. '404':
  821. description: Not found.
  822. content:
  823. application/json:
  824. schema:
  825. $ref: '#/components/schemas/Error404'
  826. '500':
  827. description: Internal server error.
  828. content:
  829. application/json:
  830. schema:
  831. $ref: '#/components/schemas/Error500'
  832. '/slots/{slotNum}':
  833. get:
  834. tags:
  835. - Hermez status
  836. summary: Get information about a specific slot.
  837. description: >-
  838. Get information about a specific slot.
  839. operationId: getSlot
  840. parameters:
  841. - name: slotNum
  842. in: path
  843. required: true
  844. description: Identifier of the slot.
  845. schema:
  846. $ref: '#/components/schemas/SlotNum'
  847. responses:
  848. '200':
  849. description: Successful operation.
  850. content:
  851. application/json:
  852. schema:
  853. $ref: '#/components/schemas/Slot'
  854. '400':
  855. description: Bad request.
  856. content:
  857. application/json:
  858. schema:
  859. $ref: '#/components/schemas/Error400'
  860. '404':
  861. description: Not found.
  862. content:
  863. application/json:
  864. schema:
  865. $ref: '#/components/schemas/Error404'
  866. '500':
  867. description: Internal server error.
  868. content:
  869. application/json:
  870. schema:
  871. $ref: '#/components/schemas/Error500'
  872. '/bids':
  873. get:
  874. tags:
  875. - Hermez status
  876. summary: Get a list of bids made for a specific slot auction.
  877. description: Get a list of bids made for a specific slot auction.
  878. operationId: getSlotBids
  879. parameters:
  880. - name: slotNum
  881. in: query
  882. description: Slot identifier. Specify the auction where the returned bids were made.
  883. required: false
  884. schema:
  885. $ref: '#/components/schemas/SlotNum'
  886. - name: forgerAddr
  887. in: query
  888. description: Get only bids made by a coordinator identified by its forger address.
  889. required: false
  890. schema:
  891. $ref: '#/components/schemas/EthereumAddress'
  892. - name: fromItem
  893. in: query
  894. required: false
  895. description: Indicates the desired first item (using the itemId property) to be included in the response.
  896. schema:
  897. type: number
  898. - name: order
  899. in: query
  900. required: false
  901. description: Order of the returned items. Bids will be ordered by increasing (slotNum, bidValue)`.
  902. schema:
  903. type: string
  904. default: ASC
  905. enum:
  906. - ASC
  907. - DESC
  908. - name: limit
  909. in: query
  910. required: false
  911. description: Maximum number of items to be returned.
  912. schema:
  913. type: integer
  914. minimum: 1
  915. maximum: 2049
  916. responses:
  917. '200':
  918. description: Successful operation
  919. content:
  920. application/json:
  921. schema:
  922. $ref: '#/components/schemas/Bids'
  923. '400':
  924. description: Bad request.
  925. content:
  926. application/json:
  927. schema:
  928. $ref: '#/components/schemas/Error400'
  929. '404':
  930. description: Not found.
  931. content:
  932. application/json:
  933. schema:
  934. $ref: '#/components/schemas/Error404'
  935. '500':
  936. description: Internal server error.
  937. content:
  938. application/json:
  939. schema:
  940. $ref: '#/components/schemas/Error500'
  941. '/state':
  942. get:
  943. tags:
  944. - Hermez status
  945. summary: Return information that represents the current state of the network.
  946. description: Return information that represents the current state of the network. It also includes metrics and statistics.
  947. operationId: getState
  948. responses:
  949. '200':
  950. description: Successful operation.
  951. content:
  952. application/json:
  953. schema:
  954. $ref: '#/components/schemas/State'
  955. '400':
  956. description: Bad request.
  957. content:
  958. application/json:
  959. schema:
  960. $ref: '#/components/schemas/Error400'
  961. '500':
  962. description: Internal server error.
  963. content:
  964. application/json:
  965. schema:
  966. $ref: '#/components/schemas/Error500'
  967. '/config':
  968. get:
  969. tags:
  970. - Hermez status
  971. summary: Return constant configuration of the network.
  972. description: Return constant configuration of the network.
  973. operationId: getConfig
  974. responses:
  975. '200':
  976. description: Successful operation.
  977. content:
  978. application/json:
  979. schema:
  980. $ref: '#/components/schemas/Config'
  981. '500':
  982. description: Internal server error.
  983. content:
  984. application/json:
  985. schema:
  986. $ref: '#/components/schemas/Error500'
  987. '/tokens':
  988. get:
  989. tags:
  990. - Hermez status
  991. summary: Get information of the supported tokens in the Hermez network.
  992. description: Get information of the supported tokens in the Hermez network.
  993. operationId: getTokens
  994. parameters:
  995. - name: ids
  996. in: query
  997. required: false
  998. description: Include only specific tokens by their Hermez identifiers.
  999. schema:
  1000. type: string
  1001. description: Comma separated list of token identifiers
  1002. example: "2,44,689"
  1003. - name: symbols
  1004. in: query
  1005. required: false
  1006. description: Include only specific tokens by their symbols.
  1007. schema:
  1008. type: string
  1009. description: Comma separated list of token symbols.
  1010. example: "DAI,NEC,UMA"
  1011. - name: name
  1012. in: query
  1013. required: false
  1014. description: Include token(s) by their names (or a substring of the name).
  1015. schema:
  1016. type: string
  1017. - name: fromItem
  1018. in: query
  1019. required: false
  1020. description: Indicates the desired first item (using the itemId property) to be included in the response.
  1021. schema:
  1022. type: number
  1023. - name: order
  1024. in: query
  1025. required: false
  1026. description: Order of the returned items. Tokens will be ordered by increasing tokenID.
  1027. schema:
  1028. type: string
  1029. default: ASC
  1030. enum:
  1031. - ASC
  1032. - DESC
  1033. - name: limit
  1034. in: query
  1035. required: false
  1036. description: Maximum number of items to be returned.
  1037. schema:
  1038. type: integer
  1039. minimum: 1
  1040. maximum: 2049
  1041. responses:
  1042. '200':
  1043. description: Successful operation.
  1044. content:
  1045. application/json:
  1046. schema:
  1047. $ref: '#/components/schemas/Tokens'
  1048. '400':
  1049. description: Bad request.
  1050. content:
  1051. application/json:
  1052. schema:
  1053. $ref: '#/components/schemas/Error400'
  1054. '404':
  1055. description: Not found.
  1056. content:
  1057. application/json:
  1058. schema:
  1059. $ref: '#/components/schemas/Error404'
  1060. '500':
  1061. description: Internal server error.
  1062. content:
  1063. application/json:
  1064. schema:
  1065. $ref: '#/components/schemas/Error500'
  1066. '/tokens/{id}':
  1067. get:
  1068. tags:
  1069. - Hermez status
  1070. summary: Get information of a token supported by Hermez network.
  1071. description: Get information of a token supported by Hermez network.
  1072. operationId: getToken
  1073. parameters:
  1074. - name: id
  1075. in: path
  1076. description: Token identifier
  1077. required: true
  1078. schema:
  1079. $ref: '#/components/schemas/TokenId'
  1080. responses:
  1081. '200':
  1082. description: Successful operation.
  1083. content:
  1084. application/json:
  1085. schema:
  1086. $ref: '#/components/schemas/Token'
  1087. '400':
  1088. description: Bad request.
  1089. content:
  1090. application/json:
  1091. schema:
  1092. $ref: '#/components/schemas/Error400'
  1093. '404':
  1094. description: Not found.
  1095. content:
  1096. application/json:
  1097. schema:
  1098. $ref: '#/components/schemas/Error404'
  1099. '500':
  1100. description: Internal server error.
  1101. content:
  1102. application/json:
  1103. schema:
  1104. $ref: '#/components/schemas/Error500'
  1105. '/coordinators':
  1106. get:
  1107. tags:
  1108. - Hermez status
  1109. summary: Get information about coordinators.
  1110. description: Get information about coordinators.
  1111. operationId: getCoordinators
  1112. parameters:
  1113. - name: fromItem
  1114. in: query
  1115. required: false
  1116. description: Indicates the desired first item (using the itemId property) to be included in the response.
  1117. schema:
  1118. type: number
  1119. - name: order
  1120. in: query
  1121. required: false
  1122. description: Order of the returned items. Coordinators will be ordered by increasing (ethereumBlock, forgerAddr).
  1123. schema:
  1124. type: string
  1125. default: ASC
  1126. enum:
  1127. - ASC
  1128. - DESC
  1129. - name: limit
  1130. in: query
  1131. required: false
  1132. description: Maximum number of items to be returned.
  1133. schema:
  1134. type: integer
  1135. minimum: 1
  1136. maximum: 2049
  1137. responses:
  1138. '200':
  1139. description: Successful operation.
  1140. content:
  1141. application/json:
  1142. schema:
  1143. $ref: '#/components/schemas/Coordinators'
  1144. '400':
  1145. description: Bad request.
  1146. content:
  1147. application/json:
  1148. schema:
  1149. $ref: '#/components/schemas/Error400'
  1150. '500':
  1151. description: Internal server error.
  1152. content:
  1153. application/json:
  1154. schema:
  1155. $ref: '#/components/schemas/Error500'
  1156. '/coordinators/{bidderAddr}':
  1157. get:
  1158. tags:
  1159. - Hermez status
  1160. summary: Get the information of a coordinator.
  1161. description: Get the information of a coordinator.
  1162. operationId: getCoordinator
  1163. parameters:
  1164. - name: bidderAddr
  1165. in: path
  1166. description: Coordinator identifier
  1167. required: true
  1168. schema:
  1169. $ref: '#/components/schemas/EthereumAddress'
  1170. responses:
  1171. '200':
  1172. description: Successful operation.
  1173. content:
  1174. application/json:
  1175. schema:
  1176. $ref: '#/components/schemas/Coordinator'
  1177. '400':
  1178. description: Bad request.
  1179. content:
  1180. application/json:
  1181. schema:
  1182. $ref: '#/components/schemas/Error400'
  1183. '404':
  1184. description: Not found.
  1185. content:
  1186. application/json:
  1187. schema:
  1188. $ref: '#/components/schemas/Error404'
  1189. '500':
  1190. description: Internal server error.
  1191. content:
  1192. application/json:
  1193. schema:
  1194. $ref: '#/components/schemas/Error500'
  1195. components:
  1196. schemas:
  1197. ItemId:
  1198. type: integer
  1199. description: Position of the item in the DB. This is useful for pagination, but has nothing to do with the protocol.
  1200. PostPoolL2Transaction:
  1201. type: object
  1202. description: L2 transaction to be posted.
  1203. properties:
  1204. id:
  1205. $ref: '#/components/schemas/TransactionId'
  1206. type:
  1207. $ref: '#/components/schemas/TransactionTypeL2'
  1208. tokenId:
  1209. $ref: '#/components/schemas/TokenId'
  1210. fromAccountIndex:
  1211. $ref: '#/components/schemas/AccountIndex'
  1212. toAccountIndex:
  1213. type: string
  1214. description: >-
  1215. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1216. The identifier is built using: `hez:` + `token symbol:` + `index`. If this is provided, toHezEthereumAddress and toBjj
  1217. must be null. To perform an exit the value hez:EXIT:1 must be used.
  1218. example: null
  1219. nullable: true
  1220. toHezEthereumAddress:
  1221. type: string
  1222. description: "Address of an Etherum account linked to the Hermez network. If this is provided, toAccountIndex and toBjj must be null."
  1223. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1224. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1225. nullable: true
  1226. toBjj:
  1227. type: string
  1228. description: >-
  1229. 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.
  1230. If this is prvided, toAccountIndex must be null and toHezEthereumAddress must be hez:0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.
  1231. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1232. example: null
  1233. nullable: true
  1234. amount:
  1235. allOf:
  1236. - $ref: '#/components/schemas/BigInt'
  1237. - description: Amount of tokens to be sent.
  1238. example: "6300000000000000000"
  1239. fee:
  1240. $ref: '#/components/schemas/FeeSelector'
  1241. nonce:
  1242. $ref: '#/components/schemas/Nonce'
  1243. signature:
  1244. allOf:
  1245. - $ref: '#/components/schemas/BJJSignature'
  1246. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1247. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1248. requestFromAccountIndex:
  1249. type: string
  1250. description: References the `fromAccountIndex` of the requested transaction.
  1251. example: null
  1252. nullable: true
  1253. requestToAccountIndex:
  1254. type: string
  1255. description: References the `toAccountIndex` of the requested transaction.
  1256. example: null
  1257. nullable: true
  1258. requestToHezEthereumAddress:
  1259. type: string
  1260. description: References the `toHezEthereumAddress` of the requested transaction.
  1261. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1262. example: null
  1263. nullable: true
  1264. requestToBjj:
  1265. type: string
  1266. description: References the `toBjj` of the requested transaction.
  1267. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1268. example: null
  1269. nullable: true
  1270. requestTokenId:
  1271. type: integer
  1272. description: References the `tokenId` of the requested transaction.
  1273. example: null
  1274. nullable: true
  1275. requestAmount:
  1276. type: string
  1277. description: References the `amount` of the requested transaction.
  1278. example: null
  1279. nullable: true
  1280. requestFee:
  1281. type: integer
  1282. description: References the `fee` of the requested transaction.
  1283. example: null
  1284. nullable: true
  1285. requestNonce:
  1286. type: integer
  1287. description: References the `nonce` of the requested transaction.
  1288. example: null
  1289. nullable: true
  1290. required:
  1291. - id
  1292. - type
  1293. - tokenId
  1294. - fromAccountIndex
  1295. - amount
  1296. - fee
  1297. - nonce
  1298. - signature
  1299. PoolL2Transaction:
  1300. type: object
  1301. properties:
  1302. id:
  1303. $ref: '#/components/schemas/TransactionId'
  1304. type:
  1305. $ref: '#/components/schemas/TransactionTypeL2'
  1306. fromAccountIndex:
  1307. $ref: '#/components/schemas/AccountIndex'
  1308. toAccountIndex:
  1309. type: string
  1310. description: >-
  1311. Identifier of the destination account. It references the position where the account is inside the state Merkle tree.
  1312. The identifier is built using: `hez:` + `token symbol:` + `index`
  1313. example: "hez:DAI:309"
  1314. nullable: true
  1315. toHezEthereumAddress:
  1316. type: string
  1317. description: "Address of an Etherum account linked to the Hermez network."
  1318. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1319. example: null
  1320. nullable: true
  1321. toBjj:
  1322. type: string
  1323. description: "BabyJubJub public key, encoded as base64 URL (RFC 4648), which result in 33 bytes. The padding byte is replaced by a sum of the encoded bytes."
  1324. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1325. example: null
  1326. nullable: true
  1327. amount:
  1328. allOf:
  1329. - $ref: '#/components/schemas/BigInt'
  1330. - description: Amount of tokens to be sent.
  1331. example: "6303020000000000000"
  1332. fee:
  1333. $ref: '#/components/schemas/FeeSelector'
  1334. nonce:
  1335. $ref: '#/components/schemas/Nonce'
  1336. state:
  1337. $ref: '#/components/schemas/PoolL2TransactionState'
  1338. signature:
  1339. allOf:
  1340. - $ref: '#/components/schemas/BJJSignature'
  1341. - description: Signature of the transaction. More info [here](https://idocs.hermez.io/#/spec/zkrollup/README?id=l2a-idl2).
  1342. - example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1343. timestamp:
  1344. type: string
  1345. description: Moment in which the transaction was added to the pool.
  1346. format: date-time
  1347. batchNum:
  1348. type: integer
  1349. description: Identifier of a batch. Every new forged batch increments by one the batchNum, starting at 0.
  1350. minimum: 0
  1351. maximum: 4294967295
  1352. nullable: true
  1353. example: null
  1354. requestFromAccountIndex:
  1355. type: string
  1356. description: >-
  1357. Identifier of an 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. nullable: true
  1360. example: null
  1361. requestToAccountIndex:
  1362. type: string
  1363. description: >-
  1364. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1365. The identifier is built using: `hez:` + `token symbol:` + `index`
  1366. nullable: true
  1367. example: null
  1368. requestToHezEthereumAddress:
  1369. type: string
  1370. description: "Address of an Etherum account linked to the Hermez network."
  1371. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1372. nullable: true
  1373. example: null
  1374. requestToBJJ:
  1375. type: string
  1376. 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."
  1377. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1378. nullable: true
  1379. example: null
  1380. requestTokenId:
  1381. type: integer
  1382. description: References the `tokenId` of the requested transaction.
  1383. example: null
  1384. nullable: true
  1385. requestAmount:
  1386. type: string
  1387. description: BigInt is an integer encoded as a string for numbers that are very large.
  1388. nullable: true
  1389. example: null
  1390. requestFee:
  1391. type: integer
  1392. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1393. minimum: 0
  1394. maximum: 256
  1395. nullable: true
  1396. example: null
  1397. requestNonce:
  1398. type: integer
  1399. description: Number that can only be used once per account. Increments by one with each transaction.
  1400. minimum: 0
  1401. maximum: 1.84467440737096e+19
  1402. nullable: true
  1403. example: null
  1404. token:
  1405. $ref: '#/components/schemas/Token'
  1406. required:
  1407. - id
  1408. - type
  1409. - fromAccountIndex
  1410. - toAccountIndex
  1411. - toHezEthereumAddress
  1412. - toBjj
  1413. - amount
  1414. - fee
  1415. - nonce
  1416. - state
  1417. - signature
  1418. - timestamp
  1419. - batchNum
  1420. - requestFromAccountIndex
  1421. - requestToAccountIndex
  1422. - requestToHezEthereumAddress
  1423. - requestToBJJ
  1424. - requestTokenId
  1425. - requestAmount
  1426. - requestFee
  1427. - requestNonce
  1428. - token
  1429. TransactionId:
  1430. type: string
  1431. 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)
  1432. example: "0x00000000000001e240004700"
  1433. EthereumAddress:
  1434. type: string
  1435. description: "Address of an Etherum account."
  1436. pattern: "^0x[a-fA-F0-9]{40}$"
  1437. example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1438. HezEthereumAddress:
  1439. type: string
  1440. description: "Address of an Etherum account linked to the Hermez network."
  1441. pattern: "^hez:0x[a-fA-F0-9]{40}$"
  1442. example: "hez:0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1443. BJJ:
  1444. type: string
  1445. 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."
  1446. pattern: "^hez:[A-Za-z0-9_-]{44}$"
  1447. example: "hez:rR7LXKal-av7I56Y0dEBCVmwc9zpoLY5ERhy5w7G-xwe"
  1448. AccountIndex:
  1449. type: string
  1450. description: >-
  1451. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1452. The identifier is built using: `hez:` + `token symbol:` + `index`
  1453. example: "hez:DAI:4444"
  1454. TransactionType:
  1455. type: string
  1456. description: Type of transaction.
  1457. enum:
  1458. - Exit
  1459. - Transfer
  1460. - Deposit
  1461. - CreateAccountDeposit
  1462. - CreateAccountDepositTransfer
  1463. - DepositTransfer
  1464. - ForceTransfer
  1465. - ForceExit
  1466. - TransferToEthAddr
  1467. - TransferToBJJ
  1468. TransactionTypeL2:
  1469. type: string
  1470. description: Type of transaction.
  1471. enum:
  1472. - Exit
  1473. - Transfer
  1474. - TransferToEthAddr
  1475. - TransferToBJJ
  1476. TokenId:
  1477. type: integer
  1478. description: Identifier of a token registered in the network.
  1479. minimum: 0
  1480. maximum: 4294967295
  1481. example: 98765
  1482. BigInt:
  1483. type: string
  1484. description: BigInt is an integer encoded as a string for numbers that are very large.
  1485. example: "8708856933496328593"
  1486. FeeSelector:
  1487. type: integer
  1488. description: Index of the fee type to select, more info [here](https://idocs.hermez.io/#/spec/zkrollup/fee-table?id=transaction-fee-table).
  1489. minimum: 0
  1490. maximum: 256
  1491. example: 36
  1492. Nonce:
  1493. type: integer
  1494. description: Number that can only be used once per account, increments by one at each transaction.
  1495. minimum: 0
  1496. maximum: 1.84467440737096e+19
  1497. example: 121
  1498. PoolL2TransactionState:
  1499. type: string
  1500. description: >
  1501. State of a L2 transaction from the coordinator pool.
  1502. * pend: Pending
  1503. * fing: Forging
  1504. * fged: Forged
  1505. * invl: Invalid
  1506. enum:
  1507. - pend
  1508. - fing
  1509. - fged
  1510. - invl
  1511. ETHSignature:
  1512. type: string
  1513. description: Ethereum signature.
  1514. pattern: "^0x[a-fA-F0-9]{130}$"
  1515. example: "0xf9161cd688394772d93aa3e7b3f8f9553ca4f94f65b7cece93ed4a239d5c0b4677dca6d1d459e3a5c271a34de735d4664a43e5a8960a9a6e027d12c562dd448e1c"
  1516. BJJSignature:
  1517. type: string
  1518. description: BabyJubJub compressed signature.
  1519. pattern: "^[a-fA-F0-9]{128}$"
  1520. example: "72024a43f546b0e1d9d5d7c4c30c259102a9726363adcc4ec7b6aea686bcb5116f485c5542d27c4092ae0ceaf38e3bb44417639bd2070a58ba1aa1aab9d92c03"
  1521. BatchNum:
  1522. type: integer
  1523. description: Identifier of a batch. Every new forged batch increments by one the batchNum, starting at 0.
  1524. minimum: 0
  1525. maximum: 4294967295
  1526. example: 5432
  1527. AccountCreationAuthorizationPost:
  1528. type: object
  1529. properties:
  1530. hezEthereumAddress:
  1531. $ref: '#/components/schemas/HezEthereumAddress'
  1532. bjj:
  1533. $ref: '#/components/schemas/BJJ'
  1534. signature:
  1535. $ref: '#/components/schemas/ETHSignature'
  1536. required:
  1537. - hezEthereumAddress
  1538. - bjj
  1539. - signature
  1540. AccountCreationAuthorization:
  1541. type: object
  1542. properties:
  1543. timestamp:
  1544. type: string
  1545. format: date-time
  1546. hezEthereumAddress:
  1547. $ref: '#/components/schemas/HezEthereumAddress'
  1548. bjj:
  1549. $ref: '#/components/schemas/BJJ'
  1550. signature:
  1551. $ref: '#/components/schemas/ETHSignature'
  1552. required:
  1553. - timestamp
  1554. - hezEthereumAddress
  1555. - bjj
  1556. - signature
  1557. HistoryTransaction:
  1558. type: object
  1559. description: Transaction of the Hermez network
  1560. properties:
  1561. L1orL2:
  1562. type: string
  1563. enum:
  1564. - L1
  1565. - L2
  1566. id:
  1567. $ref: '#/components/schemas/TransactionId'
  1568. itemId:
  1569. $ref: '#/components/schemas/ItemId'
  1570. type:
  1571. $ref: '#/components/schemas/TransactionType'
  1572. position:
  1573. $ref: '#/components/schemas/TransactionPosition'
  1574. fromAccountIndex:
  1575. type: string
  1576. description: >-
  1577. Identifier of an account. It references the position where the account is inside the state Merkle tree.
  1578. The identifier is built using: `hez:` + `token symbol:` + `index`
  1579. example: "hez:DAI:4444"
  1580. nullable: true
  1581. toAccountIndex:
  1582. allOf:
  1583. - $ref: '#/components/schemas/AccountIndex'
  1584. - example: "hez:DAI:672"
  1585. amount:
  1586. allOf:
  1587. - $ref: '#/components/schemas/BigInt'
  1588. - description: Amount of tokens to be sent.
  1589. - example: "4903020000000000000"
  1590. batchNum:
  1591. type: integer
  1592. description: Batch in which the transaction was forged. Null indicates not forged yet.
  1593. minimum: 0
  1594. maximum: 4294967295
  1595. example: 5432
  1596. nullable: true
  1597. historicUSD:
  1598. type: number
  1599. description: Value in USD at the moment the transaction was forged.
  1600. example: 49.7
  1601. nullable: true
  1602. timestamp:
  1603. type: string
  1604. format: date-time
  1605. 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.
  1606. token:
  1607. $ref: '#/components/schemas/Token'
  1608. L1Info:
  1609. type: object
  1610. description: Additional information that only applies to L1 transactions.
  1611. nullable: true
  1612. properties:
  1613. toForgeL1TransactionsNum:
  1614. $ref: '#/components/schemas/ToForgeL1TransactionsNum'
  1615. userOrigin:
  1616. type: boolean
  1617. description: True if the transaction was sent by a user. False if it was sent by a coordinator.
  1618. fromHezEthereumAddress:
  1619. $ref: '#/components/schemas/HezEthereumAddress'
  1620. fromBJJ:
  1621. $ref: '#/components/schemas/BJJ'
  1622. loadAmount:
  1623. allOf:
  1624. - $ref: '#/components/schemas/BigInt'
  1625. - description: Tokens transfered from L1 to L2.
  1626. - example: "4900000000000000000"
  1627. historicLoadAmountUSD:
  1628. type: number
  1629. description: Load amount in USD, at the moment the transaction was made.
  1630. example: 3.897
  1631. nullable: true
  1632. ethereumBlockNum:
  1633. allOf:
  1634. - $ref: '#/components/schemas/EthBlockNum'
  1635. - description: Ethereum block in which the transaction was added to the smart contract forge queue.
  1636. - example: 258723049
  1637. required:
  1638. - toForgeL1TransactionsNum
  1639. - userOrigin
  1640. - fromHezEthereumAddress
  1641. - fromBJJ
  1642. - loadAmount
  1643. - historicLoadAmountUSD
  1644. - ethereumBlockNum
  1645. additionalProperties: false
  1646. L2Info:
  1647. type: object
  1648. description: Additional information that only applies to L2 transactions.
  1649. nullable: true
  1650. properties:
  1651. fee:
  1652. $ref: '#/components/schemas/FeeSelector'
  1653. historicFeeUSD:
  1654. type: number
  1655. description: Fee in USD, at the moment the transaction was forged.
  1656. example: 263.89
  1657. nullable: true
  1658. nonce:
  1659. $ref: '#/components/schemas/Nonce'
  1660. example: null
  1661. required:
  1662. - fee
  1663. - historicFeeUSD
  1664. - nonce
  1665. additionalProperties: false
  1666. required:
  1667. - L1orL2
  1668. - id
  1669. - itemId
  1670. - type
  1671. - position
  1672. - fromAccountIndex
  1673. - toAccountIndex
  1674. - amount
  1675. - batchNum
  1676. - historicUSD
  1677. - timestamp
  1678. - token
  1679. - L1Info
  1680. - L2Info
  1681. additionalProperties: false
  1682. HistoryTransactions:
  1683. type: object
  1684. properties:
  1685. transactions:
  1686. type: array
  1687. description: List of history transactions.
  1688. items:
  1689. $ref: '#/components/schemas/HistoryTransaction'
  1690. pagination:
  1691. $ref: '#/components/schemas/PaginationInfo'
  1692. required:
  1693. - transactions
  1694. - pagination
  1695. additionalProperties: false
  1696. EthBlockNum:
  1697. type: integer
  1698. description: Ethereum block number
  1699. minimum: 0
  1700. maximum: 1.84467440737096e+19
  1701. example: 762375478
  1702. ToForgeL1TransactionsNum:
  1703. type: integer
  1704. description: Reference to know in which batch a L1 transaction was forged / will be forged.
  1705. minimum: 0
  1706. maximum: 4294967295
  1707. example: 784
  1708. nullable: true
  1709. TransactionPosition:
  1710. type: integer
  1711. description: Position that a transaction occupies in a batch.
  1712. minimum: 0
  1713. example: 5
  1714. URL:
  1715. type: string
  1716. description: HTTP URL
  1717. example: "https://hermez.io"
  1718. TokenSymbol:
  1719. type: string
  1720. description: Abreviation of the token name.
  1721. example: "DAI"
  1722. TokenName:
  1723. type: string
  1724. description: Token name.
  1725. example: "Dai"
  1726. CollectedFees:
  1727. type: array
  1728. description: Collected fees by the forger of the batch. A maximum of 64 different tokens can be used.
  1729. items:
  1730. type: object
  1731. properties:
  1732. tokenId:
  1733. $ref: '#/components/schemas/TokenId'
  1734. amount:
  1735. allOf:
  1736. - $ref: '#/components/schemas/BigInt'
  1737. - description: Ammount of collected tokens
  1738. - example: "53"
  1739. Batch:
  1740. type: object
  1741. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  1742. properties:
  1743. batchNum:
  1744. $ref: '#/components/schemas/BatchNum'
  1745. ethereumBlockNum:
  1746. $ref: '#/components/schemas/EthBlockNum'
  1747. ethereumBlockHash:
  1748. type: string
  1749. description: hash of the Ethereum block in which the batch was forged
  1750. example: "0xfe88c94d860f01a17f961bf4bdfb6e0c6cd10d3fda5cc861e805ca1240c58553"
  1751. timestamp:
  1752. type: string
  1753. format: date-time
  1754. description: Time in which the batch was forged.
  1755. forgerAddr:
  1756. $ref: '#/components/schemas/EthereumAddress'
  1757. collectedFees:
  1758. $ref: '#/components/schemas/CollectedFees'
  1759. historicTotalCollectedFeesUSD:
  1760. type: number
  1761. description: Sum of the all the fees collected, in USD, at the moment the batch was forged.
  1762. example: 23.3
  1763. stateRoot:
  1764. allOf:
  1765. - $ref: '#/components/schemas/Hash'
  1766. - description: Root of the accounts Merkle Tree.
  1767. - example: "2734657026572a8708d883"
  1768. numAccounts:
  1769. type: integer
  1770. description: Number of registered accounts in this batch.
  1771. exitRoot:
  1772. allOf:
  1773. - $ref: '#/components/schemas/Hash'
  1774. - description: Root of the exit Merkle Tree associated to this batch.
  1775. - example: "2734657026572a8708d883"
  1776. forgeL1TransactionsNum:
  1777. allOf:
  1778. - $ref: '#/components/schemas/ToForgeL1TransactionsNum'
  1779. - description: Identifier that corresponds to the group of L1 transactions forged in the current batch.
  1780. - example: 5
  1781. slotNum:
  1782. $ref: '#/components/schemas/SlotNum'
  1783. FullBatch:
  1784. type: object
  1785. description: Group of transactions forged in a coordinator and sent and validated in Ethereum.
  1786. properties:
  1787. batch:
  1788. $ref: '#/components/schemas/Batch'
  1789. transactions:
  1790. type: array
  1791. description: List of forged transactions in the batch
  1792. items:
  1793. $ref: '#/components/schemas/HistoryTransaction'
  1794. Hash:
  1795. type: string
  1796. description: hashed data
  1797. example: "2734657026572a8708d883"
  1798. SlotNum:
  1799. type: integer
  1800. description: Identifier of a slot.
  1801. minimum: 0
  1802. maximum: 4294967295
  1803. example: 784
  1804. Batches:
  1805. type: object
  1806. properties:
  1807. batches:
  1808. type: array
  1809. description: List of batches.
  1810. items:
  1811. $ref: '#/components/schemas/Batch'
  1812. pagination:
  1813. $ref: '#/components/schemas/PaginationInfo'
  1814. Coordinator:
  1815. type: object
  1816. properties:
  1817. itemId:
  1818. $ref: '#/components/schemas/ItemId'
  1819. forgerAddr:
  1820. $ref: '#/components/schemas/EthereumAddress'
  1821. bidderAddr:
  1822. $ref: '#/components/schemas/EthereumAddress'
  1823. URL:
  1824. $ref: '#/components/schemas/URL'
  1825. ethereumBlock:
  1826. allOf:
  1827. - $ref: '#/components/schemas/EthBlockNum'
  1828. - description: Ethereum block in which the coordinator registered into the network.
  1829. - example: 5735943738
  1830. additionalProperties: false
  1831. required:
  1832. - itemId
  1833. - forgerAddr
  1834. - bidderAddr
  1835. - URL
  1836. - ethereumBlock
  1837. Coordinators:
  1838. type: object
  1839. properties:
  1840. coordinators:
  1841. type: array
  1842. description: List of coordinators.
  1843. items:
  1844. $ref: '#/components/schemas/Coordinator'
  1845. pagination:
  1846. $ref: '#/components/schemas/PaginationInfo'
  1847. additionalProperties: false
  1848. required:
  1849. - coordinators
  1850. - pagination
  1851. Bid:
  1852. type: object
  1853. description: Tokens placed in an auction by a coordinator to gain the right to forge batches during a specific slot.
  1854. properties:
  1855. forgerAddr:
  1856. $ref: '#/components/schemas/EthereumAddress'
  1857. slotNum:
  1858. $ref: '#/components/schemas/SlotNum'
  1859. withdrawAddr:
  1860. $ref: '#/components/schemas/EthereumAddress'
  1861. URL:
  1862. $ref: '#/components/schemas/URL'
  1863. bidValue:
  1864. $ref: '#/components/schemas/BigInt'
  1865. ethereumBlockNum:
  1866. $ref: '#/components/schemas/EthBlockNum'
  1867. timestamp:
  1868. type: string
  1869. format: date-time
  1870. Bids:
  1871. type: object
  1872. properties:
  1873. bids:
  1874. type: array
  1875. description: List of bids.
  1876. items:
  1877. $ref: '#/components/schemas/Bid'
  1878. pagination:
  1879. $ref: '#/components/schemas/PaginationInfo'
  1880. RecommendedFee:
  1881. type: object
  1882. description: Fee that the coordinator recommends per transaction in USD.
  1883. properties:
  1884. existingAccount:
  1885. type: number
  1886. description: Recommended fee if the destination account of the transaction already exists.
  1887. minimum: 0
  1888. example: 0.1
  1889. createAccount:
  1890. type: number
  1891. 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.
  1892. minimum: 0
  1893. example: 1.3
  1894. createAccountInternal:
  1895. type: number
  1896. 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.
  1897. minimum: 0
  1898. example: 0.5
  1899. Token:
  1900. type: object
  1901. description: Hermez network compatible and registered token.
  1902. properties:
  1903. id:
  1904. $ref: '#/components/schemas/TokenId'
  1905. ethereumAddress:
  1906. allOf:
  1907. - $ref: '#/components/schemas/EthereumAddress'
  1908. - description: Ethereum address in which the token is deployed.
  1909. - example: "0xaa942cfcd25ad4d90a62358b0dd84f33b398262a"
  1910. itemId:
  1911. $ref: '#/components/schemas/ItemId'
  1912. name:
  1913. type: string
  1914. description: full name of the token
  1915. example: Maker Dai
  1916. symbol:
  1917. allOf:
  1918. - $ref: '#/components/schemas/TokenSymbol'
  1919. - example: DAI
  1920. decimals:
  1921. type: integer
  1922. description: Number of decimals of the token.
  1923. example: 18
  1924. ethereumBlockNum:
  1925. allOf:
  1926. - $ref: '#/components/schemas/EthBlockNum'
  1927. - description: Ethereum block number in which the token was added to the Hermez network.
  1928. - example: 539847538
  1929. USD:
  1930. type: number
  1931. description: Value of the token in USD.
  1932. example: 1.01
  1933. nullable: true
  1934. fiatUpdate:
  1935. type: string
  1936. format: date-time
  1937. description: Timestamp of the moment the `USD` value was updated.
  1938. nullable: true
  1939. required:
  1940. - id
  1941. - ethereumAddress
  1942. - itemId
  1943. - name
  1944. - symbol
  1945. - decimals
  1946. - ethereumBlockNum
  1947. - USD
  1948. - fiatUpdate
  1949. additionalProperties: false
  1950. Tokens:
  1951. type: object
  1952. properties:
  1953. tokens:
  1954. type: array
  1955. description: List of tokens.
  1956. items:
  1957. $ref: '#/components/schemas/Token'
  1958. pagination:
  1959. $ref: '#/components/schemas/PaginationInfo'
  1960. Exit:
  1961. type: object
  1962. description: Exit tree leaf. It Contains the necessary information to perform a withdrawal.
  1963. properties:
  1964. batchNum:
  1965. allOf:
  1966. - $ref: '#/components/schemas/BatchNum'
  1967. - description: Batch in which the exit was forged.
  1968. - example: 7394
  1969. accountIndex:
  1970. $ref: '#/components/schemas/AccountIndex'
  1971. itemId:
  1972. $ref: '#/components/schemas/ItemId'
  1973. merkleProof:
  1974. type: object
  1975. description: Existence proof of a leaf in a given Merkle Root. Encoded as hexadecimal string.
  1976. properties:
  1977. Root:
  1978. $ref: '#/components/schemas/BigInt'
  1979. Siblings:
  1980. type: array
  1981. items:
  1982. $ref: '#/components/schemas/BigInt'
  1983. OldKey:
  1984. $ref: '#/components/schemas/BigInt'
  1985. OldValue:
  1986. $ref: '#/components/schemas/BigInt'
  1987. IsOld0:
  1988. type: boolean
  1989. Key:
  1990. $ref: '#/components/schemas/BigInt'
  1991. Value:
  1992. $ref: '#/components/schemas/BigInt'
  1993. Fnc:
  1994. type: integer
  1995. maximum: 3
  1996. minimum: 0
  1997. required:
  1998. - Root
  1999. - Siblings
  2000. - OldKey
  2001. - OldValue
  2002. - IsOld0
  2003. - Key
  2004. - Value
  2005. - Fnc
  2006. additionalProperties: false
  2007. balance:
  2008. $ref: '#/components/schemas/BigInt'
  2009. instantWithdrawn:
  2010. type: integer
  2011. description: Block in which the exit balance was instantly withdrawn. Null indicates that an instant withdrawn hasn't been performed.
  2012. minimum: 0
  2013. maximum: 1.84467440737096e+19
  2014. example: 74747363
  2015. nullable: true
  2016. delayedWithdrawRequest:
  2017. type: integer
  2018. description: Block in which the exit balance was requested to delay withdraw. Null indicates that a delay withdraw hasn't been performed.
  2019. minimum: 0
  2020. maximum: 1.84467440737096e+19
  2021. example: null
  2022. nullable: true
  2023. delayedWithdrawn:
  2024. type: integer
  2025. 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.
  2026. minimum: 0
  2027. maximum: 1.84467440737096e+19
  2028. example: null
  2029. nullable: true
  2030. token:
  2031. $ref: '#/components/schemas/Token'
  2032. required:
  2033. - batchNum
  2034. - accountIndex
  2035. - itemId
  2036. - merkleProof
  2037. - balance
  2038. - instantWithdrawn
  2039. - delayedWithdrawRequest
  2040. - delayedWithdrawn
  2041. - token
  2042. additionalProperties: false
  2043. Exits:
  2044. type: object
  2045. properties:
  2046. exits:
  2047. type: array
  2048. description: List of exits.
  2049. items:
  2050. $ref: '#/components/schemas/Exit'
  2051. pagination:
  2052. $ref: '#/components/schemas/PaginationInfo'
  2053. required:
  2054. - exits
  2055. - pagination
  2056. additionalProperties: false
  2057. Account:
  2058. type: object
  2059. description: State tree leaf. It contains balance and nonce of an account.
  2060. properties:
  2061. accountIndex:
  2062. $ref: '#/components/schemas/AccountIndex'
  2063. nonce:
  2064. $ref: '#/components/schemas/Nonce'
  2065. balance:
  2066. $ref: '#/components/schemas/BigInt'
  2067. bjj:
  2068. $ref: '#/components/schemas/BJJ'
  2069. hezEthereumAddress:
  2070. $ref: '#/components/schemas/HezEthereumAddress'
  2071. token:
  2072. $ref: '#/components/schemas/Token'
  2073. Accounts:
  2074. type: object
  2075. properties:
  2076. accounts:
  2077. type: array
  2078. description: List of accounts.
  2079. items:
  2080. $ref: '#/components/schemas/Account'
  2081. pagination:
  2082. $ref: '#/components/schemas/PaginationInfo'
  2083. Slot:
  2084. type: object
  2085. description: Slot information.
  2086. properties:
  2087. slotNum:
  2088. $ref: '#/components/schemas/SlotNum'
  2089. firstBlock:
  2090. allOf:
  2091. - $ref: '#/components/schemas/EthBlockNum'
  2092. - description: Block in which the slot began or will begin
  2093. - example: 76238647846
  2094. lastBlock:
  2095. allOf:
  2096. - $ref: '#/components/schemas/EthBlockNum'
  2097. - description: Block in which the slot ended or will end
  2098. - example: 4475934
  2099. closedAuction:
  2100. type: boolean
  2101. description: Whether the auction of the slot has finished or not.
  2102. winner:
  2103. allOf:
  2104. - $ref: '#/components/schemas/Coordinator'
  2105. - description: Coordinator who won the auction. Only applicable if the auction is closed.
  2106. - nullable: true
  2107. - example: null
  2108. Slots:
  2109. type: object
  2110. properties:
  2111. nextForgers:
  2112. type: array
  2113. description: List of slots.
  2114. items:
  2115. $ref: '#/components/schemas/Slot'
  2116. pagination:
  2117. $ref: '#/components/schemas/PaginationInfo'
  2118. NextForger:
  2119. type: object
  2120. description: Coordinator information along with the scheduled forging period
  2121. properties:
  2122. coordinator:
  2123. $ref: '#/components/schemas/Coordinator'
  2124. period:
  2125. type: object
  2126. description: Time period in which the coordinator will have the ability to forge. Specified both in Ethereum blocks and timestamp
  2127. properties:
  2128. fromBlock:
  2129. $ref: '#/components/schemas/EthBlockNum'
  2130. toBlock:
  2131. $ref: '#/components/schemas/EthBlockNum'
  2132. fromTimestamp:
  2133. type: string
  2134. format: date-time
  2135. toTimestamp:
  2136. type: string
  2137. format: date-time
  2138. NextForgers:
  2139. type: object
  2140. properties:
  2141. nextForgers:
  2142. type: array
  2143. description: List of next coordinators to forge.
  2144. items:
  2145. $ref: '#/components/schemas/NextForger'
  2146. pagination:
  2147. $ref: '#/components/schemas/PaginationInfo'
  2148. State:
  2149. type: object
  2150. description: Gobal statistics of the network.
  2151. properties:
  2152. lastBlock:
  2153. allOf:
  2154. - $ref: '#/components/schemas/EthBlockNum'
  2155. - description: Last synchronized Etherum block.
  2156. - example: 3457437
  2157. lastBatch:
  2158. allOf:
  2159. - $ref: '#/components/schemas/BatchNum'
  2160. - description: Last batch that has been forged.
  2161. - example: 76523
  2162. currentSlot:
  2163. allOf:
  2164. - $ref: '#/components/schemas/SlotNum'
  2165. - description: Slot where batches are currently being forged.
  2166. - example: 2334
  2167. transactionsPerBatch:
  2168. type: number
  2169. description: Average transactions per batch in the last 24 hours.
  2170. example: 2002.7
  2171. batchFrequency:
  2172. type: number
  2173. description: Average elapsed time between batches in the last 24 hours, in seconds.
  2174. example: 8.9
  2175. transactionsPerSecond:
  2176. type: number
  2177. description: Average transactions per second in the last 24 hours.
  2178. example: 302.3
  2179. totalAccounts:
  2180. type: integer
  2181. description: Number of created accounts.
  2182. example: 90473
  2183. totalBJJs:
  2184. type: integer
  2185. description: Number of different registered BJJs.
  2186. example: 23067
  2187. avgTransactionFee:
  2188. type: number
  2189. description: Average fee percentage paid for L2 transactions in the last 24 hours.
  2190. example: 1.54
  2191. nextForgers:
  2192. $ref: '#/components/schemas/NextForgers'
  2193. recommendedFee:
  2194. $ref: '#/components/schemas/RecommendedFee'
  2195. governance:
  2196. type: object
  2197. description: Network setings that are updatable by the governance.
  2198. properties:
  2199. rollup:
  2200. type: object
  2201. description: Rollup parameters.
  2202. properties:
  2203. forgeTimeout:
  2204. type: integer
  2205. description: Time delay between the beggining of a slot and the beggining of the period in which anyone can forge if the auction winner of the slot hasn't forged any batch yet. Time is measured in Ethereum blocks.
  2206. example: 5
  2207. feeAddToken:
  2208. type: integer
  2209. description: fee to pay when registering tokens into the network.
  2210. example: 5698
  2211. auction:
  2212. type: object
  2213. description: Auction parameters.
  2214. properties:
  2215. bootCoordinator:
  2216. allOf:
  2217. - $ref: '#/components/schemas/EthereumAddress'
  2218. - description: Ethereum address of the boot coordinator.
  2219. - example: "0x997dc4262BCDbf85190C01c996b4C06a461d2430"
  2220. slotDeadline:
  2221. type: integer
  2222. description: Number of blocks at the end of a slot in which any coordinator can forge if the winner has not forged one before.
  2223. example: 3
  2224. closedAuctionSlots:
  2225. type: integer
  2226. 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.
  2227. example: 2
  2228. openAuctionSlots:
  2229. type: integer
  2230. description: How many days in advance are auctions opened.
  2231. defaultSlotSetBid:
  2232. type: array
  2233. 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]`."
  2234. items:
  2235. type: integer
  2236. example: [32,0,68,21,55,99]
  2237. outbidding:
  2238. type: number
  2239. description: Minimum outbid over the previous one to consider it valid.
  2240. example: 3.64
  2241. donationAddress:
  2242. allOf:
  2243. - $ref: '#/components/schemas/EthereumAddress'
  2244. - description: Ethereum address where the donations will go to.
  2245. - example: "0x887dc4262BCDbf85190C01c996b4C06a461d2430"
  2246. allocationRatio:
  2247. type: array
  2248. description: Percentage in which fees will be splitted between donations, governance and burning. The sum of the tree values should be 100.
  2249. items:
  2250. type: integer
  2251. example: [80,10,10]
  2252. withdrawalDelayer:
  2253. type: object
  2254. description: Withdrawal delayer parameters.
  2255. properties:
  2256. rollupAddress:
  2257. allOf:
  2258. - $ref: '#/components/schemas/EthereumAddress'
  2259. - description: Ethereum address of the rollup smart contract.
  2260. - example: "0x777dc4262BCDbf85190C01c996b4C06a461d2430"
  2261. governanceAddress:
  2262. allOf:
  2263. - $ref: '#/components/schemas/EthereumAddress'
  2264. - description: Ethereum address of the governance mechanism.
  2265. - example: "0x667dc4262BCDbf85190C01c996b4C06a461d2430"
  2266. whitheHackerGroupAddress:
  2267. allOf:
  2268. - $ref: '#/components/schemas/EthereumAddress'
  2269. - description: Ethereum Address that can claim the funds in an emergency when the maximum emergency mode time is exceeded.
  2270. - example: "0x557dc4262BCDbf85190C01c996b4C06a461d2430"
  2271. keeperAddress:
  2272. allOf:
  2273. - $ref: '#/components/schemas/EthereumAddress'
  2274. - description: Ethereum Address that can enable emergency mode and modify the delay to make a withdrawal.
  2275. - example: "0x557dc4262BCDbf85190C01c996b4C06a461d2430"
  2276. withdrawalDelay:
  2277. allOf:
  2278. - $ref: '#/components/schemas/EthBlockNum'
  2279. - description: The time that anyone needs to wait until a withdrawal of the funds is allowed, in Ethereum blocks.
  2280. - example: 539573849
  2281. emergencyModeStartingTime:
  2282. type: integer
  2283. description: Ethereum block in which the emergency mode will be activated.
  2284. example: 10
  2285. emergencyMode:
  2286. type: boolean
  2287. description: Indicates if emergency mode has been activated.
  2288. PaginationInfo:
  2289. type: object
  2290. description: Give pagination information
  2291. properties:
  2292. totalItems:
  2293. type: integer
  2294. description: Amount of items that the endpoint can return given the filters and the current state of the database.
  2295. example: 2048
  2296. firstItem:
  2297. type: integer
  2298. description: The smallest itemId that the endpoint will return with the given filters.
  2299. example: 50
  2300. lastItem:
  2301. type: integer
  2302. description: The greatest itemId that the endpoint will return with the given filters.
  2303. example: 2130
  2304. Config:
  2305. type: object
  2306. description: Configuration parameters of the different smart contracts that power the Hermez network.
  2307. properties:
  2308. hermez:
  2309. type: object
  2310. description: Constant configuration of the Hermez smart contract.
  2311. properties:
  2312. publicConstants:
  2313. type: object
  2314. description: Public Hermez smart contract constants
  2315. properties:
  2316. tokenHEZ:
  2317. allOf:
  2318. - $ref: '#/components/schemas/EthereumAddress'
  2319. - description: Ethereum address of the HEZ token.
  2320. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2321. absoluteMaxL1L2BatchTimeout:
  2322. type: integer
  2323. description: L1L2 Batch Timeout
  2324. example: 240
  2325. verifiers:
  2326. type: array
  2327. description: List of verifiers struct
  2328. items:
  2329. type: object
  2330. properties:
  2331. maxTx:
  2332. type: integer
  2333. description: Maximum rollup transactions in a batch
  2334. example: 512
  2335. nlevels:
  2336. type: integer
  2337. description: Number of levels of the circuit
  2338. example: 32
  2339. required:
  2340. - maxTx
  2341. - nlevels
  2342. additionalProperties: false
  2343. hermezAuctionContract:
  2344. allOf:
  2345. - $ref: '#/components/schemas/EthereumAddress'
  2346. - description: Ethereum address of the auction smart contract.
  2347. - example: "0x111dc4262BCDbf85190C01c996b4C06a461d2430"
  2348. hermezGovernanceDAOAddress:
  2349. allOf:
  2350. - $ref: '#/components/schemas/EthereumAddress'
  2351. - description: Ethereum address of the governanceDAO.
  2352. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2353. safetyAddress:
  2354. allOf:
  2355. - $ref: '#/components/schemas/EthereumAddress'
  2356. - description: Ethereum address of the safety.
  2357. - example: "0x333dc4262BCDbf85190C01c996b4C06a461d2430"
  2358. withdrawDelayerContract:
  2359. allOf:
  2360. - $ref: '#/components/schemas/EthereumAddress'
  2361. - description: Ethereum address of the withdraw delayer contracts.
  2362. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2363. required:
  2364. - tokenHEZ
  2365. - absoluteMaxL1L2BatchTimeout
  2366. - verifiers
  2367. - hermezAuctionContract
  2368. - hermezGovernanceDAOAddress
  2369. - safetyAddress
  2370. - withdrawDelayerContract
  2371. additionalProperties: false
  2372. maxFeeIdxCoordinator:
  2373. type: integer
  2374. description: is the maximum number of tokens the coordinator can use to collect fees.
  2375. example: 64
  2376. reservedIdx:
  2377. type: integer
  2378. description: First 256 indexes reserved, first user index will be the 256.
  2379. example: 255
  2380. exitIdx:
  2381. type: integer
  2382. description: Account index used to indicate that a transaction is an `exit` or `force exit`.
  2383. example: 1
  2384. limitLoadAmount:
  2385. type: integer
  2386. description: Maximum load amount (L1 to L2) allowed.
  2387. example: 321
  2388. limitL2TransferAmount:
  2389. type: integer
  2390. description: Maximum amount (L2 to L2) allowed.
  2391. example: 837
  2392. limitTokens:
  2393. type: integer
  2394. description: Maximum number of different tokens that can be registered in the network.
  2395. example: 4294967295
  2396. l1CoordinatorTotalBytes:
  2397. type: integer
  2398. description: Number of bytes that a L1 coordinator transaction has ([4 bytes] token + [32 bytes] babyjub + [65 bytes] compressedSignature).
  2399. example: 101
  2400. l1UserTotalBytes:
  2401. type: integer
  2402. 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).
  2403. example: 72
  2404. maxL1UserTx:
  2405. type: integer
  2406. description: Maximum L1-user transactions allowed to be queued in a batch.
  2407. example: 128
  2408. maxL1Tx:
  2409. type: integer
  2410. description: Maximum L1 transactions allowed to be queued in a batch.
  2411. example: 256
  2412. inputSHAConstantBytes:
  2413. type: integer
  2414. description: Input SHA constant bytes
  2415. example: 18542
  2416. numBuckets:
  2417. type: integer
  2418. description: Number of buckets
  2419. example: 5
  2420. maxWithdrawalDelay:
  2421. type: integer
  2422. description: Maximum delay to withdraw tokens. Time is measured in seconds.
  2423. example: 2 * 7 * 24 * 60 * 60
  2424. exchangeMultiplier:
  2425. type: integer
  2426. description: exchange multiplier
  2427. example: 1e14
  2428. required:
  2429. - publicConstants
  2430. - reservedIdx
  2431. - exitIdx
  2432. - limitLoadAmount
  2433. - limitL2TransferAmount
  2434. - limitTokens
  2435. - l1CoordinatorTotalBytes
  2436. - l1UserTotalBytes
  2437. - maxL1UserTx
  2438. - maxL1Tx
  2439. - inputSHAConstantBytes
  2440. - numBuckets
  2441. - maxWithdrawalDelay
  2442. - exchangeMultiplier
  2443. additionalProperties: false
  2444. auction:
  2445. type: object
  2446. description: Constant configuration of the auction smart contract.
  2447. properties:
  2448. blocksPerSlot:
  2449. type: integer
  2450. description: Blocks per slot.
  2451. initialMinimalBidding:
  2452. type: integer
  2453. description: Minimum bid when no one has bid yet.
  2454. genesisBlockNum:
  2455. allOf:
  2456. - $ref: '#/components/schemas/EthBlockNum'
  2457. - description: Ethereum block number in which the smart contract starts operating.
  2458. tokenHEZ:
  2459. allOf:
  2460. - $ref: '#/components/schemas/EthereumAddress'
  2461. - description: Ethereum address of the HEZ token.
  2462. - example: "0x333dc4262BCDbf85190C01c996b4C06a461d2430"
  2463. hermezRollup:
  2464. allOf:
  2465. - $ref: '#/components/schemas/EthereumAddress'
  2466. - description: Ethereum address of the rollup smart contract.
  2467. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2468. governanceAddress:
  2469. allOf:
  2470. - $ref: '#/components/schemas/EthereumAddress'
  2471. - description: Ethereum address of the governance.
  2472. - example: "0x444dc4262BCDbf85190C01c996b4C06a461d2430"
  2473. required:
  2474. - blocksPerSlot
  2475. - initialMinimalBidding
  2476. - genesisBlockNum
  2477. - tokenHEZ
  2478. - hermezRollup
  2479. - governanceAddress
  2480. additionalProperties: false
  2481. withdrawalDelayer:
  2482. type: object
  2483. description: Constant configuration of the withdrawal delayer smart contract.
  2484. properties:
  2485. maxWithdrawalDelay:
  2486. type: integer
  2487. description: Maximum time delay in which the tokens can be locked in the contract. Time is measured in Ethereum blocks.
  2488. example: 200
  2489. maxEmergencyModeTime:
  2490. type: integer
  2491. description: Maximum amount of time in which the contract can be in emergency mode. Time is measured in Ethereum blocks.
  2492. example: 2000
  2493. hermezRollup:
  2494. allOf:
  2495. - $ref: '#/components/schemas/EthereumAddress'
  2496. - description: Ethereum address of the rollup smart contract.
  2497. - example: "0x222dc4262BCDbf85190C01c996b4C06a461d2430"
  2498. required:
  2499. - maxWithdrawalDelay
  2500. - maxEmergencyModeTime
  2501. - hermezRollup
  2502. additionalProperties: false
  2503. required:
  2504. - hermez
  2505. - auction
  2506. - withdrawalDelayer
  2507. additionalProperties: false
  2508. Error:
  2509. type: object
  2510. description: Error response.
  2511. properties:
  2512. message:
  2513. type: string
  2514. Error400:
  2515. allOf:
  2516. - $ref: '#/components/schemas/Error'
  2517. - example:
  2518. message: Invalid signature.
  2519. Error404:
  2520. allOf:
  2521. - $ref: '#/components/schemas/Error'
  2522. - example:
  2523. message: Item(s) not found.
  2524. Error500:
  2525. allOf:
  2526. - $ref: '#/components/schemas/Error'
  2527. - example:
  2528. message: Database error.