Skip to content

Instantly share code, notes, and snippets.

@CJ42
Created January 12, 2023 15:35
Show Gist options
  • Select an option

  • Save CJ42/135dc18c4663003640d3a6ff7239ecac to your computer and use it in GitHub Desktop.

Select an option

Save CJ42/135dc18c4663003640d3a6ff7239ecac to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
contract Immutables {
uint48 immutable private A = 0x112233445566;
bytes6 immutable private B;
constructor() {
B = 0xaabbccddeeff;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment