Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix typos and link broken #738

Merged
merged 6 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.20.0
v16.20.1
5 changes: 3 additions & 2 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@sentry/react": "^7.0.0",
"@sentry/tracing": "^7.108.0",
"@truffle/contract": "^4.3.15",
"@truffle/contract": "4.6.6",
"@truffle/hdwallet-provider": "^2.1.15",
"alchemy-sdk": "^2.2.3",
"axios": "^1.2.4",
Expand All @@ -22,7 +23,7 @@
"prompt": "^1.3.0",
"rainbow-color": "^2.0.0",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-dom": "18.2.0",
"react-ga": "^3.3.0",
"react-markdown": "^8.0.0",
"react-onclickoutside": "^6.12.2",
Expand Down
2 changes: 1 addition & 1 deletion client/src/gamedata/fr/descriptions/levels/gatekeeper2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Ce gatekeeper introduit quelques nouveaux défis. Inscrivez-vous en tant que par

##### Voici quelques conseils:
* Rappelez-vous ce que vous avez appris en franchissant le premier gardien (Gatekeeper) - la première porte (gate) est la même.
* Le mot clé `assembly` dans la deuxième porte permet à un contrat d'accéder à des fonctionnalités qui ne sont pas natives de Solidity. Voir [ici](http://solidity.readthedocs.io/en/v0.4.23/assembly.html) pour plus d'informations. L'appel `extcodesize` dans cette porte obtiendra la taille du code d'un contrat à une adresse donnée - vous pouvez en savoir plus sur comment et quand cela est défini dans la section 7 du [papier jaune](https://ethereum.github. io/yellowpaper/paper.pdf).
* Le mot clé `assembly` dans la deuxième porte permet à un contrat d'accéder à des fonctionnalités qui ne sont pas natives de Solidity. Voir [ici](http://solidity.readthedocs.io/en/v0.4.23/assembly.html) pour plus d'informations. L'appel `extcodesize` dans cette porte obtiendra la taille du code d'un contrat à une adresse donnée - vous pouvez en savoir plus sur comment et quand cela est défini dans la section 7 du [papier jaune](https://ethereum.github.io/yellowpaper/paper.pdf).
* Le caractère `^` dans la troisième porte est une opération bitwise (XOR), et est utilisé ici pour appliquer une autre opération bitwise commune (voir [ici](http://solidity.readthedocs.io/en/v0.4.23/ miscellaneous.html#cheatsheet)). Le niveau Coin Flip est également un bon point de départ pour aborder ce défi.
2 changes: 1 addition & 1 deletion contracts/src/metrics/StatisticsLevelSuperseder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ contract StatisticsLevelSuperseder is Initializable {
return averageTimeTakenToCompleteLevels[player];
}

/* Level substituition logic */
/* Level substitution logic */
function setOperator(address _operator) public {
//called through TUP UpgradeAndCall
require(dumpStage == DumpStage.INIT, "Not correct dump stage");
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build]
command = "yarn run build:netlify"
command = "CI=false yarn run build:netlify"
publish = "client/build"

[[redirects]]
Expand Down
Loading
Loading