Setting Up Snowflake

Setting up a dApp for Snowflake

dApps using Snowflake will need to inherit Snowflake as a provider.

contract Example is SnowflakeResolver {

    constructor() public {    
    snowflakeDescription = “Example dApp“;
    snowflakeName = “Example”;
    }

}

Parameter

Type

Description

snowflakeDescription

string

Short description of what the app functions as.

snowflakeName

string

notation given to the constructed application.

Last updated