Manage your datasetorders

Orders enable setting custom governance for resources.

Here you will learn how to manage your dataset's monetization rules.

Publish a custom datasetorder

Initialize a datasetorder:

iexec order init --dataset

Edit the datasetorder part in iexec.json to set the conditions to use your dataset:

  1. the restriction is disabled by default with 0x0000000000000000000000000000000000000000

The supported tags for dataset orders are:

TEE tasks with Gramine TEE framework are not supported yet. Do not publish orders with both tee and gramine tag bits enabled.

As soon as your datasetorder complies to your requirements, you must sign it and you may publish it.

iexec order sign --dataset && iexec order publish --dataset

Remove an order from iExec Marketplace

List the published orders for your dataset.

iexec orderbook dataset <your dataset address>

Copy the orderHash of the order you want to remove

Unpublish the datasetorder from the iExec Marketplace

iexec order unpublish --dataset <orderHash>

An unpublished order is still valid on the blockchain, to invalidate it use the cancel command.

iexec order cancel --dataset <orderHash>

Last updated