Check whether vaa recipient matches the token account

Change-Id: Iab326cd735c764649dc031d813dbb8818d5e74f3
This commit is contained in:
Hendrik Hofstadt 2022-01-06 12:01:33 +01:00 committed by Leopold Schabel
parent 7882eccac4
commit 32e9063910
4 changed files with 14 additions and 0 deletions

View File

@ -117,6 +117,9 @@ pub fn complete_native(
if accs.vaa.to_chain != CHAIN_ID_SOLANA {
return Err(InvalidChain.into());
}
if accs.vaa.to != accs.to.info().key.to_bytes() {
return Err(InvalidRecipient.into());
}
// Prevent vaa double signing
accs.vaa.verify(ctx.program_id)?;
@ -227,6 +230,9 @@ pub fn complete_wrapped(
if accs.vaa.to_chain != CHAIN_ID_SOLANA {
return Err(InvalidChain.into());
}
if accs.vaa.to != accs.to.info().key.to_bytes() {
return Err(InvalidRecipient.into());
}
accs.vaa.verify(ctx.program_id)?;
accs.vaa.claim(ctx, accs.payer.key)?;

View File

@ -61,6 +61,7 @@ pub enum TokenBridgeError {
WrongAccountOwner,
TokenNotNFT,
InvalidAssociatedAccount,
InvalidRecipient,
}
impl From<TokenBridgeError> for SolitaireError {

View File

@ -121,6 +121,9 @@ pub fn complete_native(
if accs.vaa.to_chain != CHAIN_ID_SOLANA {
return Err(InvalidChain.into());
}
if accs.vaa.to != accs.to.info().key.to_bytes() {
return Err(InvalidRecipient.into());
}
// Prevent vaa double signing
accs.vaa.verify(ctx.program_id)?;
@ -237,6 +240,9 @@ pub fn complete_wrapped(
if accs.vaa.to_chain != CHAIN_ID_SOLANA {
return Err(InvalidChain.into());
}
if accs.vaa.to != accs.to.info().key.to_bytes() {
return Err(InvalidRecipient.into());
}
accs.vaa.verify(ctx.program_id)?;
accs.vaa.claim(ctx, accs.payer.key)?;

View File

@ -64,6 +64,7 @@ pub enum TokenBridgeError {
UninitializedMint,
WrongAccountOwner,
InvalidFee,
InvalidRecipient,
}
impl From<TokenBridgeError> for SolitaireError {