// 본딩 진행 상황 확인const progress = await token.getBondingProgress();console.log(` 진행 상황: ${(progress.progress * 100).toFixed(2)}% 모금: ${formatEther(progress.raised)} ETH 목표: ${formatEther(progress.threshold)} ETH 남은 양: ${formatEther(progress.threshold - progress.raised)} ETH`);// 현재 토큰 가격 확인const currentPrice = await token.getCurrentPrice();console.log(`현재 가격: ${formatEther(currentPrice)} ETH 당 토큰`);// 마이그레이션이 가능한지 확인const canMigrate = await token.canMigrate();console.log(`마이그레이션 준비 완료: ${canMigrate}`);