This repository contains a Solidity smart contract, StorageFactory
, which demonstrates key Solidity programming concepts such as contract deployment, storage, function calls, and interaction between contracts. The contract allows for the creation of multiple instances of another contract (SimpleStorage
) and provides functions to store and retrieve data from those instances.
- The contract includes a function (
createSimpleStorageContract
) that deploys new instances of theSimpleStorage
contract dynamically. - This demonstrates how new contracts can be created from within another contract using the
new
keyword.
- The deployed contracts are stored in an array (
simpleStorageArray
), allowing interaction with each individual contract instance. - The functions
sfStore
andsfGet
allow for storing and retrieving values from the created contracts. - This showcases how to interact with multiple instances of a contract.
- The contract utilizes a dynamic array to keep track of deployed
SimpleStorage
contracts. - This allows for scalable and organized management of contract instances.
- Functions use appropriate visibility specifiers:
public
: Functions that need to be accessed externally (createSimpleStorageContract
,sfStore
,sfGet
).view
: ThesfGet
function does not modify the state and is marked asview
.
- Interacting with external contracts usually requires their address and ABI (Application Binary Interface), though in this case, Solidity allows direct interaction via an array of contract instances.
- Deploys a new instance of the
SimpleStorage
contract. - Pushes the deployed contract into the
simpleStorageArray
.
function createSimpleStorageContract() public {
SimpleStorage simpleStorage = new SimpleStorage();
simpleStorageArray.push(simpleStorage);
}
- Stores a number in a specific
SimpleStorage
contract instance. - Takes two arguments:
_simpleStorageIndex
: The index of the contract in the array._simpleStorageNumber
: The number to store.
function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {
simpleStorageArray[_simpleStorageIndex].store(_simpleStorageNumber);
}
- Retrieves the stored value from a specific
SimpleStorage
contract instance. - Uses the
view
keyword since it does not modify the blockchain state.
function sfGet(uint256 _simpleStorageIndex) public view returns (uint256) {
return simpleStorageArray[_simpleStorageIndex].retrieve();
}
- This project covers fundamental Solidity concepts like contract deployment, contract interactions, function visibility, and data storage.
- The
StorageFactory
contract acts as a factory contract, dynamically deploying and managing multipleSimpleStorage
contracts. - By studying this contract, one can learn how to create, store, and retrieve data from dynamically deployed smart contracts on Ethereum.
- Implement event logging for better tracking of deployed contracts.
- Add authentication mechanisms to restrict function execution.
- Enhance with a frontend interface for user interaction.
This project is licensed under the MIT License.