Skip to content

Instantly share code, notes, and snippets.

@rzvl
Created March 25, 2022 13:25
Show Gist options
  • Save rzvl/0b0418ae97cefb7c5dfca832ea9cf806 to your computer and use it in GitHub Desktop.
Save rzvl/0b0418ae97cefb7c5dfca832ea9cf806 to your computer and use it in GitHub Desktop.

Constant vs. Immutable Variables in Solidity

feature / variable constant immutable
cannot be modified ✔️ ✔️
can be assigned at constructor ✔️
define at file level ✔️
gas price compared to regular variables lowest lower
supported types strings + value types only value types
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment