Minting with royalties
Minting with royalties
Royalty fees for newly minted assets
const result = await minter.mintV2([
{
"contractAddress": "0xc6185055ea9891d5d9020c927ff65229baebdef2",
"royalties": [ // global fees
{
"recipient": "0xA91E927148548992f13163B98be47Cf4c8Cb3B16",
"percentage": 2.5
}
],
"users": [
{
"etherKey": "0xc3ec7590d5970867ebd17bbe8397500b6ae5f690",
"tokens": [
{
// ERC-721
"id": "1",
"blueprint": "my-on-chain-metadata",
"royalties": [ // override global fees on a per-token basis
{
"recipient": "0xc3ec7590d5970867ebd17bbe8397500b6ae5f690",
"percentage": 2.5
}
],
}
]
},
{
"etherKey": "0xA91E927148548992f13163B98be47Cf4c8Cb3B16",
"tokens": [
{
// ERC-721
"id": "",
"blueprint": ""
}
]
},
...
]
}
]);Important notes
Viewing the asset royalty fees
Last updated