Skip to main content

ContractBalance

For the complete documentation index, see llms.txt

컨트랙트가 보유한 토큰 잔고를 나타냅니다. GraphQL API를 통해 노출되며, 클라이언트가 모든 컨트랙트 액션(Deploy, Call, Update)의 비차폐 토큰 잔고를 조회할 수 있습니다.

type ContractBalance {
tokenType: HexEncoded!
amount: String!
}

Fields

ContractBalance.tokenType ● HexEncoded! non-null scalar

16진수로 인코딩된 토큰 타입 식별자입니다.

ContractBalance.amount ● String! non-null scalar

큰 정수 값(최대 16바이트)을 지원하기 위해 문자열로 표현된 잔고 금액입니다.

Member Of

ContractAction interface ● ContractCall object ● ContractDeploy object ● ContractUpdate object