Skip to content

Instantly share code, notes, and snippets.

@ac12644
Created October 31, 2022 20:26
Show Gist options
  • Save ac12644/8a62edc378e14f436db402147f794368 to your computer and use it in GitHub Desktop.
Save ac12644/8a62edc378e14f436db402147f794368 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './Fundraiser.sol';
contract FundraiserFactory {
Fundraiser[] public _fundraisers;
function fundraisersCount() public view returns(uint256) { return _fundraisers.length; }
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment