Execution Options

Execution options are explained in more detail here.

An options object can be passed to a contract execution request to set some of the parameters of the execution flow. In the example in the chapter before, we've set the empty configuration, since all the parameters are optional. Options you can configure are listed below:

{
    ethAmount?: string;
    arbitraryData?: Map<string, object>;
    screenConfig?: ScreenConfig;
    callerAddress?: string;
    redirectUrl?: string;
}

ethAmount

If the smart contract function you're calling requires some Ether (or other native coin, depending on the blockchain network your application is deployed on) to be sent in the function call, you can provide the value using this field.

For example, to send 1 ETH when calling the function, set:

const options = {
    // ... rest of the options
    ethAmount: "1000000000000000000" // 1 ETH = 1000000000000000000 wei
}

arbitraryData

Key-value mapping of any data you want to attach to the execution request. The data will simply be sent back in the result object upon the successful request completion. Depending on your use-case, you might want to add important info here, related to your existing application parameters.

If the value is not provided, the empty data is sent with the request and received back when the request is processed.

Example value:

const data = new Map<string, string>();
data['user-id'] = 'my-internal-user-id';

const options = {
    // ... rest of the options
    arbitraryData: data
}

screenConfig

Configures the execution screen and sets the text labels that are going to be visible when processing the execution request on the front-end. If someone else is going to process your transaction request by opening the generated request link, then you can use this data to customize how the execution screen will look like. You can configure the message shown before the function is executed, and the success message shown after the function was executed (after the transaction was mined).

If the value is not provided, the default action messages will be shown when you redirect the user to our action execution screen.

const options = {
    // ... rest of the options
    screenConfig: {
        before_action_message: "This message will be shown to your user before he executes the request.",
        after_action_message: "THis message will be shown to your user after he executes the action successfully."
    }
}

You can put any text value in these parameters, links, thank you messages, or whatever else might be useful for your case.

callerAddress

The wallet address, which has to be used when executing the contract function. If the user connects with another wallet address, the request will be rejected.

If the value is not provided, the user can log in with any wallet address and continue processing the request.

Example value:

const options = {
    // ... rest of the options
    callerAddress: "0x4Ed918C7800F5dc34d2C774f6EA5fbd15f1a94a7"
}

redirectUrl

If the value is not provided, the actionUrl generated by the SDK will be automatically built to redirect the user to our wallet connection screen, and this is the recommended approach.

Example value:

const options = {
    // ... rest of the options
    redirectUrl: "https://your-frontend/execute/${id}"
    
    // your frontend will have to be capable of loading the request with the 
    // given ID and process the transaction after which the transaction 
    // execution hash has to be submitted using the special API call.
    // If you want to use our prebuilt frontend, simply skip the redirectUrl
    // and we will generate the redirect link for you!
}

Last updated