바이프로스트 네트워크
  • 소개
  • 바이프로스트 네트워크 구조
    • 합의
    • 크로스체인 커뮤니케이션 프로토콜 (CCCP)
    • 오라클 서비스
  • 노드 운영 매뉴얼
    • 기본 노드 요구 사항
    • 풀 노드 요구 사항
    • 검증자 계정 관리
    • 운영자 가이드
      • 엔드포인트 (Endpoint) 노드 셋업
        • 도커 셋업
        • Systemd 셋업
      • 검증자 노드 셋업
        • 도커 셋업
        • Systemd 셋업
      • 릴레이어 셋업
        • bifrost-relayer.rs
      • 체인 데이터 스냅샷
      • 문제 해결
        • 테스트넷 체인 동기화 이슈
    • 시스템 모니터링
      • Prometheus and Grafana
      • Sentry
  • 노미네이터
  • 개발자 문서
    • 이더리움 API
      • 프리컴파일 컨트랙트
      • 개발자 라이브러리
      • 개발자 환경
    • 바이프로스트 프리컴파일 컨트랙트
      • 스테이킹
      • 거버넌스
      • 릴레이 매니저
    • 팔렛 인터페이스
      • BfcStaking
      • BfcUtility
      • BfcOffences
      • RelayManager
    • 클라이언트 API
      • JSON-RPC API
        • author
        • chain
        • childstate
        • debug
        • eth
        • grandpa
        • net
        • offchain
        • payment
        • rpc
        • state
        • system
        • trace
        • txpool
        • web3
      • 익스플로러 API
      • 런타임 API
    • 크로스체인 트랜잭션 및 오라클 API
      • 가격 오라클 컨트랙트 API
      • 소켓 컨트랙트 API
    • 바이프로스트 테스트넷 BFC 토큰 수령 방법
  • 거버넌스
  • 보안
  • 토큰 & 자산
    • 유니파이드 토큰
    • 인플레이션 모델
  • Add Network
    • 포키
    • 메타마스크
  • Bridge
    • 브릿지 가이드
      • 바이프로스트 네트워크로 예치
      • 다른 네트워크로 출금
    • 용어
  • Staking
    • 스테이킹 가이드
      • BFC 스테이킹
      • BFC 언스테이크
    • 용어
      • 모든 밸리데이터
      • 스테이킹 현황
  • Language
    • Bifrost Network Guide
Powered by GitBook
On this page
  • hasKey(publicKey: Bytes, keyType: Text): bool
  • hasSessionKeys(sessionKeys: Bytes): bool
  • insertKey(keyType: Text, suri: Text, publicKey: Bytes): Bytes
  • pendingExtrinsics(): Vec<Extrinsic>
  • removeExtrinsic(bytesOrHash: Vec<ExtrinsicOrHash>): Vec<Hash>
  • rotateKeys(): Bytes
  • submitExtrinsic(extrinsic: Extrinsic): Hash
  1. 개발자 문서
  2. 클라이언트 API
  3. JSON-RPC API

author

hasKey(publicKey: Bytes, keyType: Text): bool

  • interface: api.rpc.author.hasKey

  • jsonrpc: author_hasKey

  • summary: 주어진 공개 키와 키 유형에 대한 개인 키가 키스토어에 있으면 '참 (true)'을 반환합니다.

hasSessionKeys(sessionKeys: Bytes): bool

  • interface: api.rpc.author.hasSessionKeys

  • jsonrpc: author_hasSessionKeys

  • summary: 주어진 세션 공개 키에 대한 개인 키가 키스토어에 있으면 '참( true)'을 반환합니다.

insertKey(keyType: Text, suri: Text, publicKey: Bytes): Bytes

  • interface: api.rpc.author.insertKey

  • jsonrpc: author_insertKey

  • summary: 키스토어에 키를 삽입합니다.

pendingExtrinsics(): Vec<Extrinsic>

  • interface: api.rpc.author.pendingExtrinsics

  • jsonrpc: author_pendingExtrinsics

  • summary: 모든 보류 중인 익스트린식 (extrinsic)을 반환하며, 발신자별로 그룹화될 수 있습니다.

removeExtrinsic(bytesOrHash: Vec<ExtrinsicOrHash>): Vec<Hash>

  • interface: api.rpc.author.removeExtrinsic

  • jsonrpc: author_removeExtrinsic

  • summary: 주어진 익스트린식 (extrinsic)을 풀 (pool)에서 제거하고 재가져오기를 방지하기 위해 일시적으로 금지합니다.

rotateKeys(): Bytes

  • interface: api.rpc.author.rotateKeys

  • jsonrpc: author_rotateKeys

  • summary: 새로운 세션 키를 생성하고 해당 공개 키를 반환합니다.

submitExtrinsic(extrinsic: Extrinsic): Hash

  • interface: api.rpc.author.submitExtrinsic

  • jsonrpc: author_submitExtrinsic

  • summary: 블록 포함을 위해 완전한 형식의 익스트린식 (extrinsic)을 제출합니다.

PreviousJSON-RPC APINextchain

Last updated 8 days ago