This API used to update the Deployment status for Artist Flow
Sample mutation
mutation UpdateContractDepoymentStatus($input: ContractDeployment!) {
UpdateContractDepoymentStatus(input: $input)
}
Sample variable
{
"input": {
"orgID": "8fb128bd-f55d-4bcc-8b6c-0beb684e4d4e",
"nftContractID": "f9d4962d-43a5-4da5-aba3-73a52c0ac150",
"deploymentType": "REDEEM_SETUP",
"status": "DEPLOYED",
"contractAddress": "0x389EeAd72144a5838171c16192312EA94E1AE157",
"txHash": "0x820384c8119bdafbe7d0cf48a2adf6566e0ff8296c926d1575194198b75ea6b1"
}
}
Sample Response
{
"data": {
"UpdateContractDepoymentStatus": "Contract Deployment Status Updated Successfully"
}
}
Arguments
Name | Type | Description | Required |
---|---|---|---|
orgID | UUID | The Organization ID | Yes |
nftContractID | UUID | NFT Contract ID | Yes |
deploymentType | ContractDeploymentType | The Contract Deployment Type | Yes |
status | String | Status of Contract Deployment | Yes |
contractAddress | String | Contract Address for the Contract | Yes |
txHash | String | Contract Deployment transaction Hash | Yes |
Field
Name | Type | Description |
---|---|---|
N/A | String | The string response will be returned on Successfull execution |