Configurations
Guardian Configurations Endpoints.
Configurations
/configurations
GET https://explorer.protokol.sh/api/guardian/configurations 
{
  "data": {
    "package": {
      "name": "@protokol/guardian-api",
      "currentVersion": "1.0.0",
      "latestVersion": "1.0.0"
    },
    "crypto": {
      "defaults": {
        "guardianTypeGroup": 9002,
        "version": 2,
        "guardianGroupName": {
          "minLength": 1,
          "maxLength": 40
        },
        "guardianGroupPriority": {
          "min": 0,
          "max": 1000
        }
      }
    },
    "transactions": {
      "defaults": {
        "maxDefinedGroupsPerUser": 20,
        "transactionsAllowedByDefault": true,
        "feeType": 0
      }
    }
  }
}Examples
curl https://explorer.protokol.sh/api/guardian/configurationsconst response = await connection.guardianApi("configurations").index();
>>> Promise<ApiResponse<GuardianConfigurations>>Last updated
Was this helpful?
