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

Fix Ledger signing #10599

Merged
merged 37 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
123daa8
celo cli 3 beta 2 | no longer include shrinkwrap
aaronmgdr Sep 13, 2023
33beaf4
update releasing doc
aaronmgdr Sep 13, 2023
28aca4a
Merge branch 'master' into aaronmgdr/cli3
aaronmgdr Sep 18, 2023
42bd75e
fix src vs lib
aaronmgdr Sep 18, 2023
2101008
Merge branch 'aaronmgdr/cli3' of https://github.com/celo-org/celo-mon…
aaronmgdr Sep 18, 2023
49857c8
3.0 beta 4
aaronmgdr Sep 18, 2023
3466e02
bump to 3.0
aaronmgdr Sep 18, 2023
f678c6e
add back dev suffix
aaronmgdr Sep 18, 2023
1249d27
dont use git repo use npm package
aaronmgdr Sep 18, 2023
3ea8f5f
typo
aaronmgdr Sep 18, 2023
5a20b8c
no git deps!
aaronmgdr Sep 18, 2023
83752fe
use published version of @celo/blind-threshhold-bls
aaronmgdr Sep 18, 2023
5362098
Debug
jcortejoso Sep 18, 2023
756e0bd
Remove debug
jcortejoso Sep 18, 2023
700f4f8
Add git config to use https for ssh git repos
alvarof2 Sep 18, 2023
cf64ba0
declare module
aaronmgdr Sep 19, 2023
5976eca
add missing pkg
aaronmgdr Sep 19, 2023
b49245e
dadt
aaronmgdr Sep 19, 2023
90b0725
fix mismatch abort controller versions
aaronmgdr Sep 19, 2023
dd71432
no implicit imports!
aaronmgdr Sep 19, 2023
5c409fe
cheeky
aaronmgdr Sep 19, 2023
bf8defd
declare mod
aaronmgdr Sep 19, 2023
8d16741
use v3 of bip39
aaronmgdr Sep 19, 2023
7556c47
revert
aaronmgdr Sep 19, 2023
f79df96
how?
aaronmgdr Sep 19, 2023
4e0ed0b
another
aaronmgdr Sep 19, 2023
37942ba
map blind to celo blind to avoid a conflict (and maybe fix all the er…
aaronmgdr Sep 19, 2023
3d4b127
eyes only
aaronmgdr Sep 19, 2023
5c3ca84
no shh
aaronmgdr Sep 19, 2023
bed6f9e
remove typo space, one bip to rule them all!
aaronmgdr Sep 19, 2023
c9ab70b
no comment
aaronmgdr Sep 19, 2023
cd247d9
Fix Ledger signing
aaronmgdr Sep 20, 2023
4710554
update info log to be more clear
aaronmgdr Sep 20, 2023
a813033
Merge branch 'master' into aaronmgdr/ledger-fix
aaronmgdr Sep 20, 2023
13354aa
no more dev suffix
aaronmgdr Sep 21, 2023
55c2754
Merge branch 'master' into aaronmgdr/ledger-fix
aaronmgdr Sep 21, 2023
f2c0ed2
fix version
aaronmgdr Sep 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions packages/celotool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"author": "Celo",
"license": "Apache-2.0",
"dependencies": {
"@celo/base": "5.0.3-dev",
"@celo/connect": "5.0.3-dev",
"@celo/cryptographic-utils": "5.0.3-dev",
"@celo/contractkit": "5.0.3-dev",
"@celo/base": "5.0.4",
"@celo/connect": "5.0.4",
"@celo/cryptographic-utils": "5.0.4",
"@celo/contractkit": "5.0.4",
"@celo/env-tests": "1.0.0",
"@celo/explorer": "5.0.3-dev",
"@celo/governance": "5.0.3-dev",
"@celo/identity": "5.0.3-dev",
"@celo/network-utils": "5.0.3-dev",
"@celo/utils": "5.0.3-dev",
"@celo/explorer": "5.0.4",
"@celo/governance": "5.0.4",
"@celo/identity": "5.0.4",
"@celo/network-utils": "5.0.4",
"@celo/utils": "5.0.4",
"@ethereumjs/util": "8.0.5",
"@ethereumjs/rlp": "4.0.1",
"@google-cloud/monitoring": "0.7.1",
Expand Down Expand Up @@ -46,7 +46,7 @@
"yargs": "14.0.0"
},
"devDependencies": {
"@celo/dev-utils": "0.0.1-dev",
"@celo/dev-utils": "0.0.1",
"@celo/protocol": "*",
"@types/bunyan": "1.8.8",
"@types/chai": "^4.1.3",
Expand Down
24 changes: 12 additions & 12 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@celo/celocli",
"description": "CLI Tool for transacting with the Celo protocol",
"version": "3.0.0",
"version": "3.0.1",
"author": "Celo",
"license": "Apache-2.0",
"repository": "celo-org/celo-monorepo",
Expand Down Expand Up @@ -32,16 +32,16 @@
"test": "TZ=UTC jest --runInBand"
},
"dependencies": {
"@celo/contractkit": "^5.0.3-dev",
"@celo/explorer": "^5.0.3-dev",
"@celo/governance": "^5.0.3-dev",
"@celo/identity": "^5.0.3-dev",
"@celo/phone-utils": "^5.0.3-dev",
"@celo/utils": "^5.0.3-dev",
"@celo/cryptographic-utils": "^5.0.3-dev",
"@celo/wallet-hsm-azure": "^5.0.3-dev",
"@celo/wallet-ledger": "^5.0.3-dev",
"@celo/wallet-local": "^5.0.3-dev",
"@celo/contractkit": "^5.0.4",
"@celo/explorer": "^5.0.4",
"@celo/governance": "^5.0.4",
"@celo/identity": "^5.0.4",
"@celo/phone-utils": "^5.0.4",
"@celo/utils": "^5.0.4",
"@celo/cryptographic-utils": "^5.0.4",
"@celo/wallet-hsm-azure": "^5.0.4",
"@celo/wallet-ledger": "^5.0.4",
"@celo/wallet-local": "^5.0.4",
"@ledgerhq/hw-transport-node-hid": "^6.27.4",
"@oclif/command": "^1.6.0",
"@oclif/config": "^1.6.0",
Expand Down Expand Up @@ -70,7 +70,7 @@
"web3": "1.10.0"
},
"devDependencies": {
"@celo/dev-utils": "0.0.1-dev",
"@celo/dev-utils": "0.0.1",
"@oclif/dev-cli": "^1.23.0",
"@types/cli-table": "^0.3.0",
"@types/debug": "^4.1.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/dev-utils",
"version": "0.0.1-dev",
"version": "0.0.1",
"description": "util package for celo packages that should only be a devDependency",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
14 changes: 7 additions & 7 deletions packages/env-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"@celo/contractkit": "5.0.3-dev",
"@celo/utils": "5.0.3-dev",
"@celo/base": "5.0.3-dev",
"@celo/connect": "5.0.3-dev",
"@celo/identity": "5.0.3-dev",
"@celo/phone-utils": "5.0.3-dev",
"@celo/cryptographic-utils": "5.0.3-dev",
"@celo/contractkit": "5.0.4",
"@celo/utils": "5.0.4",
"@celo/base": "5.0.4",
"@celo/connect": "5.0.4",
"@celo/identity": "5.0.4",
"@celo/phone-utils": "5.0.4",
"@celo/cryptographic-utils": "5.0.4",
"bunyan": "1.8.12",
"bunyan-gke-stackdriver": "0.1.2",
"bunyan-debug-stream": "2.0.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/metadata-crawler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"homepage": "https://github.com/celo-org/celo-monorepo/tree/master/packages/metadata-crawler",
"repository": "https://github.com/celo-org/celo-monorepo/tree/master/packages/metadata-crawler",
"dependencies": {
"@celo/connect": "5.0.3-dev",
"@celo/contractkit": "5.0.3-dev",
"@celo/utils": "5.0.3-dev",
"@celo/connect": "5.0.4",
"@celo/contractkit": "5.0.4",
"@celo/utils": "5.0.4",
"@types/pg": "^7.14.3",
"bunyan": "1.8.12",
"bunyan-gke-stackdriver": "0.1.2",
Expand Down
14 changes: 7 additions & 7 deletions packages/phone-number-privacy/combiner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/phone-number-privacy-combiner",
"version": "3.0.1-dev",
"version": "3.0.1",
"description": "Orchestrates and combines threshold signatures for use in ODIS",
"author": "Celo",
"license": "Apache-2.0",
Expand Down Expand Up @@ -29,10 +29,10 @@
"test:e2e:mainnet": "CONTEXT_NAME=mainnet yarn test:e2e"
},
"dependencies": {
"@celo/contractkit": "^5.0.3-dev",
"@celo/phone-number-privacy-common": "^3.0.4-dev",
"@celo/identity": "^5.0.3-dev",
"@celo/encrypted-backup": "^5.0.3-dev",
"@celo/contractkit": "^5.0.4",
"@celo/phone-number-privacy-common": "^3.0.3",
"@celo/identity": "^5.0.4",
"@celo/encrypted-backup": "^5.0.4",
"@celo/poprf": "^0.1.9",
"@types/bunyan": "^1.8.8",
"@opentelemetry/api": "^1.4.1",
Expand All @@ -56,8 +56,8 @@
},
"devDependencies": {
"@types/node": "18.15.13",
"@celo/utils": "^5.0.3-dev",
"@celo/phone-utils": "^5.0.3-dev",
"@celo/utils": "^5.0.4",
"@celo/phone-utils": "^5.0.4",
"@types/express": "^4.17.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^7.0.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/phone-number-privacy/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/phone-number-privacy-common",
"version": "3.0.4-dev",
"version": "3.0.3",
"description": "Common library for the combiner and signer libraries",
"author": "Celo",
"license": "Apache-2.0",
Expand All @@ -18,10 +18,10 @@
"lib/**/*"
],
"dependencies": {
"@celo/base": "^5.0.3-dev",
"@celo/contractkit": "^5.0.3-dev",
"@celo/utils": "^5.0.3-dev",
"@celo/phone-utils": "^5.0.3-dev",
"@celo/base": "^5.0.4",
"@celo/contractkit": "^5.0.4",
"@celo/utils": "^5.0.4",
"@celo/phone-utils": "^5.0.4",
"@types/bunyan": "1.8.8",
"bignumber.js": "^9.0.0",
"bunyan": "1.8.12",
Expand All @@ -41,7 +41,7 @@
},
"devDependencies": {
"@celo/poprf": "^0.1.9",
"@celo/wallet-local": "^5.0.3-dev",
"@celo/wallet-local": "^5.0.4",
"@types/elliptic": "^6.4.12",
"@types/express": "^4.17.6",
"@types/is-base64": "^1.1.0",
Expand Down
16 changes: 8 additions & 8 deletions packages/phone-number-privacy/monitor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/phone-number-privacy-monitor",
"version": "3.0.1-beta.1-dev",
"version": "3.0.1",
"description": "Regularly queries ODIS to ensure the system is functioning properly",
"author": "Celo",
"license": "Apache-2.0",
Expand All @@ -22,13 +22,13 @@
"loadTest": "ts-node src/scripts/run-load-test.ts run"
},
"dependencies": {
"@celo/contractkit": "^5.0.3-dev",
"@celo/cryptographic-utils": "^5.0.3-dev",
"@celo/encrypted-backup": "^5.0.3-dev",
"@celo/identity": "^5.0.3-dev",
"@celo/wallet-local": "^5.0.3-dev",
"@celo/phone-number-privacy-common": "^3.0.4-dev",
"@celo/utils": "^5.0.3-dev",
"@celo/contractkit": "^5.0.4",
"@celo/cryptographic-utils": "^5.0.4",
"@celo/encrypted-backup": "^5.0.4",
"@celo/identity": "^5.0.4",
"@celo/wallet-local": "^5.0.4",
"@celo/phone-number-privacy-common": "^3.0.3",
"@celo/utils": "^5.0.4",
"firebase-admin": "^9.12.0",
"firebase-functions": "^3.15.7"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/phone-number-privacy/signer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/phone-number-privacy-signer",
"version": "3.0.2-dev",
"version": "3.0.2",
"description": "Signing participator of ODIS",
"author": "Celo",
"license": "Apache-2.0",
Expand Down Expand Up @@ -37,13 +37,13 @@
"ssl:keygen": "./scripts/create-ssl-cert.sh"
},
"dependencies": {
"@celo/base": "^5.0.3-dev",
"@celo/base": "^5.0.4",
"blind-threshold-bls": "npm:@celo/[email protected]",
"@celo/contractkit": "^5.0.3-dev",
"@celo/phone-number-privacy-common": "^3.0.4-dev",
"@celo/contractkit": "^5.0.4",
"@celo/phone-number-privacy-common": "^3.0.3",
"@celo/poprf": "^0.1.9",
"@celo/utils": "^5.0.3-dev",
"@celo/wallet-hsm-azure": "^5.0.3-dev",
"@celo/utils": "^5.0.4",
"@celo/wallet-hsm-azure": "^5.0.4",
"@google-cloud/secret-manager": "3.0.0",
"@opentelemetry/api": "^1.4.1",
"@opentelemetry/auto-instrumentations-node": "^0.38.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
"@0x/sol-profiler": "^4.1.37",
"@0x/sol-trace": "^3.0.47",
"@0x/subproviders": "^7.0.1",
"@celo/base": "5.0.3-dev",
"@celo/base": "5.0.4",
"@celo/bls12377js": "0.1.1",
"@celo/connect": "5.0.3-dev",
"@celo/cryptographic-utils": "5.0.3-dev",
"@celo/utils": "5.0.3-dev",
"@celo/wallet-local": "5.0.3-dev",
"@celo/connect": "5.0.4",
"@celo/cryptographic-utils": "5.0.4",
"@celo/utils": "5.0.4",
"@celo/wallet-local": "5.0.4",
"@ethereumjs/util": "8.0.5",
"@ethereumjs/vm": "npm:@celo/[email protected]",
"@ganache/console.log": "0.3.0",
Expand Down Expand Up @@ -95,7 +95,7 @@
"web3-utils": "1.10.0"
},
"devDependencies": {
"@celo/phone-utils": "5.0.3-dev",
"@celo/phone-utils": "5.0.4",
"@celo/typechain-target-web3-v1-celo": "0.2.0",
"@celo/typescript": "0.0.1",
"@types/bn.js": "^5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo/base",
"version": "5.0.3-dev",
"version": "5.0.4",
"description": "Celo base common utils, no dependencies",
"author": "Celo",
"license": "Apache-2.0",
Expand Down
Loading