You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a rule for outbound nonce verification to do the following
Fetch the address of the active tss when the transaction was created .
Verify that the sender is the correct TSS address
To fetch the address of the active TSS we have the following options
Use nonce : We can query pending nonces to find out the nonce range that is pending for a chain id, using the range and the nonce of the current cctx we can obtain the tss address that should have signed this outbound , and verify it .
Use TssPubkey : The Tss pubkey field is set when the outbound is created , we can derive the address from the pubkey and use that to verify the sender of the trasnaction
The text was updated successfully, but these errors were encountered:
Add a rule for outbound nonce verification to do the following
To fetch the address of the active TSS we have the following options
Use nonce : We can query pending nonces to find out the nonce range that is pending for a chain id, using the range and the nonce of the current cctx we can obtain the tss address that should have signed this outbound , and verify it .
Use
TssPubkey
: The Tss pubkey field is set when the outbound is created , we can derive the address from the pubkey and use that to verify the sender of the trasnactionThe text was updated successfully, but these errors were encountered: