SettleLab
Assessment board
EXAM 12DeFi Frontier and Operations

DeFi Frontier/Operations 출시 시험

intents, rollup/DA, cross-chain route, protocol security, regulatory launch gate를 출시 의사결정으로 평가한다.

출제 목적

frontier DeFi 기능을 hype가 아니라 settlement, finality, security, compliance gate로 평가하는 능력을 측정한다.

난이도 정책

  • 기초는 finality, verifier, intent status 구분을 묻는다.
  • 심화는 launch gate 결정을 실행 채점한다.

채점 정책

  • 객관식은 신뢰가정과 실패 상태를 정확히 고르는지 평가한다.
  • 코드형은 gate 상태를 pass/conditional/hold로 정확히 분류해야 한다.
Preview mode

로그인 후 제출 가능

문제, Starter code, 루브릭은 미리 볼 수 있다. 답안 작성과 점수 저장은 로그인 후 제공된다.

객관식핵심3

01Intent의 본질

cross-chain intent를 제품에 넣을 때 가장 중요한 설계 질문은?

객관식핵심3

02L2 finality

L2 confirmed 상태를 제품에서 바로 settlement final로 표시하면 안 되는 이유는?

객관식심화3

03Cross-chain verifier

1-of-1 verifier route와 2-of-3 verifier route를 비교할 때 봐야 할 핵심은?

코드 작성심화10

04Launch gate 결정 함수 작성

reviewDecision 함수를 작성하라. gate status가 하나라도 fail이면 hold, fail은 없지만 conditional이 있으면 conditional, 모두 pass면 pass를 반환한다. 반환값은 { decision, failed, conditional }이다.

Starter code
function reviewDecision(gates) {
  // gates: { oracle: 'pass'|'conditional'|'fail', ... }
}

채점 루브릭

  • fail gate가 있으면 hold로 둔다.
  • conditional gate를 따로 모은다.
  • 모든 gate가 pass일 때만 pass를 반환한다.
  • failed와 conditional 목록을 함께 반환한다.

자동 채점 신호

  • fail
  • conditional
  • hold
  • pass
로그인하고 답안 제출