Deployment Options

Deployment options are explained in more detail here.

An options object can be passed to a deployment request to set some of the parameters of the deployment 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:

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

arbitraryData

Key-value mapping of any data you want to attach to the deployment 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 deployment request on the front-end. If someone else is going to process your deployment request by opening the generated deployment request link, then you can use this data to customize how the deployment screen will look like. You can configure the message shown before the contract is deployed, and the success message shown after the contract was actually deployed.

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 deploying the contract. 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/deploy/${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