// SPDX-License-Identifier: UNLICENSED // Author: TrejGun // Email: trejgun@gemunion.io // Website: https://gemunion.io/ pragma solidity ^0.8.20; import { ChainLinkBase } from "./ChainLinkBase.sol"; abstract contract ChainLinkGoerli is ChainLinkBase { constructor() ChainLinkBase( address(0x199316A5ab4103f8d3e79DFd5A83a9C397694cB4), // vrfCoordinator address(0x18C8044BEaf97a626E2130Fe324245b96F81A31F), // LINK token 0x2ed0feb3e7fd2022120aa84fab1945545a9f2ffc9076fd6156fa96eaff4c1311, // system hash 0.1 ether // fee ) {} }