1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#![allow(deprecated)]
use codec::Encode;
use sp_core::RuntimeDebug;
use sp_std::prelude::*;
use sp_std::vec;
use crate::Config;
use bridge_types::{H160, U256};
use ethabi::{self, Function, Param, ParamType, StateMutability, Token};
fn unlock_function() -> Function {
Function {
name: "unlock".into(),
state_mutability: StateMutability::NonPayable,
constant: None,
outputs: vec![],
inputs: vec![
Param {
name: "_sender".into(),
kind: ParamType::FixedBytes(32),
internal_type: None,
},
Param {
name: "_recipient".into(),
kind: ParamType::Address,
internal_type: None,
},
Param {
name: "_amount".into(),
kind: ParamType::Uint(256),
internal_type: None,
},
],
}
}
#[derive(Copy, Clone, PartialEq, Eq, RuntimeDebug)]
pub struct OutboundPayload<T: Config> {
pub sender: T::AccountId,
pub recipient: H160,
pub amount: U256,
}
impl<T: Config> OutboundPayload<T> {
#[allow(deprecated)] pub fn encode(&self) -> Result<Vec<u8>, ethabi::Error> {
let tokens = vec![
Token::FixedBytes(self.sender.encode()),
Token::Address(self.recipient),
Token::Uint(self.amount),
];
unlock_function().encode_input(tokens.as_ref())
}
}