-
Notifications
You must be signed in to change notification settings - Fork 24
Description
Description Of Issue
When attempting to register a paranet using the DKG client, the following error is thrown.
Here is the values of the variables being submitted:
paranetUAL = did:dkg:base:84532/0xd5550173b0f7b8766ab2770e4ba86caf714a5af5/ (removed trailing token information ) the submitted paranet UAL DOES have the trailing /1
paranetOptions = {
paranetName: 'RandomParanetBeingCreatedNothingToSeeHere',
paranetDescription: 'This is my paranet on the DKG!',
paranetNodesAccessPolicy: 0,
paranetMinersAccessPolicy: 0,
paranetKcSubmissionPolicy: 0
}
Considerations
I went ahead and trimmed white space from UAL even though I know that is not the issue. Still resulted in the below error.
Error: UAL doesn't have correct format
This occurs when calling:
const paranetResult = await DkgClient.paranet.create(paranetUAL, paranetOptions);
Environment:
•DKG Client version: (8.0.7)
•Blockchain: (Base blockchain)
•Node version: (v23.1.0)
•Operating System: (MAC OS)
Additional Context
•The error is reproducible every time with the same input.
•Our logs indicate that the UAL is generated correctly by our service.
•Removing sensitive details from the issue for security purposes.
Possible Impact
This issue blocks paranet registration and might prevent valid paranet deployments, affecting knowledge miner participation.
Request
Please investigate whether the UAL format is being misinterpreted on the DKG side or if there is an issue with creating paranets on base via the DKG. Any guidance on troubleshooting this further or a fix would be greatly appreciated.