Skip to content

Commit

Permalink
📝 L1LiskTokenScript
Browse files Browse the repository at this point in the history
  • Loading branch information
has5aan committed Jan 5, 2024
1 parent 96100b5 commit 3b3c34a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions script/L1LiskToken.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import { L1LiskToken } from "src/L1/L1LiskToken.sol";
import "script/Utils.sol";

/// @title L1LiskTokenScript - L1 Lisk token deployment script
/// @notice This contract is used to deploy L1 Lisk token contract and write its address to JSON file.
/// @notice This contract is used to deploy L1 Lisk token contract, transfer its ownership and write its address to JSON
/// file.
contract L1LiskTokenScript is Script {
/// @notice Utils contract which provides functions to read and write JSON files containing L1 and L2 addresses.
Utils utils;
Expand All @@ -15,7 +16,8 @@ contract L1LiskTokenScript is Script {
utils = new Utils();
}

/// @notice This function deploys L1 Lisk token contract and writes its address to JSON file.
/// @notice This contract is used to deploy L1 Lisk token contract, transfer its ownership and write its address to
/// JSON file.
function run() public {
// Deployer's private key. Owner of the L1 Lisk token. PRIVATE_KEY is set in .env file.
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
Expand Down

0 comments on commit 3b3c34a

Please sign in to comment.