-
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.
- Remove stable token Inflation related methods and configs #186 - USDC related changes #151 - Added Ethereum-compatible legacy TXs support #182 - Update dependency cross-fetch to v3.1.5 [SECURITY] #168 - feat: ignores gasCurrency when passed to the config #198
- Loading branch information
1 parent
340d50c
commit 6e3372f
Showing
256 changed files
with
4,048 additions
and
1,988 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,5 @@ | ||
--- | ||
'@celo/dev-utils': patch | ||
--- | ||
|
||
Bump web3 to 1.10.4 |
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': major | ||
--- | ||
|
||
The following changes are related to adding support for more fee currencies in the @celo packages. | ||
|
||
(BREAKING): `setFeeCurrency` changed to accept an address instead of previously accepting a StableToken | ||
(CHANGED): all places referring to gasCurrencies have been changed from `string` to `StrongAddress` for safer types. This shouldn't impact you as you already should have been giving `0x${string}` in these places | ||
(CHANGED): reinforced the types of most contract wrappers to use `StrongAddress` where appropriate |
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/celocli': major | ||
--- | ||
|
||
The following changes are related to adding support for more fee currencies in the @celo packages. | ||
|
||
(BREAKING): global flag `--gasCurrency` changed to accept only whitelisted addresses instead of previously accepting a StableToken or 'auto' | ||
(BREAKING): `config:set --gasCurrency` is now ignored and not saved to a default config and prints a warning instead | ||
(ADDED): `celocli network:whitelist` prints the whitelisted feeCurrencies |
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,8 @@ | ||
--- | ||
'@celo/network-utils': patch | ||
'@celo/contractkit': patch | ||
'@celo/explorer': patch | ||
'@celo/celocli': patch | ||
--- | ||
|
||
Bump Cross Fetch to fix security vulnerability |
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,19 @@ | ||
--- | ||
'@celo/wallet-hsm-azure': patch | ||
'@celo/wallet-hsm-aws': patch | ||
'@celo/wallet-hsm-gcp': patch | ||
'@celo/wallet-ledger': patch | ||
'@celo/wallet-remote': patch | ||
'@celo/wallet-local': patch | ||
'@celo/wallet-base': patch | ||
'@celo/wallet-hsm': patch | ||
'@celo/wallet-rpc': patch | ||
'@celo/transactions-uri': patch | ||
'@celo/network-utils': patch | ||
'@celo/contractkit': patch | ||
'@celo/connect': patch | ||
'@celo/utils': patch | ||
'@celo/celocli': patch | ||
--- | ||
|
||
Bump web3-\* to 1.10.4 -- Some consumers may be forced to upgrade their web3 instance to the same version |
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,43 @@ | ||
{ | ||
"mode": "exit", | ||
"tag": "beta", | ||
"initialVersions": { | ||
"@celo/celocli": "4.2.0", | ||
"@celo/base": "6.0.0", | ||
"@celo/connect": "5.2.0", | ||
"@celo/contractkit": "7.2.0", | ||
"@celo/cryptographic-utils": "5.0.7", | ||
"@celo/explorer": "5.0.9", | ||
"@celo/governance": "5.1.0", | ||
"@celo/keystores": "5.0.8", | ||
"@celo/network-utils": "5.0.5", | ||
"@celo/phone-utils": "6.0.1", | ||
"@celo/transactions-uri": "5.0.8", | ||
"@celo/utils": "6.0.0", | ||
"@celo/wallet-base": "5.1.3", | ||
"@celo/wallet-hsm": "5.1.3", | ||
"@celo/wallet-hsm-aws": "5.1.3", | ||
"@celo/wallet-hsm-azure": "5.1.3", | ||
"@celo/wallet-hsm-gcp": "5.1.3", | ||
"@celo/wallet-ledger": "5.1.3", | ||
"@celo/wallet-local": "5.1.3", | ||
"@celo/wallet-remote": "5.1.3", | ||
"@celo/wallet-rpc": "5.1.3", | ||
"@celo/typescript": "0.0.1", | ||
"@celo/dev-utils": "0.0.2" | ||
}, | ||
"changesets": [ | ||
"brave-spies-own", | ||
"chatty-planets-trade", | ||
"early-terms-push", | ||
"eight-dragons-behave", | ||
"friendly-penguins-happen", | ||
"lemon-doors-rescue", | ||
"pretty-taxis-juggle", | ||
"proud-days-hunt", | ||
"quick-tips-happen", | ||
"rude-hornets-smell", | ||
"seven-carrots-cross", | ||
"slimy-trainers-develop" | ||
] | ||
} |
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,12 @@ | ||
--- | ||
'@celo/contractkit': major | ||
--- | ||
|
||
Removes stable token infos from the kit.getNetworkConfig() | ||
|
||
|
||
Removes from StableTokenWrapper all InflationParameters including, valueToUnits(), unitsToValues(), setInflationParameters(), | ||
|
||
Removes the inflation params from StableTokenWrapper.getConfig | ||
|
||
|
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/utils': patch | ||
--- | ||
|
||
The following changes are related to adding support for more fee currencies in the @celo packages. | ||
|
||
(CHANGED): all places referring to gasCurrencies have been changed from `string` to `StrongAddress` for safer types. This shouldn't impact you as you already should have been giving `0x${string}` in these places |
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,6 @@ | ||
--- | ||
"@celo/connect": minor | ||
"@celo/wallet-base": minor | ||
--- | ||
|
||
Add support Type 0 Ethereum-compatible legacy TXs |
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/connect': patch | ||
--- | ||
|
||
The following changes are related to adding support for more fee currencies in the @celo packages. | ||
|
||
(CHANGED): all places referring to gasCurrencies have been changed from `string` to `StrongAddress` for safer types. This shouldn't impact you as you already should have been giving `0x${string}` in these places |
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/base': patch | ||
--- | ||
|
||
The following changes are related to adding support for more fee currencies in the @celo packages. | ||
|
||
(CHANGED): all places referring to gasCurrencies have been changed from `string` to `StrongAddress` for safer types. This shouldn't impact you as you already should have been giving `0x${string}` in these places |
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,5 @@ | ||
--- | ||
'@celo/celocli': patch | ||
--- | ||
|
||
celocli nework:parameters no longer includes info on stable tokens |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.