SealBatch
tapcli assets mint seal
SealBatch will attempt to seal the current pending batch by creating and
validating asset group witness for all assets in the batch. If a witness
is not provided, a signature will be derived to serve as the witness. This
RPC is only needed if any assets in the batch have a custom asset group key
that require an external signer. Otherwise, FinalizeBatch can be called
directly.
Source: mintrpc/mint.proto
gRPC
rpc SealBatch (SealBatchRequest) returns (SealBatchResponse);
REST
| HTTP Method | Path | 
|---|---|
| POST | /v1/taproot-assets/assets/mint/seal | 
Code Samples
- gRPC
- REST
- Shell
- Javascript
- Python
const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');
const GRPC_HOST = 'localhost:10029'
const MACAROON_PATH = 'TAPROOT-ASSETS_DIR/regtest/taproot-assets.macaroon'
const TLS_PATH = 'TAPROOT-ASSETS_DIR/tls.cert'
const loaderOptions = {
  keepCase: true,
  longs: String,
  enums: String,
  defaults: true,
  oneofs: true,
};
const packageDefinition = protoLoader.loadSync('mintrpc/mint.proto', loaderOptions);
const mintrpc = grpc.loadPackageDefinition(packageDefinition).mintrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
  let metadata = new grpc.Metadata();
  metadata.add('macaroon', macaroon);
  callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new mintrpc.Mint(GRPC_HOST, creds);
let request = {
  short_response: <bool>,
  group_witnesses: <GroupWitness>,
  signed_group_virtual_psbts: <string>,
};
client.sealBatch(request, function(err, response) {
  console.log(response);
});
// Console output:
//  {
//    "batch": <MintingBatch>,
//  }
import codecs, grpc, os
# Generate the following 2 modules by compiling the mintrpc/mint.proto with the grpcio-tools.
# See https://github.com/lightningnetwork/lnd/blob/master/docs/grpc/python.md for instructions.
import mint_pb2 as mintrpc, mint_pb2_grpc as mintstub
GRPC_HOST = 'localhost:10029'
MACAROON_PATH = 'TAPROOT-ASSETS_DIR/regtest/taproot-assets.macaroon'
TLS_PATH = 'TAPROOT-ASSETS_DIR/tls.cert'
# create macaroon credentials
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
def metadata_callback(context, callback):
  callback([('macaroon', macaroon)], None)
