Skip to content

Instantly share code, notes, and snippets.

View darcius's full-sized avatar

David Rugendyke darcius

View GitHub Profile
@darcius
darcius / RocketStorageExample
Last active April 21, 2018 16:26
Rocket Storage Examples
pragma solidity 0.4.18;
import "./contract/Owned.sol";
import "./RocketUser.sol";
import "./RocketStorage.sol";
/// @title Examples of how to store and read a contract address in your dApps eternal storage for use in the hub / spoke pattern
/// @author David Rugendyke
@darcius
darcius / RocketStorage.sol
Last active February 3, 2024 07:56
Rocket Pools Eternal Storage
pragma solidity 0.4.18;
import "./contract/Owned.sol";
/// @title The primary persistent storage for Rocket Pool
/// @author David Rugendyke
contract RocketStorage is Owned {