Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion examples/counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"ci": "pnpm install --frozen-lockfile && pnpm build"
"ci": "pnpm build"
},
"dependencies": {
"@linera/extension": "workspace:^"
Expand Down
4 changes: 2 additions & 2 deletions examples/hosted-counter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"ci": "pnpm install --frozen-lockfile && pnpm build"
"ci": "pnpm build"
},
"dependencies": {
"@linera/client": "file:../../linera-protocol/linera-web"
"@linera/client": "workspace:*"
},
"devDependencies": {
"vite": "^5.4.10"
Expand Down
4 changes: 2 additions & 2 deletions examples/hosted-fungible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"ci": "pnpm install --frozen-lockfile && pnpm build"
"ci": "pnpm build"
},
"dependencies": {
"@linera/client": "file:../../linera-protocol/linera-web"
"@linera/client": "workspace:*"
},
"devDependencies": {
"vite": "^5.4.11"
Expand Down
4 changes: 2 additions & 2 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"build": "pnpm build:extension && pnpm build:library",
"preview": "vite preview",
"prepare": "pnpm build:library",
"ci": "pnpm install --frozen-lockfile && pnpm build"
"ci": "pnpm build"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.16.0",
"lit": "^3.2.0",
"randomstring": "^1.3.0",
"webext-bridge": "^6.0.1",
"@linera/client": "file:../linera-protocol/linera-web"
"@linera/client": "workspace:*"
},
"devDependencies": {
"@types/chrome": "^0.0.267",
Expand Down
2 changes: 1 addition & 1 deletion extension/src/wallet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class Server {
async setWallet(wallet: string) {
this.wallet = wallet;
await linera;
this.client = await new linera.Client({} as linera.Wallet); // Replace with actual wallet initialization
this.client = await new linera.Client({} as linera.Wallet, {} as linera.Signer); // Replace with actual wallet initialization
this.client.onNotification((notification: any) => {
console.debug('got notification for', this.subscribers.size, 'subscribers:', notification);
for (const subscriber of this.subscribers.values()) {
Expand Down
2 changes: 1 addition & 1 deletion linera-protocol
Submodule linera-protocol updated 251 files
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"scripts": {
"build": "pnpm -r build",
"ci": "pnpm -r run ci"
"ci": "pnpm install --frozen-lockfile && pnpm -r run ci"
},
"keywords": [],
"author": "Linera <contact@linera.io>",
Expand Down
Loading
Loading