to byte array

This commit is contained in:
0xmuralik 2022-12-27 12:17:02 +05:30
parent c0f71b0b8f
commit e295b8de36
2 changed files with 7 additions and 6 deletions

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' },