FundBatch
tapcli assets mint fund
FundBatch will attempt to fund the current pending batch with a genesis
input, or create a new funded batch if no batch exists yet. This RPC is only
needed if a custom witness is needed to finalize the batch. Otherwise,
FinalizeBatch can be called directly.
Source: mintrpc/mint.proto
gRPC
rpc FundBatch (FundBatchRequest) returns (FundBatchResponse);
REST
| HTTP Method | Path | 
|---|---|
| POST | /v1/taproot-assets/assets/mint/fund | 
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>,
  fee_rate: <uint32>,
  full_tree: <TapscriptFullTree>,
  branch: <TapBranch>,
};
client.fundBatch(request, function(err, response) {
  console.log(response);
});
// Console output:
//  {
//    "batch": <VerboseBatch>,
//  }
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.FundBatchRequest(
  short_response=<bool>,
  fee_rate=<uint32>,
  full_tree=<TapscriptFullTree>,
  branch=<TapBranch>,
)
response = stub.FundBatch(request)
print(response)
# {
#    "batch": <VerboseBatch>,
# }
- 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> 
  fee_rate: <integer>, // <uint32> 
  full_tree: <object>, // <TapscriptFullTree> 
  branch: <object>, // <TapBranch> 
};
let options = {
  url: `https://${REST_HOST}/v1/taproot-assets/assets/mint/fund`,
  // 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>, // <VerboseBatch> 
//  }
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/fund'
macaroon = codecs.encode(open(MACAROON_PATH, 'rb').read(), 'hex')
headers = {'Grpc-Metadata-macaroon': macaroon}
data = {
  'short_response': <bool>,
  'fee_rate': <uint32>,
  'full_tree': <TapscriptFullTree>,
  'branch': <TapBranch>,
}
r = requests.post(url, headers=headers, data=json.dumps(data), verify=TLS_PATH)
print(r.json())
# {
#    "batch": <VerboseBatch>,
# }
# There is no CLI command for this RPC
Messages
mintrpc.FundBatchRequest
Source: mintrpc/mint.proto
| Field | gRPC Type | REST Type | REST Placement | 
|---|---|---|---|
| short_response | bool | boolean | body | 
| fee_rate | uint32 | integer | body | 
| full_tree | TapscriptFullTree | object | body | 
| branch | TapBranch | object | body | 
mintrpc.FundBatchResponse
Source: mintrpc/mint.proto
| Field | gRPC Type | REST Type | 
|---|---|---|
| batch | VerboseBatch | 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 | 
mintrpc.UnsealedAsset
| Field | gRPC Type | REST Type | 
|---|---|---|
| asset | PendingAsset | object | 
| group_key_request | GroupKeyRequest | object | 
| group_virtual_tx | GroupVirtualTx | object | 
| group_virtual_psbt | string | string | 
mintrpc.VerboseBatch
| Field | gRPC Type | REST Type | 
|---|---|---|
| batch | MintingBatch | object | 
| unsealed_assets | UnsealedAsset[] | array | 
taprpc.AssetMeta
| Field | gRPC Type | REST Type | 
|---|---|---|
| data | bytes | string | 
| type | AssetMetaType | string | 
| meta_hash | bytes | string | 
taprpc.ExternalKey
| Field | gRPC Type | REST Type | 
|---|---|---|
| xpub | string | string | 
| master_fingerprint | bytes | string | 
| derivation_path | string | string | 
taprpc.GenesisInfo
| Field | gRPC Type | REST Type | 
|---|---|---|
| genesis_point | string | string | 
| name | string | string | 
| meta_hash | bytes | string | 
| asset_id | bytes | string | 
| asset_type | AssetType | string | 
| output_index | uint32 | integer | 
taprpc.GroupKeyRequest
| Field | gRPC Type | REST Type | 
|---|---|---|
| raw_key | KeyDescriptor | object | 
| anchor_genesis | GenesisInfo | object | 
| tapscript_root | bytes | string | 
| new_asset | bytes | string | 
| external_key | ExternalKey | object | 
taprpc.GroupVirtualTx
| Field | gRPC Type | REST Type | 
|---|---|---|
| transaction | bytes | string | 
| prev_out | TxOut | object | 
| genesis_id | bytes | string | 
| tweaked_key | bytes | string | 
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 | 
taprpc.TapBranch
| Field | gRPC Type | REST Type | 
|---|---|---|
| left_taphash | bytes | string | 
| right_taphash | bytes | string | 
taprpc.TapLeaf
| Field | gRPC Type | REST Type | 
|---|---|---|
| script | bytes | string | 
taprpc.TapscriptFullTree
| Field | gRPC Type | REST Type | 
|---|---|---|
| all_leaves | TapLeaf[] | array | 
taprpc.TxOut
| Field | gRPC Type | REST Type | 
|---|---|---|
| value | int64 | string | 
| pk_script | bytes | 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 |