Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed mumbai references in v17 #2511

Merged
merged 7 commits into from
Jun 6, 2023
Merged

removed mumbai references in v17 #2511

merged 7 commits into from
Jun 6, 2023

Conversation

dsawali
Copy link
Contributor

@dsawali dsawali commented Jun 5, 2023

Thank you for your contribution to Taquito.

Before submitting this PR, please make sure:

  • Your code builds cleanly without any errors or warnings
  • You have run the linter against the changes
  • You have added unit tests (if relevant/appropriate)
  • You have added integration tests (if relevant/appropriate)
  • All public methods or types have TypeDoc coverage with a complete description, and ideally an @example
  • You have added or updated corresponding documentation
  • If relevant, you have written a first draft summary describing the change for inclusion in Release Notes.

In this PR, please also make sure:

  • You have linked this PR to the issue by putting closes #TICKETNUMBER in the description box (when applicable)
  • You have added a concise description on your changes

Release Note Draft Snippet

If relevant, please write a summary of your change that will be suitable for
inclusion in the Release Notes for the next Taquito release.

@github-actions
Copy link

github-actions bot commented Jun 5, 2023

New packages have been deployed to the preview repository at https://npm.preview.tezostaquito.io/.

Published packages:

npm i @taquito/tzip16@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/sapling@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/rpc@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/http-utils@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/core@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/ledger-signer@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/michelson-encoder@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/michel-codec@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/taquito@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/tzip12@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/signer@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/contracts-library@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/beacon-wallet@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/local-forging@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/utils@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/
npm i @taquito/remote-signer@16.2.0-c4f7c92-- --registry https://npm.preview.tezostaquito.io/

@dsawali dsawali marked this pull request as ready for review June 5, 2023 21:18
@dsawali dsawali requested review from hui-an-yang and ac10n June 5, 2023 21:18
@@ -1915,6 +1916,11 @@ export interface ConstantsResponseCommon {

export type Ratio = { numerator: number; denominator: number };

export interface ConstantsResponseProto017 extends ConstantsResponseProto016 {
attestation_threshold: number;
blocks_per_epoch: number;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does it matter that these two added properties seem to belong under this parent property dal_parametric?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point, I'll adjust it instead so that 17 merely extends 16, and update the dal_parametric object to have the 2 new properties as optional properties.

Copy link
Collaborator

@hui-an-yang hui-an-yang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm 🌟

@dsawali dsawali merged commit aff6b91 into 17.0.0 Jun 6, 2023
@dsawali dsawali deleted the remove-mumbai branch June 6, 2023 15:52
dsawali added a commit that referenced this pull request Jun 13, 2023
* Configure Nairobinet for Integration Tests (#2492)

* Configure Nairobinet

* More Nairobinet configs

* Originated known contracts

* Configure Nairobinet for Integration Tests (#2492)

* Configure Nairobinet

* More Nairobinet configs

* Originated known contracts

* Update nairobi in other files (#2506)

* Update nairobi in other files

* undo changes to versioned docs

* chore: rename PtNairob to PtNairobi

* 2447 update gas limit for reveal in nairobi (#2494)

* feat: updated GasLimit for reveal in Nairobi

fix #2447

* fix: change mumbai tests to also run for later protocols

* chore: fix failing unit tests

* Fix failoing integration test

* chore: rename PtNairob to PtNairobi

* chore: apply changes as suggested by davis

* chore: remove the unused logic

* chore: fix values for the consumedMilligas in failing tests

* fix unit tests after changes to reveal gasLimit

* chore: revert gas limit for reveal to 2200

* Add EventSchema to ContractAbstraction (#2485)

* fixed contract call estimate prep to check for reveal (#2502)

* fixed contract call estimate prep to check for reveal

* changed logic slightly

* added keygen diagram to integration test readme (#2504)

* added keygen diagram

* text improvement

* typo fix

* Upgrade netlify-cli to fix the android dependency problem (#2496)

* Re-create package-lock.json in root and website to trigger the problem

* Upgrade netlify-cli

* update most dependencies in website

* Add EventSchema to ContractAbstraction

* Remove duplicate events

* fix typo

* test: added integration test for events in ContractAbstraction

* docs: add documentation for eventSchema

---------

Co-authored-by: Davis Sawali <davis.sawali@ecadlabs.com>
Co-authored-by: Michael Kernaghan <michaelkernaghan@ecadlabs.com>

* removed mumbai references in v17 (#2511)

* removed mumbai references in v17

* add block call for mumbai to get protocol constants

* remove extraneous line

* updated assertion values

* updated assertion

* fix test protocol constants

* addressed pr comment and added proto15 tests

* updated types for sc_rollup_cement in N (#2497)

* Configure Nairobinet for Integration Tests (#2492)

* Configure Nairobinet

* More Nairobinet configs

* Originated known contracts

* updated types for sc_rollup_cement in N

* updated unit test for updated types

---------

Co-authored-by: AlirezaHaghshenas <alirezahaghshenas@gmail.com>

* Both Mumbai and Nairobi integration test configurations should coexist

* 1996 rpc 2 (#2522)

* added validation for transferred amounts and updated readme

* update flextesa image version

* update sequence of test

* chore(releng) bump version to 17.0.0-beta-RC.0

* chore: satisfy lerna

* chore(releng) bump version to 17.0.0

---------

Co-authored-by: AlirezaHaghshenas <alirezahaghshenas@gmail.com>
Co-authored-by: Michael Kernaghan <michaelkernaghan@ecadlabs.com>
Co-authored-by: Daniele Lisi <22307776+danielelisi@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants