Skip to content

Commit

Permalink
Merge pull request #30 from radixdlt/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
dawidsowardx authored Nov 20, 2024
2 parents 0afb94a + 4654e30 commit 71844a8
Show file tree
Hide file tree
Showing 9 changed files with 248 additions and 161 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ dist-ssr
/test-results/
/playwright-report/
/playwright/.cache/
.eslintcache
.eslintcache
coverage
1 change: 0 additions & 1 deletion examples/typescript-full-stack/apps/client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Radix + TS</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript-full-stack/apps/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"vite": "^4.4.0"
},
"dependencies": {
"@radixdlt/radix-dapp-toolkit": "1.1.1"
"@radixdlt/radix-dapp-toolkit": "^2.0.0"
}
}
4 changes: 2 additions & 2 deletions examples/typescript-full-stack/apps/client/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
DataRequestBuilder,
RadixDappToolkit,
RadixNetwork,
createLogger,
Logger,
} from '@radixdlt/radix-dapp-toolkit'

document.querySelector<HTMLDivElement>('#app')!.innerHTML = `
Expand All @@ -29,7 +29,7 @@ const radixDappToolkit = RadixDappToolkit({
dAppDefinitionAddress:
'account_tdx_2_12yf9gd53yfep7a669fv2t3wm7nz9zeezwd04n02a433ker8vza6rhe',
networkId: RadixNetwork.Stokenet,
logger: createLogger(1),
logger: Logger(1),
})

// Clear the dApp state for example purposes
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript-full-stack/apps/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"license": "MIT",
"dependencies": {
"@radixdlt/rola": "1.0.0",
"@radixdlt/rola": "^2.0.0",
"@types/cors": "^2.8.13",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.17",
Expand Down
Loading

0 comments on commit 71844a8

Please sign in to comment.