Skip to content

This repo represents FundMe SC with separate price feed (library), and fallback and receive functions

Notifications You must be signed in to change notification settings

VladislavGlupak/FundMe_with_separate_price_converter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

  1. Go to Remix
  2. Paste the code from FundMe.sol and PriceConverter.sol into new files in Remix
  3. Hit Compile
  4. Hit Deploy

For a more in depth blog on working with remix, read here

Fallback and receive functions

fallback() external payable {
        
    }

    receive() external payable {
        
    }

Using library

contract FundMe {
    using PriceConverter for uint256;
...
library PriceConverter {
...

About

This repo represents FundMe SC with separate price feed (library), and fallback and receive functions

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published