Skip to content

Commit 2501d1a

Browse files
committedJan 31, 2025
Add build:packages run configuration
1 parent 542db9e commit 2501d1a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎.vscode/launch.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "1.0.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Build packages",
8+
"runtimeExecutable": "npm",
9+
"runtimeArgs": ["run", "build:packages"],
10+
"console": "integratedTerminal",
11+
"internalConsoleOptions": "neverOpen"
12+
}
13+
]
14+
}

‎apps/embedded-wallet-demo/src/main.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ const AppWrapper = () => {
2626
id: 1287,
2727
rpcUrl: 'https://rpc.testnet.moonbeam.network',
2828
explorerUrl: 'https://moonbase.moonscan.io',
29+
currencySymbol: 'DEV',
2930
},
3031
{
3132
name: 'Celo Alfajores Testnet',

0 commit comments

Comments
 (0)
Please sign in to comment.