// Lockup 정보 입력 (아래 순으로 기입)
address account; // Lockup 계정 주소
uint256 amount; // Lockup 토큰 개수
uint256 duration; // Lokcup 기간
let lockupInfo = [
[accounts[1].address, ethers.utils.parseEther("0.1"), ONE_MONTH*1],
[accounts[1].address, ethers.utils.parseEther("0.1"), ONE_MONTH*2],
[accounts[1].address, ethers.utils.parseEther("0.1"), ONE_MONTH*3],
]
// Encode 형태로 치환
const abiCoder = ethers.utils.defaultAbiCoder;
const encodeLockupInfo= abiCoder.encode(["tuple(address, uint256, uint256)[]"], [mintInfo]);
// exec
await lockupContract.setLockups(encodeLockupInfo);