-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into elliptic-more-like-…
…byelliptic
- Loading branch information
Showing
90 changed files
with
2,995 additions
and
8,411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'@celo/contractkit': patch | ||
--- | ||
|
||
Re-removes MetaTransaction wallets, as previously removed in 6.0.0 (9ab9d00eb). | ||
|
||
Remove support for deprecated `MetaTransactionWallet` and `MetaTransactionWalletDeployer`. If absolutely needed the contracts can be accessed directly or an alternative such as account abstraction should be used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
'@celo/contractkit': patch | ||
--- | ||
|
||
Re-removes `grandamento` | ||
|
||
While 6.0.0 (9ab9d00eb) previously removed `grandamento` it was added back temporarily because `@celo/celocli` required the wrappers to be available in order to execute the proposal to remove it from governance. It is now gone for good. RIP. | ||
|
||
Due to previous removal this is not considered a breaking change. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "beta", | ||
"initialVersions": { | ||
"@celo/celocli": "3.1.3", | ||
"@celo/base": "6.0.0", | ||
"@celo/connect": "5.1.1", | ||
"@celo/contractkit": "6.0.0", | ||
"@celo/cryptographic-utils": "5.0.6", | ||
"@celo/explorer": "5.0.7", | ||
"@celo/governance": "5.0.8", | ||
"@celo/keystores": "5.0.6", | ||
"@celo/network-utils": "5.0.5", | ||
"@celo/phone-utils": "6.0.0", | ||
"@celo/transactions-uri": "5.0.6", | ||
"@celo/utils": "5.0.6", | ||
"@celo/wallet-base": "5.1.1", | ||
"@celo/wallet-hsm": "5.1.1", | ||
"@celo/wallet-hsm-aws": "5.1.1", | ||
"@celo/wallet-hsm-azure": "5.1.1", | ||
"@celo/wallet-hsm-gcp": "5.1.1", | ||
"@celo/wallet-ledger": "5.1.1", | ||
"@celo/wallet-local": "5.1.1", | ||
"@celo/wallet-remote": "5.1.1", | ||
"@celo/wallet-rpc": "5.1.1", | ||
"@celo/typescript": "0.0.1" | ||
}, | ||
"changesets": [ | ||
"curly-pianos-applaud", | ||
"plenty-bananas-shop", | ||
"real-rabbits-grab", | ||
"tough-gorillas-invent" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
'@celo/celocli': major | ||
--- | ||
|
||
Remove Grandamento from CLI | ||
Remove `grandamento` commands from CLI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"private": true, | ||
"scripts": { | ||
"preinstall": "git config --global url.\"https://\".insteadOf ssh://", | ||
"lint": "yarn lerna run lint", | ||
"lint": "yarn workspaces foreach -piv --all run lint", | ||
"prettify": "yarn run prettier --config .prettierrc.js --write '**/*.+(ts|tsx|js|jsx|sol|java)'", | ||
"prettify:diff": "yarn run prettier --config .prettierrc.js --list-different '**/*.+(ts|tsx|js|jsx|sol|java)'", | ||
"reset": "yarn reset-modules && yarn reset-cache", | ||
|
@@ -15,20 +15,20 @@ | |
"reset-rn": "watchman watch-del-all; rm -rf $TMPDIR/metro-cache-*; rm -rf $TMPDIR/haste-map-*; rm -rf $TMPDIR/metro-symbolicate*", | ||
"reset-yarn": "yarn cache clean", | ||
"test": "yarn test-pure && yarn test-needing-ganache", | ||
"test-pure": "yarn run lerna run test --ignore @celo/contractkit --ignore @celo/celocli --ignore @celo/transactions-uri", | ||
"test-pure": "yarn workspaces foreach -piv --all --exclude celo --exclude \"@celo/{celocli,contractkit,transactions-uri}\" run test", | ||
"test-needing-ganache": "yarn workspace @celo/contractkit test && yarn workspace @celo/celocli test && yarn workspace @celo/transactions-uri test", | ||
"build": "yarn run lerna run build", | ||
"clean": "yarn run lerna run clean", | ||
"docs": "yarn run lerna run docs", | ||
"build": "yarn workspaces foreach -pitv --all run build", | ||
"clean": "yarn workspaces foreach -piv --all run clean", | ||
"docs": "yarn workspaces foreach -piv --all run docs", | ||
"cs": "yarn changeset", | ||
"check-licenses": "yarn licenses list --prod | grep '\\(─ GPL\\|─ (GPL-[1-9]\\.[0-9]\\+ OR GPL-[1-9]\\.[0-9]\\+)\\)' && echo 'Found GPL license(s). Use 'yarn licenses list --prod' to look up the offending package' || echo 'No GPL licenses found'", | ||
"report-coverage": "yarn run lerna run test-coverage", | ||
"report-coverage": "yarn workspaces foreach -piv --all run test-coverage", | ||
"test:watch": "node node_modules/jest/bin/jest.js --watch", | ||
"postinstall": "husky install && yarn run lerna run postinstall", | ||
"postinstall": "husky install && yarn workspaces foreach -piv --all run postinstall", | ||
"release": "yarn clean && yarn build && yarn workspace @celo/celocli run prepack && yarn cs publish", | ||
"beta-enter": "bash scripts/beta-mode.sh", | ||
"beta-exit": "yarn changeset pre exit && git commit -am 'Complete beta mode'", | ||
"version-and-reinstall": "yarn changeset version && yarn install", | ||
"version-and-reinstall": "yarn changeset version && yarn install --no-immutable", | ||
"celocli": "yarn workspace @celo/celocli run --silent celocli", | ||
"deprecate-sdks": "ts-node ./scripts/unpublish-sdks.ts" | ||
}, | ||
|
@@ -56,20 +56,18 @@ | |
"eslint-plugin-unicorn": "^50.0.1", | ||
"husky": "^8.0.0", | ||
"jest": "^29.0.2", | ||
"lerna": "^5.5.0", | ||
"prettier": "^2.7.1", | ||
"pretty-quick": "^2.0.1", | ||
"prompt": "1.2.0", | ||
"semver": "7.3.5", | ||
"solc": "0.5.8", | ||
"semver": "7.5.2", | ||
"ts-jest": "^29.0.0", | ||
"ts-node": "^10.9.1", | ||
"tsconfig-paths": "^3.8.0", | ||
"typescript": "5.3.3" | ||
}, | ||
"resolutions": { | ||
"ganache": "npm:@soloseng/[email protected]", | ||
"bip39": "https://github.com/bitcoinjs/bip39#d8ea080a18b40f301d4e2219a2991cd2417e83c2", | ||
"bip39": "https://github.com/bitcoinjs/bip39#a7ecbfe2e60d0214ce17163d610cad9f7b23140c", | ||
"blind-threshold-bls": "npm:@celo/[email protected]", | ||
"@types/bn.js": "4.11.6", | ||
"bignumber.js": "9.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.