Skip to content

Commit 539d427

Browse files
backmerge 18-05-26 (#424)
1 parent d9c78c3 commit 539d427

6 files changed

Lines changed: 10 additions & 5 deletions

File tree

.changeset/new-alchemy-key.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-eth": patch
3+
---
4+
5+
- new Alchemy key (https://github.com/scaffold-eth/scaffold-eth-2/pull/1287)

templates/base/packages/nextjs/scaffold.config.ts.template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export type BaseConfig = {
3737
3838
export type ScaffoldConfig = BaseConfig ${extraConfigTypeName[0] ? `& ${extraConfigTypeName[0]}` : ''};
3939
40-
export const DEFAULT_ALCHEMY_API_KEY = "cR4WnXePioePZ5fFrnSiR";
40+
export const DEFAULT_ALCHEMY_API_KEY = "IZYEU2cWBgnFmgiTAgpWD";
4141
4242
const scaffoldConfig = ${stringify(finalConfig, {
4343
targetNetworks: "The networks on which your DApp is live",

templates/solidity-frameworks/foundry/packages/foundry/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# be auto filled when run `yarn generate`.
1313

1414
# Alchemy rpc URL is used while deploying the contracts to some testnets/mainnets, checkout `foundry.toml` for it's use.
15-
ALCHEMY_API_KEY=cR4WnXePioePZ5fFrnSiR
15+
ALCHEMY_API_KEY=IZYEU2cWBgnFmgiTAgpWD
1616
# Etherscan API key is used to verify the contract on etherscan.
1717
ETHERSCAN_API_KEY=DNXJA8RX2Q3VZ4URQIWP7Z68CJXQZSC6AW
1818
# Default account for localhost / use "scaffold-eth-custom" if you wish to use a generated account or imported account

templates/solidity-frameworks/foundry/packages/foundry/.env.template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const contents = () =>
77
# but we recommend getting your own API Keys for Production Apps.
88
99
# Alchemy rpc URL is used while deploying the contracts to some testnets/mainnets, checkout \`foundry.toml\` for it's use.
10-
ALCHEMY_API_KEY=cR4WnXePioePZ5fFrnSiR
10+
ALCHEMY_API_KEY=IZYEU2cWBgnFmgiTAgpWD
1111
1212
# Etherscan API key is used to verify the contract on etherscan.
1313
ETHERSCAN_API_KEY=DNXJA8RX2Q3VZ4URQIWP7Z68CJXQZSC6AW

templates/solidity-frameworks/foundry/packages/foundry/scripts-js/checkAccountBalance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { parse } from "toml";
99
import { ethers } from "ethers";
1010

1111
const ALCHEMY_API_KEY =
12-
process.env.ALCHEMY_API_KEY || "cR4WnXePioePZ5fFrnSiR";
12+
process.env.ALCHEMY_API_KEY || "IZYEU2cWBgnFmgiTAgpWD";
1313

1414
// Load environment variables
1515
const __filename = fileURLToPath(import.meta.url);

templates/solidity-frameworks/hardhat/packages/hardhat/hardhat.config.ts.template.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ ${preContent[0] || ''}
134134
135135
// If not set, it uses ours Alchemy's default API key.
136136
// You can get your own at https://dashboard.alchemyapi.io
137-
const providerApiKey = process.env.ALCHEMY_API_KEY || "cR4WnXePioePZ5fFrnSiR";
137+
const providerApiKey = process.env.ALCHEMY_API_KEY || "IZYEU2cWBgnFmgiTAgpWD";
138138
// If not set, it uses the hardhat account 0 private key.
139139
// You can generate a random account with \`yarn generate\` or \`yarn account:import\` to import your existing PK
140140
const deployerPrivateKey =

0 commit comments

Comments
 (0)