-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
684 rename penumbra zonerouter package + publish to npm (#939)
* refactor and publish router * pnpm changeset * rebase * format
- Loading branch information
1 parent
7d856b5
commit 9f4c112
Showing
98 changed files
with
172 additions
and
139 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 @@ | ||
--- | ||
'@penumbra-zone/services': major | ||
--- | ||
|
||
Drop /src/ requirement for imports and renaming |
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 @@ | ||
--- | ||
'@penumbra-zone/services-context': major | ||
--- | ||
|
||
Drop /src/ requirement for imports and renaming |
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.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"name": "@penumbra-zone/services-context", | ||
"version": "2.0.2", | ||
"license": "MIT", | ||
"type": "module", | ||
"scripts": { | ||
"lint": "eslint \"**/*.ts*\"" | ||
}, | ||
"files": [ | ||
"src/", | ||
"*.md" | ||
], | ||
"exports": { | ||
".": "./src/index.ts" | ||
}, | ||
"dependencies": { | ||
"@penumbra-zone/constants": "workspace:*", | ||
"@penumbra-zone/query": "workspace:*", | ||
"@penumbra-zone/storage": "workspace:*", | ||
"@penumbra-zone/types": "workspace:*", | ||
"@penumbra-zone/wasm": "workspace:*", | ||
"exponential-backoff": "^3.1.1" | ||
}, | ||
"devDependencies": { | ||
"@penumbra-zone/polyfills": "workspace:*" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -1,21 +1,42 @@ | ||
{ | ||
"name": "@penumbra-zone/services", | ||
"version": "2.0.2", | ||
"private": true, | ||
"license": "MIT", | ||
"type": "module", | ||
"scripts": { | ||
"lint": "eslint \"**/*.ts*\"" | ||
"lint": "eslint \"**/*.ts*\"", | ||
"test": "vitest run" | ||
}, | ||
"files": [ | ||
"src/", | ||
"*.md", | ||
"!**/*.test.ts", | ||
"!test-utils.ts" | ||
], | ||
"exports": { | ||
"./ctx/*": "./src/ctx/*.ts", | ||
"./custody-service": "./src/custody-service/index.ts", | ||
"./custody-service/*": "./src/custody-service/*.ts", | ||
"./sct-service": "./src/sct-service/index.ts", | ||
"./sct-service/*": "./src/sct-service/*.ts", | ||
"./staking-service": "./src/staking-service/index.ts", | ||
"./staking-service/*": "./src/staking-service/*.ts", | ||
"./view-service": "./src/view-service/index.ts", | ||
"./view-service/*": "./src/view-service/*.ts", | ||
"./offscreen-client": "./src/offscreen-client.ts" | ||
}, | ||
"dependencies": { | ||
"@penumbra-zone/constants": "workspace:*", | ||
"@penumbra-zone/crypto-web": "workspace:*", | ||
"@penumbra-zone/getters": "workspace:*", | ||
"@penumbra-zone/bech32": "workspace:*", | ||
"@penumbra-zone/perspective": "workspace:*", | ||
"@penumbra-zone/polyfills": "workspace:*", | ||
"@penumbra-zone/query": "workspace:*", | ||
"@penumbra-zone/services-context": "workspace:*", | ||
"@penumbra-zone/storage": "workspace:*", | ||
"@penumbra-zone/transport-dom": "workspace:*", | ||
"@penumbra-zone/types": "workspace:*", | ||
"@penumbra-zone/wasm": "workspace:*", | ||
"exponential-backoff": "^3.1.1" | ||
}, | ||
"devDependencies": { | ||
"@penumbra-zone/polyfills": "workspace:*" | ||
"@penumbra-zone/wasm": "workspace:*" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
4 changes: 2 additions & 2 deletions
4
...outer/src/grpc/custody/authorize/index.ts → ...es/src/custody-service/authorize/index.ts
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
File renamed without changes.
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...es/router/src/grpc/sct/epoch-by-height.ts → ...rvices/src/sct-service/epoch-by-height.ts
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
File renamed without changes.
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...router/src/grpc/staking/validator-info.ts → ...ces/src/staking-service/validator-info.ts
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
2 changes: 1 addition & 1 deletion
2
...ter/src/grpc/staking/validator-penalty.ts → .../src/staking-service/validator-penalty.ts
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
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
.../view-protocol-server/address-by-index.ts → ...ices/src/view-service/address-by-index.ts
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
2 changes: 1 addition & 1 deletion
2
...pc/view-protocol-server/app-parameters.ts → ...rvices/src/view-service/app-parameters.ts
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
2 changes: 1 addition & 1 deletion
2
...w-protocol-server/asset-metadata-by-id.ts → .../src/view-service/asset-metadata-by-id.ts
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
2 changes: 1 addition & 1 deletion
2
...r/src/grpc/view-protocol-server/assets.ts → packages/services/src/view-service/assets.ts
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.