File tree Expand file tree Collapse file tree 8 files changed +20464
-2906
lines changed
Expand file tree Collapse file tree 8 files changed +20464
-2906
lines changed Original file line number Diff line number Diff line change @@ -59,14 +59,14 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting chain…</code>
5959
6060 < script type ="module ">
6161 import * as linera from '@linera/client' ;
62- import { PrivateKeySigner } from '@linera/signer' ;
62+ import { PrivateKey } from '@linera/signer' ;
6363
6464 const COUNTER_APP_ID = import . meta. env . VITE_COUNTER_APP_ID ;
6565
6666 async function run ( ) {
6767 await linera . default ( ) ;
6868 const faucet = await new linera . Faucet ( import . meta. env . VITE_FAUCET_URL ) ;
69- const signer = new PrivateKeySigner ( "f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66" ) ;
69+ const signer = new PrivateKey ( "f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66" ) ;
7070 const wallet = await faucet . createWallet ( ) ;
7171 const owner = await signer . address ( ) ;
7272 document . getElementById ( 'owner' ) . innerText = owner ;
Original file line number Diff line number Diff line change 99 "dev" : " vite" ,
1010 "build" : " vite build" ,
1111 "preview" : " vite preview" ,
12- "ci" : " pnpm install --frozen-lockfile && pnpm build"
12+ "ci" : " pnpm build"
1313 },
1414 "dependencies" : {
1515 "@linera/client" : " workspace:*" ,
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
141141
142142 < script type ="module ">
143143 import * as linera from '@linera/client' ;
144- import { PrivateKeySigner } from '@linera/signer' ;
144+ import { PrivateKey } from '@linera/signer' ;
145145
146146 // This needs to point at actual deployed fungible application ID.
147147 const FUNGIBLE_APP_ID = import . meta. env . VITE_FUNGIBLE_APP_ID ;
@@ -220,7 +220,7 @@ <h2>Chain history for <code id="chain-id" class="hex">requesting a new microchai
220220
221221 await linera . default ( ) ;
222222 const faucet = await new linera . Faucet ( import . meta. env . VITE_FAUCET_URL ) ;
223- const signer = new PrivateKeySigner ( "f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66" ) ;
223+ const signer = new PrivateKey ( "f77a21701522a03b01c111ad2d2cdaf2b8403b47507ee0aec3c2e52b765d7a66" ) ;
224224 const wallet = await faucet . createWallet ( ) ;
225225 const owner = signer . address ( ) ;
226226 const chainId = await faucet . claimChain ( wallet , owner ) ;
Original file line number Diff line number Diff line change 99 "dev" : " vite" ,
1010 "build" : " vite build" ,
1111 "preview" : " vite preview" ,
12- "ci" : " pnpm install --frozen-lockfile && pnpm build"
12+ "ci" : " pnpm build"
1313 },
1414 "dependencies" : {
1515 "@linera/client" : " workspace:*" ,
Original file line number Diff line number Diff line change 1212 "build" : " pnpm build:extension && pnpm build:library" ,
1313 "preview" : " vite preview" ,
1414 "prepare" : " pnpm build:library" ,
15- "ci" : " pnpm install --frozen-lockfile && pnpm build"
15+ "ci" : " pnpm build"
1616 },
1717 "dependencies" : {
1818 "@shoelace-style/shoelace" : " ^2.16.0" ,
Original file line number Diff line number Diff line change 44 "description" : " " ,
55 "scripts" : {
66 "build" : " pnpm -r build" ,
7- "ci" : " pnpm -r run ci"
7+ "ci" : " pnpm install --frozen-lockfile && pnpm -r run ci"
88 },
99 "keywords" : [],
1010 "author" : " Linera <contact@linera.io>" ,
You can’t perform that action at this time.
0 commit comments