File tree Expand file tree Collapse file tree
base/packages/nextjs/styles
solidity-frameworks/foundry/packages/foundry Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change 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.
1717ETHERSCAN_API_KEY = DNXJA8RX2Q3VZ4URQIWP7Z68CJXQZSC6AW
1818# Default account for localhost / use "scaffold-eth-custom" if you wish to use a generated account or imported account
Original file line number Diff line number Diff 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.
1313ETHERSCAN_API_KEY=DNXJA8RX2Q3VZ4URQIWP7Z68CJXQZSC6AW
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import { parse } from "toml";
99import { ethers } from "ethers" ;
1010
1111const 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
1515const __filename = fileURLToPath ( import . meta. url ) ;
You can’t perform that action at this time.
0 commit comments