169 похожих чатов

Hi guys! How to clone new contract from this on

deposit and retrieve new contract address?

// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

contract ConcatName {

bytes public name;

constructor(bytes memory _name) {
name = _name;
}

function Deposit() external payable returns(address){
return address(new ConcatName(abi.encodePacked(name, abi.encodePacked("+"))));
}
}

I want to get something

contract1.name = "hello"
contract1.deposite() = contract2 //contract2.name = "hello+"
contract1.deposite() = contract3 //contract3.name = "hello+"
contract2.deposite() = contract4 //contract4.name = "hello++"
contract4.deposite() = contract5 //contract5.name = "hello+++"
contract3.deposite() = contract6 //contract6.name = "hello++"

6 ответов

9 просмотров

two possibilities: 1/ using assembly or yulp (tough) 2/ easy way: using a factory

Co.In-🇺🇦 🔜 Автор вопроса

Sorry. Contract deployed. But after call deposit() state reverted with error

You need to have an address parameter in the constructor that takes the address of the deployed contract factory. Your current code assumes that the contract factory is deployed at msg.sender but that's just your deployer wallet address

Co.In 🇺🇦 🔜
screenshot Sorry. Contract deployed. But after call deposit()...

1/ you have to deploy the ConcatNameFactory, not the ConcatName 2/ I miss the entrypoint to enter in the loop, so in the factory’s constructor, deploy the very first ConcatContract

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Карта сайта