How to set an AtBlockWithReset (Date with countdown reset) Protocol on-chain?
This function creates a AtBlockWithReset Protocol on the Ternoa chain. It returns an object promise containing the ProtocolSetEvent provided by the Ternoa blockchain.
Use your own account by updating the //TernoaTestAccount with your account seed when retrieving the keyring from the example below. Replace the variables according to your needs. Each protocol requires its own specific set of parameters but once you will have understood this AtBlockWithReset example, you will know of to set them all.
import { initializeApi, getKeyringFromSeed, createNft, getLastBlock, setTransmissionProtocol, WaitUntil,} from"ternoa-js";//First import the corresponding protocol helpers.//Helpers expect primitive values (strings, numbers, boolean (..)) and return the corresponding formatted object in the format expected by the chain.
import { formatAtBlockWithResetProtocol, formatProtocolCancellation,} from"ternoa-js/protocols/utils";constcreateContract=async () => {try {awaitinitializeApi();constkeyring=awaitgetKeyringFromSeed("//TernoaTestAccount");constnftId=// update with the NFT id to be transferred with the AtBlockWithReset protocol.constprotocolRecipient=// update with the address of the recipient.constprotocolExecutionDate=// update with the date you want the protocol to be executed. // As the blockchain is expecting block numbers rather than dates, an approximative dateToBlock converter could be used like below: consider approximately one new block every 6 seconds.
constlastBlockId=awaitgetLastBlock()constduration=protocolExecutionDate.getTime() -newDate().getTime();constnumberOfBlocks= duration /6/1000consttransmissionBlockId=Math.ceil(lastBlockId + numberOfBlocks)// Here you create some constants with each helper and value you want. // First set the transmission protocol values: protocol kind and the block number (here the date converted to block)
constprotocol=formatAtBlockWithResetProtocol("atBlockWithReset", transmissionBlockId ); // Second set the cancellation option of your protocol: It can be anytime, none, or untilBlock. if untilBlock is set, you need to add the corresponding block id.
constcancellation=formatProtocolCancellation("anytime");// Provide each const one by one as parameters in our function below:const {nftId,recipient,protocol } =awaitsetTransmissionProtocol( nftId, protocolRecipient, protocol, cancellation, keyring,WaitUntil.BlockInclusion );console.log(`Protocol ${protocol} created for NFT: ${nftId}.`); } catch (e) {console.error(e); }};
The expected params
The expected parameters for creating an AtBlockWithReset protocol are objects under a specific format. The best practice and the easiest way to create the params is to use the formatters we provide:
formatAtBlockProtocol()
formatAtBlockWithResetProtocol()
formatOnConsentProtocol()
formatOnConsentAtBlockProtocol()
formatProtocolCancellation()
`nftId`: The NFT Id of the Protocol.`recipient`: The destination account of the NFT.`protocol`: The protocol kind. In our example, an atBlockWithReset and the transfer block.The protocol can be either "atBlock", "atBlockWithReset", "onConsent" or "onConsentAtBlock".The expected object parameter is: { [key: string]: number | ProtocolOnConsentData | Omit<ProtocolOnConsentData, "block"> }
However, using the formatter converts the function parameters into the expected format and makes you avoid any errors.`protocolCancellation`: the cancellation period of the transmission protocol.It can be either "untilBlock" (set the block number), "anytime" (null), or "none" (null).Again the expected format of the cancellation is under the same format { [key: string]: number | null }However, using the formatter converts the function parameters into the expected format and makes you avoid any errors.`keyring`: The provided keyring (containing the address) will be used to sign the transaction and pay the execution fee.
`waitUntil`: WaitUntil defines at which point we want to get the results of the transaction execution: BlockInclusion or BlockFinalization.
Response
The response provided from the blockchain event includes all the information below according to the parameters provided when creating a date with the countdown protocol.
`nftId`: ID of the NFT used when creating a date with countdown protocol.`recipient`: The destination account of the NFT after protocol execution.`protocol`: The object containing the protocol data.`cancellation`: The object containing the cancellation type: null or the block number.
Support
If you face any trouble, feel free to reach out to our community engineers in our Discord.