Skip to content

Commit

Permalink
Fix sdk write w/ vite and fix npm publish (#6986)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliptype authored Dec 19, 2023
1 parent 2195a03 commit 8967859
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/commands/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@audius/commands",
"version": "1.0.11",
"private": true,
"description": "Collection of command useful for debugging audius-protocol",
"main": "src/index.mjs",
"bin": {
Expand Down
1 change: 1 addition & 0 deletions packages/embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "embed",
"version": "1.5.56",
"private": true,
"scripts": {
"start": "vite",
"start:dev": "env-cmd -f .env.dev npm run -s start",
Expand Down
3 changes: 2 additions & 1 deletion packages/es-indexer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "es-indexer",
"version": "1.0.3",
"private": true,
"description": "",
"scripts": {
"build": "tsc",
Expand Down Expand Up @@ -31,4 +32,4 @@
"pino": "7.11.0",
"pm2": "5.2.0"
}
}
}
1 change: 1 addition & 0 deletions packages/harmony/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@audius/harmony",
"version": "0.0.13",
"private": true,
"description": "The Audius Design System",
"license": "ISC",
"author": "Audius",
Expand Down
1 change: 1 addition & 0 deletions packages/identity-service/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "identity-service",
"private": true,
"description": "",
"main": "src/index.js",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class EntityManager implements EntityManagerService {
Pick<TransactionReceipt, 'blockHash' | 'blockNumber'>
> {
const nonce = await signatureSchemas.getNonce()
const chainId = await this.web3.eth.net.getId()
const chainId = Number(await this.web3.eth.net.getId())
const signatureData = signatureSchemas.generators.getManageEntityData(
chainId,
this.config.contractAddress,
Expand Down
1 change: 1 addition & 0 deletions packages/probers/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "probers",
"private": true,
"version": "1.5.56",
"description": "Automated client tests",
"scripts": {
Expand Down

0 comments on commit 8967859

Please sign in to comment.