PhadPublish Your Docs๐Ÿ‹ Create Script for FHE requests

๐Ÿ‹ Create Script for FHE requests

To perform operations such as confidential token creation or transfer, you need to create request scripts. Use the following command to generate these scripts:

cargo run --release --bin request-scripts-gen
  • This command will generate scripts that interact with Phad SDKโ€™s FHE modules, specifically the sov_bank_fhe module.
  • These scripts automate confidential token creation, minting, and transfer operations.

Example of an FHE Token Creation Script

Once youโ€™ve generated the request scripts, hereโ€™s an example of how the token creation script might look:

// Confidential Token Creation
{
  "CreateToken":{
    "token_name":"sov-confidential-token",
    "initial_balance": FHE_CIPHERTEXT,
    "mint_to_address":"sov1l..94",
    "authorized_minters":[
      "sov1l..94",
      "sov15..gc"
    ]
  }
}
// Confidential Token Transfer
{
  "Transfer":{
    "to":"sov1l..94",
    "coins":{
      "amount": FHE_CIPHERTEXT,
      "token_id":"token_1p..6l"
    }
  }
}