Питання та відповіді експертів
Ставте питання експертам спільноти Cyfrin Updraft
Пости
189- Питання та відповіді експертівJan 04, 2025
Випробування твердості ливарного виробництва
Що може не так у моєму коді? function testFundUpdatesFundedDataStructure() public { fundMe.fund{value: 10e18}(); uint256 amountFunded = fundMe.getAddressToAmountFunded(address(this)); assertEq(amountFunded, 10e18); } отримуємо цю помилку: [14658] ФундаМетТест: :ТестФундуєтьСтруктура даних () ├─ [2658] FundMe: :фонд {вартість: 1000000000000000000} () │ ├─ [0] 0x0000000000000000000000000000000000000000: :Останні дані круглого ряду () [статичний дзвінок] │ │ └─ ← [Зупинка] │ └─ ← [Повернути] EvmError: Повернути └─ ← [Повернути] EvmError: Повернути
- Cyfrin Updraft
- Foundry
- Solidity
13 - Питання та відповіді експертівDec 19, 2024
Встановлення ливарного заводу Zksync
здається, установка ливарного заводу zksync більше не знаходиться в репозиторії github, я намагався ввести командний рядок у свій термінал «дозвіл заборонений, не міг прочитати з віддаленого сховища»
- Cyfrin Updraft
- Foundry
- Solidity
12 - Питання та відповіді експертівDec 14, 2024
Налаштування розгортання SimpleStorage
Чому я постійно отримую цю помилку під час спроби розгорнути свій код у VS -код, запитав AI, і це все те саме. Ось помилка: [] Складання... [] Компіляція 14 файлів за допомогою Solc 0.8.18 [] Solc 0.8.18 завершив за 149.20 мс Помилка: не вдалося запустити компілятор: Помилка (2314): Очікувалося ';', але отримано ідентифікатор --> Скрипт/розгортання SimpleStorage.s.sol: 11:9: | 11 | ВМ.Стоптрансляція (); | ^ ^ І ось мій код. солідність «' //Ідентифікатор ліцензії SPDX: MIT твердість прагми ^0.8.18; імпорт {Скрипт} з «Forge-std/script.sol»; імпорт {SimpleStorage} з «.. /src/СimpleStorage.sol «; контракт на розгортанняSimpleStorage - це скрипт { функція run () зовнішнє повернення (SimpleStorage) { vm.StartBroadcast (); SimpleStorage SimpleStorage = новий SimpleStorage (); vm.Стоптрансляція (); повернути Складне зберігання; } } «'
- Cyfrin Updraft
- Foundry
- Solidity
11 - Питання та відповіді експертівDec 12, 2024
Налаштування ливарного заводу
Під час спроби встановити свій ливарний завод після встановлення за допомогою команди «forge init», я отримав таку помилку: Помилка: не вдалося виконати (код = деякі (128), stdout = "», stderr="Ідентифікація автора невідома\n\n*Будь ласка, скажіть мені, хто ви. Запустіть git config --global user.email\» you@example.com\»\ngit config --global user.name\ "Ваше ім'я\»\n\n, щоб встановити ідентифікацію облікового запису за замовчуванням. \nОпустити --global, щоб встановити ідентифікацію лише в цьому сховищі. фатальний: не вдалося автоматично визначити адресу електронної пошти (отримав 'user @MACs -MBP. (немає) ')») Хоча мені вдалося отримати всю потрібну папку, за винятком «lib» та «.gitmodules», сподіваюся, що це не вплине на мене в майбутньому. І я також намагаюся використовувати «forge init --force» все той самий
- Cyfrin Updraft
- Foundry
- Solidity
12 - Питання та відповіді експертівMar 29, 2024
What are the recommended protocols for smart contract audit?
I am looking to conduct a smart contract audit and would like to know the best protocols to follow. Can anyone suggest a wide range of protocols that are commonly used in competitive audits? Any insights or recommendations would be greatly appreciated. Thank you.
- Foundry
- Security
- Blockchain
01Офіційна відповідь - Питання та відповіді експертівMar 29, 2024
Error `make deploy` in VS Code - `bash: make: command not found`
I am encountering an issue while trying to deploy using make deploy in VS Code with Foundry and Anvil. Despite Anvil launching properly without any errors, when I attempt to deploy using the command make deploy, I consistently receive the error message bash: make: command not found. Has anyone faced a similar problem or can provide guidance on resolving this issue? Any assistance would be greatly valued as I have been unable to progress since yesterday. Thank you.
- Foundry
01Офіційна відповідь - Питання та відповіді експертівMar 29, 2024
Which function selector and input data should be used in solveChallenge?
I am working on the solveChallenge function which requires a function selector and input data to be passed. I am unsure about which function I should get the function selector for, and what the input data should be that needs to be turned into bytes. Any guidance on this would be greatly appreciated. Thank you in advance for your help. function solveChallenge(bytes4 selectorOne, bytes memory inputData, string memory yourTwitterHandle) external { (bool successOne, bytes memory responseDataOne) = i_helperContract.call(abi.encodeWithSelector(selectorOne)); if (!successOne || uint256(bytes32((responseDataOne))) != 1) { revert S1__WrongSelector(); } (bool successTwo, bytes memory responseDataTwo) = i_helperContract.call(inputData); if (!successTwo || uint256(bytes32((responseDataTwo))) != 1) { revert S1__WrongData(); } _updateAndRewardSolver(yourTwitterHandle); } I am motivated to understand how to find the solution, not just for obtaining the NFT. Thank you for your assistance.
- Transaction
- Solidity
- Smart Contract
01Офіційна відповідь - Питання та відповіді експертівMar 29, 2024
How to Report Multiple Instances of an Attack Vector in Base Code?
I have encountered the same attack vector multiple times in a base code. Should I include each instance separately in my report or consolidate them into a single entry? For instance, if I identify a Denial of Service (DOS) attack in three different functions, should I classify these findings as three distinct high-severity issues in my report, or combine them into a single report entry for efficiency and clarity? Any insights on the best approach for reporting such repeated vulnerabilities would be greatly appreciated. Thank you.
- Security
01Офіційна відповідь - Питання та відповіді експертівMar 29, 2024
Seeking Small LaTeX Package for Linux Installation
I attempted to install LaTeX on my Linux machine using sudo apt-get install texlive-full, which consumed over 7 GB of storage, causing my 120 GB SSD system to run out of space. As a result, I had to remove it. Could someone provide a link to a smaller LaTeX package (less than 1 GB) that is sufficient for my needs? Any guidance or recommendations would be greatly appreciated. Thank you.
- Foundry
- Course
01Офіційна відповідь - Питання та відповіді експертівMar 29, 2024
Does mitigation of DoS in Section 4 Lesson 15 work correctly?
I am currently working on Section 4 Lesson 15 and addressing the PuppyRaffle::enterRaffle function. I have identified a potential issue with the second recommended mitigation of DoS. function enterRaffle(address[] memory newPlayers) public payable { require(msg.value == entranceFee * newPlayers.length, 'PuppyRaffle: Must send enough to enter raffle'); for (uint256 i = 0; i < newPlayers.length; i++) { players.push(newPlayers[i]); addressToRaffleId[newPlayers[i]] = raffleId; } for (uint256 i = 0; i < newPlayers.length ; i++) { require(addressToRaffleId[newPlayers[i]] != raffleId, 'PuppyRaffle: Duplicate player'); } } The concern is that the duplicate check in the function will always fail due to the way addressToRaffleId[newPlayers[i]] is being set to raffleId for each new player. This results in the condition addressToRaffleId[newPlayers[i]] != raffleId never being true for new players, rendering the duplicate check ineffective. I would like to confirm if my understanding of this issue is correct. Any insights or feedback on this matter would be greatly appreciated.
- Security
- Solidity
- Smart Contract
01Офіційна відповідь
- 1780
- 75
- 60
- 11
- 10
- 10
- 10
- 10
- 10
- 10
- Solidity
- Smart Contract
- Transaction
- Foundry
- Blockchain
- Gas
- Security
- Cyfrin Updraft
- Course
- erc20