fix signLockOrder

This commit is contained in:
TheJuze
2024-01-24 12:23:14 +03:00
parent a5ab496475
commit c6be1c73c3
8 changed files with 44 additions and 75 deletions

View File

@@ -0,0 +1,11 @@
export const LOCK_ORDER_TYPES = {
Order: [
{ name: 'user', type: 'address' },
{ name: 'sender', type: 'address' },
{ name: 'expiration', type: 'uint64' },
{ name: 'asset', type: 'string' },
{ name: 'amount', type: 'uint64' },
{ name: 'targetChainId', type: 'uint64' },
{ name: 'secretHash', type: 'string' },
],
};