코인/코인 관련 뉴스
헤데라해시그래프(HBAR) 9월 2일 NFT 지원을 위한 v0.17.3 메인넷 업그레이드
홀드니
2021. 9. 2. 12:56
개인과 기업이 강력한 분산 응용 프로그램(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 시장에 참여하게 될 듯합니다.