Skip to content

Commit 74b6341

Browse files
Merge pull request #407 from scaffold-eth/backmerge-14-04-26
2 parents 63ebfef + 39d176a commit 74b6341

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

.changeset/backmerge-14-04-26.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"create-eth": patch
3+
---
4+
5+
- better default for border radius (https://github.com/scaffold-eth/scaffold-eth-2/pull/1266)
6+
- update default foundry Alchemy key (https://github.com/scaffold-eth/scaffold-eth-2/pull/1267)

templates/base/packages/nextjs/styles/globals.css.template.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const contents = ({ postContent }) =>
3838
--color-warning: #ffcf72;
3939
--color-error: #ff8863;
4040
41-
--radius-field: 9999rem;
41+
--radius-field: 1rem;
4242
--radius-box: 1rem;
4343
--tt-tailw: 6px;
4444
}
@@ -63,7 +63,7 @@ const contents = ({ postContent }) =>
6363
--color-warning: #ffcf72;
6464
--color-error: #ff8863;
6565
66-
--radius-field: 9999rem;
66+
--radius-field: 1rem;
6767
--radius-box: 1rem;
6868
6969
--tt-tailw: 6px;
@@ -111,6 +111,7 @@ const contents = ({ postContent }) =>
111111
112112
.btn {
113113
@apply shadow-md;
114+
border-radius: 9999rem;
114115
}
115116
116117
.btn.btn-ghost {

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=oKxs-03sij-U_N0iOlrSsZFr29-IqbuF
15+
ALCHEMY_API_KEY=cR4WnXePioePZ5fFrnSiR
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=oKxs-03sij-U_N0iOlrSsZFr29-IqbuF
10+
ALCHEMY_API_KEY=cR4WnXePioePZ5fFrnSiR
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 || "oKxs-03sij-U_N0iOlrSsZFr29-IqbuF";
12+
process.env.ALCHEMY_API_KEY || "cR4WnXePioePZ5fFrnSiR";
1313

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

0 commit comments

Comments
 (0)