File tree 4 files changed +22
-7
lines changed
packages/hardhat-core/src/internal/cli
4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " hardhat " : patch
3
+ ---
4
+
5
+ Restored the message linking to the 2024 solidity survey
Original file line number Diff line number Diff line change @@ -105,6 +105,12 @@ const customRedirects = [
105
105
"https://cryptpad.fr/form/#/2/form/view/pV-DdryeJoYUWvW+gXsFaMNynEY7t5mUsgeD1urgwSE" ,
106
106
permanent : false ,
107
107
} ,
108
+ {
109
+ source : "/solidity-survey-2024" ,
110
+ destination :
111
+ "https://cryptpad.fr/form/#/2/form/view/9xjPVmdv8z0Cyyh1ejseMQ0igmx-TedH5CPST3PhRUk" ,
112
+ permanent : false ,
113
+ } ,
108
114
{
109
115
source : "/solc-viair" ,
110
116
destination :
Original file line number Diff line number Diff line change @@ -22,14 +22,18 @@ export const SOCIALS_LINKS = {
22
22
[ SocialsEnum . DISCORD ] : "/discord" ,
23
23
} ;
24
24
25
- export const BANNER_LINK = "https://nomic.foundation/hiring" ;
26
-
27
25
export const PRIVACY_POLICY_PATH = "/privacy-policy.html" ;
28
26
27
+ // export const bannerContent = {
28
+ // text: "Join the Hardhat team! Nomic Foundation is hiring",
29
+ // shortText: "Join the Hardhat team! We are hiring",
30
+ // href: "https://nomic.foundation/hiring",
31
+ // };
32
+
29
33
export const bannerContent = {
30
- text : "Join the Hardhat team! Nomic Foundation is hiring " ,
31
- shortText : "Join the Hardhat team! We are hiring " ,
32
- href : BANNER_LINK ,
34
+ text : "Please take a few minutes to complete the 2024 Solidity Survey " ,
35
+ shortText : "Complete the 2024 Solidity Survey here " ,
36
+ href : "https://hardhat.org/solidity-survey-2024" ,
33
37
} ;
34
38
35
39
export const DOCS_PATH = path . join ( process . cwd ( ) , "src/content/" ) ;
Original file line number Diff line number Diff line change @@ -372,15 +372,15 @@ function showStarOnGitHubMessage() {
372
372
}
373
373
374
374
export function showSoliditySurveyMessage ( ) {
375
- if ( new Date ( ) > new Date ( "2024 -01-07 23:39" ) ) {
375
+ if ( new Date ( ) > new Date ( "2025 -01-31 23:39" ) ) {
376
376
// the survey has finished
377
377
return ;
378
378
}
379
379
380
380
console . log ( ) ;
381
381
console . log (
382
382
picocolors . cyan (
383
- "Please take a moment to complete the 2023 Solidity Survey: https://hardhat.org/solidity-survey-2023 "
383
+ "Please take a moment to complete the 2024 Solidity Survey: https://hardhat.org/solidity-survey-2024 "
384
384
)
385
385
) ;
386
386
}
You can’t perform that action at this time.
0 commit comments