We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97accaa commit 6bccb79Copy full SHA for 6bccb79
packages/token-distribution/hardhat.config.ts
@@ -56,8 +56,9 @@ const networkConfigs: NetworkConfig[] = [
56
},
57
]
58
59
+const DEFAULT_MNEMONIC = 'test test test test test test test test test test test junk'
60
function getAccountMnemonic() {
- return process.env.MNEMONIC || ''
61
+ return process.env.MNEMONIC || DEFAULT_MNEMONIC
62
}
63
64
function getDefaultProviderURL(network: string) {
packages/token-distribution/scripts/build
@@ -1,5 +1,7 @@
1
#!/bin/bash
2
3
+source .env
4
+
5
set -eo pipefail
6
7
if [ -z "${STUDIO_API_KEY}" ]; then
0 commit comments