Update token custom fees
Property
Description
Constructor
Description
new TokenFeeScheduleUpdateTransaction()Methods
Method
Type
Requirement
//Create the transaction
TokenFeeScheduleUpdateTransaction transaction = new TokenFeeScheduleUpdateTransaction()
.setTokenId(tokenId)
.addCustomFee(customFee);
//Freeze the unsigned transaction, sign with the fee schedule key of the token, submit the transaction to a Hedera network
TransactionId txId = transaction.build(client).sign(feeScheduleKey).execute(client);
//Request the receipt of the transaction
TransactionReceipt receipt = txId.getReceipt(client);
//Get the transaction consensus status
Status transactionStatus = receipt.status;
System.out.println("The transaction consensus status is " +transactionStatus);
//Version: 1.5.0//Update the name of the token
const transaction = new TokenUpdateTransaction()
.setTokenId(tokenId)
.addCustomFee(customFee);
//Build the unsigned transaction, sign with the token fee schedule private, submit the transaction to a Hedera network
const transactionId = await transaction.build(client).sign(feeScheduleKey).execute(client);
//Request the receipt of the transaction
const receipt = await transactionId.getReceipt(client);
//Get the transaction consensus status
const transactionStatus = receipt.status;
console.log("The transaction consensus status is " +transactionStatus);
//Version: 1.4.10Last updated