fix: Test fail after PR#40 #15

Merged
0xmuralik merged 7 commits from murali/fix-tests into main 2023-01-09 06:47:09 +00:00
2 changed files with 7 additions and 6 deletions
Showing only changes of commit e295b8de36 - Show all commits

View File

@ -166,6 +166,10 @@ export class Account {
assert(message);
const eipMessageDomain: any = message.eipToSign.domain;
if(message.eipToSign.message.msgs[0].value.payload!=null){
message.eipToSign.message.msgs[0].value.payload.record.attributes.value=Array.from(message.eipToSign.message.msgs[0].value.payload.record.attributes.value)
}
const signature = signTypedData({
data: {
types: message.eipToSign.types as MessageTypes,

View File

@ -44,14 +44,11 @@ const MSG_SET_RECORD_TYPES = {
{ name: 'create_time', type: 'string' },
{ name: 'expiry_time', type: 'string' },
{ name: 'deleted', type: 'bool' },
{ name: 'attributes', type: 'string' },
{ name: 'attributes', type: 'TypePayloadRecordAttributes' },
],
TypePayloadRecordAttributes: [
{ name: 'url', type: 'string' },
{ name: 'repo_registration_record_cid', type: 'string' },
{ name: 'build_artifact_cid', type: 'string' },
{ name: 'tls_cert_cid', type: 'string' },
{ name: 'type', type: 'string' },
{ name: 'type_url', type: 'string' },
{ name: 'value', type: 'uint8[]' },
],
TypePayloadSignatures: [
{ name: 'sig', type: 'string' },