본문 바로가기
카테고리 없음

스테이블코인 3가지 추천

by wjdflgkrl 2025. 7. 26.
반응형
스테이블코인 3가지 추천

스테이블코인 3가지 추천

1. USDT (Tether)

USDT는 가장 오래되고 널리 사용되는 스테이블코인 중 하나로, 미국 달러(USD)와 1:1 연동됩니다. 글로벌 거래소에서 높은 유동성을 자랑하며 다양한 거래쌍을 제공합니다.

  • 장점: 높은 유동성, 다양한 거래소 지원
  • 단점: 준비금 투명성 논란

2. USDC (USD Coin)

USDC는 Circle과 Coinbase가 공동 개발한 스테이블코인으로, 철저한 회계 감사와 규제 친화성으로 신뢰할 수 있는 코인입니다.

  • 장점: 투명한 준비금, 미국 규제에 친화적
  • 단점: 일부 지역에서 접근 제한 가능성

3. DAI (Dai)

DAI는 MakerDAO가 발행한 탈중앙화 스테이블코인으로, 암호화폐 담보 기반 스마트 컨트랙트로 1 USD 가치를 유지합니다.

  • 장점: 중앙 기관이 없는 완전 탈중앙화
  • 단점: 담보 자산 변동성에 따른 위험

추천 포인트

  • 단기 거래 유동성: USDT
  • 투명성 및 규제: USDC
  • DeFi 활용: DAI
#스테이블코인 #USDT #USDC #DAI #코인투자 #가상화폐 #암호화폐 #디파이 #코인비교 #투자전략
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};