auth_creds = grpc.metadata_call_credentials(metadata_callback)
# create SSL credentials
os.environ['GRPC_SSL_CIPHER_SUITES'] = 'HIGH+ECDSA'
cert = open(TLS_PATH, 'rb').read()
ssl_creds = grpc.ssl_channel_credentials(cert)
# combine macaroon and SSL credentials
combined_creds = grpc.composite_channel_credentials(ssl_creds, auth_creds)
# make the request
channel = grpc.secure_channel(GRPC_HOST, combined_creds)
stub = mintstub.MintStub(channel)
request = mintrpc.SealBatchRequest(
  short_response=<bool>,
  group_witnesses=<GroupWitness>,
  signed_group_virtual_psbts=<string>,
)
response = stub.SealBatch(request)
print(response)
# {
#    "batch": <MintingBatch>,
# }
- Javascript
- Python
const fs = require('fs');
const request = require('request');
const REST_HOST = 'localhost:8089'
const MACAROON_PATH = 'TAPROOT-ASSETS_DIR/regtest/taproot-assets.macaroon'
let requestBody = {
  short_response: <boolean>, // <bool> 
  group_witnesses: <array>, // <GroupWitness> 
  signed_group_virtual_psbts: <array>, // <string> 
};
let options = {
  url: `https://${REST_HOST}/v1/taproot-assets/assets/mint/seal`,
  // Work-around for self-signed certificates.
  rejectUnauthorized: false,
  json: true,
  headers: {
    'Grpc-Metadata-macaroon': fs.readFileSync(MACAROON_PATH).toString('hex'),
  },
  form: JSON.stringify(requestBody),
}
request.post(options, function(error, response, body) {
  console.log(body);
});
// Console output:
//  {
//    "batch": <object>, // <MintingBatch> 
//  }
import base64, codecs, json, requests
REST_HOST = 'localhost:8089'
MACAROON_PATH = 'TAPROOT-ASSETS_DIR/regtest/taproot-assets.macaroon'
TLS_PATH = 'TAPROOT-ASSETS_DIR/tls.cert'
url = f'https://{REST_HOST}/v1/taproot-assets/assets/mint/seal'
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
headers = {'Grpc-Metadata-macaroon': macaroon}
data = {
  'short_response': <bool>,
  'group_witnesses': <GroupWitness>,
  'signed_group_virtual_psbts': <string>,
}
r = requests.post(url, headers=headers, data=json.dumps(data), verify=TLS_PATH)
print(r.json())
# {
#    "batch": <MintingBatch>,
# }
# There is no CLI command for this RPC
Messages
mintrpc.SealBatchRequest
Source: mintrpc/mint.proto
| Field | gRPC Type | REST Type | REST Placement | 
|---|---|---|---|
| short_response | bool | boolean | body | 
| group_witnesses | GroupWitness[] | array | body | 
| signed_group_virtual_psbts | string[] | array | body | 
mintrpc.SealBatchResponse
Source: mintrpc/mint.proto
| Field | gRPC Type | REST Type | 
|---|---|---|
| batch | MintingBatch | object | 
Nested Messages
mintrpc.MintingBatch
| Field | gRPC Type | REST Type | 
|---|---|---|
| batch_key | bytes | string | 
| batch_txid | string | string | 
| state | BatchState | string | 
| assets | PendingAsset[] | array | 
| created_at | int64 | string | 
| height_hint | uint32 | integer | 
| batch_psbt | bytes | string | 
mintrpc.PendingAsset
| Field | gRPC Type | REST Type | 
|---|---|---|
| asset_version | AssetVersion | string | 
| asset_type | AssetType | string | 
| name | string | string | 
| asset_meta | AssetMeta | object | 
| amount | uint64 | string | 
| new_grouped_asset | bool | boolean | 
| group_key | bytes | string | 
| group_anchor | string | string | 
| group_internal_key | KeyDescriptor | object | 
| group_tapscript_root | bytes | string | 
| script_key | ScriptKey | object | 
taprpc.AssetMeta
| Field | gRPC Type | REST Type | 
|---|---|---|
| data | bytes | string | 
| type | AssetMetaType | string | 
| meta_hash | bytes | string | 
taprpc.GroupWitness
| Field | gRPC Type | REST Type | 
|---|---|---|
| genesis_id | bytes | string | 
| witness | bytes[] | array | 
taprpc.KeyDescriptor
| Field | gRPC Type | REST Type | 
|---|---|---|
| raw_key_bytes | bytes | string | 
| key_loc | KeyLocator | object | 
taprpc.KeyLocator
| Field | gRPC Type | REST Type | 
|---|---|---|
| key_family | int32 | integer | 
| key_index | int32 | integer | 
taprpc.ScriptKey
| Field | gRPC Type | REST Type | 
|---|---|---|
| pub_key | bytes | string | 
| key_desc | KeyDescriptor | object | 
| tap_tweak | bytes | string | 
| type | ScriptKeyType | string | 
Enums
mintrpc.BatchState
| Name | Number | 
|---|---|
| BATCH_STATE_UNKNOWN | 0 | 
| BATCH_STATE_PENDING | 1 | 
| BATCH_STATE_FROZEN | 2 | 
| BATCH_STATE_COMMITTED | 3 | 
| BATCH_STATE_BROADCAST | 4 | 
| BATCH_STATE_CONFIRMED | 5 | 
| BATCH_STATE_FINALIZED | 6 | 
| BATCH_STATE_SEEDLING_CANCELLED | 7 | 
| BATCH_STATE_SPROUT_CANCELLED | 8 | 
taprpc.AssetMetaType
| Name | Number | 
|---|---|
| META_TYPE_OPAQUE | 0 | 
| META_TYPE_JSON | 1 | 
taprpc.AssetType
| Name | Number | 
|---|---|
| NORMAL | 0 | 
| COLLECTIBLE | 1 | 
taprpc.AssetVersion
| Name | Number | 
|---|---|
| ASSET_VERSION_V0 | 0 | 
| ASSET_VERSION_V1 | 1 | 
taprpc.ScriptKeyType
| Name | Number | 
|---|---|
| SCRIPT_KEY_UNKNOWN | 0 | 
| SCRIPT_KEY_BIP86 | 1 | 
| SCRIPT_KEY_SCRIPT_PATH_EXTERNAL | 2 | 
| SCRIPT_KEY_BURN | 3 | 
| SCRIPT_KEY_TOMBSTONE | 4 | 
| SCRIPT_KEY_CHANNEL | 5 | 
| SCRIPT_KEY_UNIQUE_PEDERSEN | 6 |