See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.16; // (10M optimization runs) | |
| interface MonacoInterface { | |
| struct CarData { | |
| uint32 balance; // Where 0 means the car has no money. | |
| uint32 speed; // Where 0 means the car isn't moving. | |
| uint32 y; // Where 0 means the car hasn't moved. | |
| Car car; | |
| } |
| ########### | |
| # Imports # | |
| ########### | |
| # the RPCs file should include RPC URLs and Etherscan API Keys for relevant networks | |
| # (in a separate file so they don't get committed) | |
| source "$(dirname "$0")/rpcs.sh" | |
| # any useful addresses for various networks for easy reference | |
| source "$(dirname "$0")/addresses.sh" | |
| # any useful functions and definitions for interacting with Seaport |