You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When minting using an external key, the minter can assign an external key to each seedling in a batch. The external key is a struct composed of three fields: xpub, master_fingerprint, and derivation_path.
Currently, during the minting process, the MintAsset RPC endpoint is used to add a seedling to the batch and save it to disk. However, the external key associated with the seedling is not being saved to disk. This means the external key does not persist if the process is interrupted or restarted.
To improve the user experience, ensure that the seedling's assigned external key is persisted to the database using the InsertAssetSeedlingIntoBatch function and can be retrieved when needed.
By persisting the external key, the external key will survive a tapd restart between minting steps: MintAsset and FundBatch.
The text was updated successfully, but these errors were encountered:
When minting using an external key, the minter can assign an external key to each seedling in a batch. The external key is a struct composed of three fields:
xpub
,master_fingerprint
, andderivation_path
.Currently, during the minting process, the
MintAsset
RPC endpoint is used to add a seedling to the batch and save it to disk. However, the external key associated with the seedling is not being saved to disk. This means the external key does not persist if the process is interrupted or restarted.To improve the user experience, ensure that the seedling's assigned external key is persisted to the database using the
InsertAssetSeedlingIntoBatch
function and can be retrieved when needed.By persisting the external key, the external key will survive a tapd restart between minting steps:
MintAsset
andFundBatch
.The text was updated successfully, but these errors were encountered: