Skip to content
Merged
98 changes: 49 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
"test": "vitest"
},
"dependencies": {
"@fluffylabs/shared-ui": "^0.8.1",
"@typeberry/lib": "^0.5.10",
"@fluffylabs/shared-ui": "^0.8.2",
"@typeberry/lib": "^0.5.11",
"lucide-react": "^1.8.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.14.1"
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
Expand All @@ -30,7 +30,7 @@
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.3.0",
"jsdom": "^29.0.2",
"jsdom": "^29.1.0",
"tailwindcss": "^4.2.3",
"typescript": "^5.9.3",
"vite": "^8.0.9",
Expand Down
4 changes: 2 additions & 2 deletions src/components/examples/objects/workPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export const workPackageExample = (
spec: config.ChainSpec = config.tinyChainSpec,
): ClassInstance<typeof block.WorkPackage> =>
block.WorkPackage.create({
authorization: bytesBlobFrom("authorization"),
authToken: bytesBlobFrom("authorization"),
authCodeHost: block.tryAsServiceId(99),
authCodeHash: filledHash(40),
parametrization: bytesBlobFrom("params"),
authConfiguration: bytesBlobFrom("params"),
context: refineContextExample(spec),
items: FixedSizeArray.new([workItemExample(spec)], block.tryAsWorkItemsCount(1)),
});