개인과 기업이 강력한 분산 응용 프로그램(DApp)을 만들 수 있도록 하는 공용 네트워크를 내세우고 있는 헤데라해시그래프(Hedera Hashgraph, HBAR)가 9월 2일 v0.17.3 메인넷 업그레이드를 진행합니다.
이번 업그레이드는 헤데라 네트워크에서의 NFT(Non-fungible tokens) 지원을 위한 HIP-17과 NFT 작성자에게 NFT 교환 시에 부여되는 로열티(Custom Hedera Token Service Fees)를 포함하는 HIP-18 등을 포함하고 있습니다.
다음은 HIP-17을 통해 지원하게 될 TokenService의 구성입니다.
service TokenService {
// Creates a new Token by submitting the transaction
rpc createToken (Transaction) returns (TransactionResponse);
// Updates the account by submitting the transaction
rpc updateToken (Transaction) returns (TransactionResponse);
// Mints an amount of the token to the defined treasury account
rpc mintToken (Transaction) returns (TransactionResponse);
// Burns an amount of the token from the defined treasury account
rpc burnToken (Transaction) returns (TransactionResponse);
// Deletes a Token
rpc deleteToken (Transaction) returns (TransactionResponse);
// Wipes the provided amount of tokens from the specified Account ID
rpc wipeTokenAccount (Transaction) returns (TransactionResponse);
// Freezes the transfer of tokens to or from the specified Account ID
rpc freezeTokenAccount (Transaction) returns (TransactionResponse);
// Unfreezes the transfer of tokens to or from the specified Account ID
rpc unfreezeTokenAccount (Transaction) returns (TransactionResponse);
// Flags the provided Account ID as having gone through KYC
rpc grantKycToTokenAccount (Transaction) returns (TransactionResponse);
// Removes the KYC flag of the provided Account ID
rpc revokeKycFromTokenAccount (Transaction) returns (TransactionResponse);
// Associates tokens to an account
rpc associateTokens (Transaction) returns (TransactionResponse);
// Dissociates tokens from an account
rpc dissociateTokens (Transaction) returns (TransactionResponse);
// Retrieves the metadata of a token
rpc getTokenInfo (Query) returns (Response);
// Gets info on NFTs N through M on the list of NFTs associated with a given account
rpc getAccountNftInfo (Query) returns (Response);
// Retrieves the metadata of an NFT by TokenID and serial number
rpc getTokenNftInfo (Query) returns (Response);
// Gets info on NFTs N through M on the list of NFTs associated with a given Token of type NON_FUNGIBLE
rpc getTokenNftInfos (Query) returns (Response);
}
이 중 페이징(paging)을 위한 getAccountNftInfo와 getTokenNftInfos는 몇 가지 성능 이슈로 0.18.0 전까지는 지원하지 않는다고 합니다.
NFT 시장이 과열되고 있는 가운데, 이번 업그레이드를 통해 헤데라해시그래프 또한 경쟁자로서 NFT 시장에 참여하게 될 듯합니다.
'코인 > 코인 관련 뉴스' 카테고리의 다른 글
엘 살바도르 "비트코인 법" 시행 전 200 BTC 구매 (0) | 2021.09.07 |
---|---|
고팍스(GoPax) 거래소 PRO 마켓 지원 종료 안내 (0) | 2021.09.03 |
마이네이버앨리스(ALICE): 프리-알파 테스팅 등록 방법 (0) | 2021.09.01 |
비트코인 강세장은 9월에도 이어질까? 데이터는 글쎄... (0) | 2021.08.31 |
미 연준 제롬 파월 의장 테이퍼링 언급, 암호화폐 시장 일제히 상승 (0) | 2021.08.28 |