fuels_rs/json_abi.rs
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
use crate::{abi_decoder::ABIDecoder, abi_encoder::ABIEncoder, errors::Error};
use fuels_core::{ParamType, Token};
use hex::FromHex;
use itertools::Itertools;
use std::convert::TryInto;
use std::str;
use std::str::FromStr;
use sway_types::{JsonABI, Property};
use serde_json;
pub struct ABIParser {
fn_selector: Option<Vec<u8>>,
}
impl ABIParser {
pub fn new() -> Self {
ABIParser { fn_selector: None }
}
/// Higher-level layer of the ABI encoding module.
/// Encode is essentially a wrapper of [`crate::abi_encoder`],
/// but it is responsible for parsing strings into proper [`Token`]
/// that can be encoded by the [`crate::abi_encoder`].
/// Note that `encode` only encodes the parameters for an ABI call,
/// It won't include the function selector in it. To get the function
/// selector, use `encode_with_function_selector`.
///
/// # Examples
/// ```
/// use fuels_rs::json_abi::ABIParser;
/// let json_abi = r#"
/// [
/// {
/// "type":"contract",
/// "inputs":[
/// {
/// "name":"arg",
/// "type":"u32"
/// }
/// ],
/// "name":"takes_u32_returns_bool",
/// "outputs":[
/// {
/// "name":"",
/// "type":"bool"
/// }
/// ]
/// }
/// ]
/// "#;
///
/// let values: Vec<String> = vec!["10".to_string()];
///
/// let mut abi = ABIParser::new();
///
/// let function_name = "takes_u32_returns_bool";
/// let encoded = abi.encode(json_abi, function_name, &values).unwrap();
/// let expected_encode = "000000000000000a";
/// assert_eq!(encoded, expected_encode);
/// ```
pub fn encode(&mut self, abi: &str, fn_name: &str, values: &[String]) -> Result<String, Error> {
let parsed_abi: JsonABI = serde_json::from_str(abi)?;
let entry = parsed_abi.iter().find(|e| e.name == fn_name);
if entry.is_none() {
return Err(Error::InvalidName(format!(
"couldn't find function name: {}",
fn_name
)));
}
let entry = entry.unwrap();
let mut encoder = ABIEncoder::new_with_fn_selector(
self.build_fn_selector(fn_name, &entry.inputs)?.as_bytes(),
);
// Update the fn_selector field with the encoded selector.
self.fn_selector = Some(encoder.function_selector.to_vec());
let params: Vec<_> = entry
.inputs
.iter()
.map(|param| parse_param(param).unwrap())
.zip(values.iter().map(|v| v as &str))
.collect();
let tokens = self.parse_tokens(¶ms)?;
Ok(hex::encode(encoder.encode(&tokens)?))
}
/// Similar to `encode`, but includes the function selector in the
/// final encoded string.
///
/// # Examples
/// ```
/// use fuels_rs::json_abi::ABIParser;
/// let json_abi = r#"
/// [
/// {
/// "type":"contract",
/// "inputs":[
/// {
/// "name":"arg",
/// "type":"u32"
/// }
/// ],
/// "name":"takes_u32_returns_bool",
/// "outputs":[
/// {
/// "name":"",
/// "type":"bool"
/// }
/// ]
/// }
/// ]
/// "#;
///
/// let values: Vec<String> = vec!["10".to_string()];
///
/// let mut abi = ABIParser::new();
/// let function_name = "takes_u32_returns_bool";
///
/// let encoded = abi
/// .encode_with_function_selector(json_abi, function_name, &values)
/// .unwrap();
///
/// let expected_encode = "000000006355e6ee000000000000000a";
/// assert_eq!(encoded, expected_encode);
/// ```
pub fn encode_with_function_selector(
&mut self,
abi: &str,
fn_name: &str,
values: &[String],
) -> Result<String, Error> {
let encoded_params = self.encode(abi, fn_name, values)?;
let fn_selector = self
.fn_selector
.to_owned()
.expect("Function selector not encoded");
let encoded_fn_selector = hex::encode(fn_selector);
Ok(format!("{}{}", encoded_fn_selector, encoded_params))
}
/// Helper function to return the encoded function selector.
/// It must already be encoded.
pub fn get_encoded_function_selector(&self) -> String {
let fn_selector = self
.fn_selector
.to_owned()
.expect("Function selector not encoded");
hex::encode(fn_selector)
}
/// Similar to `encode`, but it encodes only an array of strings containing
/// [<type_1>, <param_1>, <type_2>, <param_2>, <type_n>, <param_n>]
/// Without having to reference to a JSON specification of the ABI.
pub fn encode_params(&self, params: &[String]) -> Result<String, Error> {
let pairs: Vec<_> = params.chunks(2).collect_vec();
let mut param_type_pairs: Vec<(ParamType, &str)> = vec![];
let mut encoder = ABIEncoder::new();
for pair in pairs {
let prop = Property {
name: "".to_string(),
type_field: pair[0].clone(),
components: None,
};
let p = parse_param(&prop)?;
let t: (ParamType, &str) = (p, &pair[1]);
param_type_pairs.push(t);
}
let tokens = self.parse_tokens(¶m_type_pairs)?;
let encoded = encoder.encode(&tokens)?;
Ok(hex::encode(encoded))
}
/// Helper function to turn a list of tuples(ParamType, &str) into
/// a vector of Tokens ready to be encoded.
/// Essentially a wrapper on `tokenize`.
pub fn parse_tokens<'a>(&self, params: &'a [(ParamType, &str)]) -> Result<Vec<Token>, Error> {
params
.iter()
.map(|&(ref param, value)| self.tokenize(param, value.to_string()))
.collect::<Result<_, _>>()
.map_err(From::from)
}
/// Takes a ParamType and a value string and joins them as a single
/// Token that holds the value within it. This Token is used
/// in the encoding process.
pub fn tokenize<'a>(&self, param: &ParamType, value: String) -> Result<Token, Error> {
let trimmed_value = value.trim();
match &*param {
ParamType::U8 => Ok(Token::U8(trimmed_value.parse::<u8>()?)),
ParamType::U16 => Ok(Token::U16(trimmed_value.parse::<u16>()?)),
ParamType::U32 => Ok(Token::U32(trimmed_value.parse::<u32>()?)),
ParamType::U64 => Ok(Token::U64(trimmed_value.parse::<u64>()?)),
ParamType::Bool => Ok(Token::Bool(trimmed_value.parse::<bool>()?)),
ParamType::Byte => Ok(Token::Byte(trimmed_value.parse::<u8>()?)),
ParamType::B256 => {
let v = Vec::from_hex(trimmed_value)?;
let s: [u8; 32] = v.as_slice().try_into().unwrap();
Ok(Token::B256(s))
}
ParamType::Array(t, _) => Ok(self.tokenize_array(trimmed_value, &*t)?),
ParamType::String(_) => Ok(Token::String(trimmed_value.to_string())),
ParamType::Struct(struct_params) => {
Ok(self.tokenize_struct(trimmed_value, struct_params)?)
}
ParamType::Enum(s) => {
let discriminant = self.get_enum_discriminant_from_string(&value);
let value = self.get_enum_value_from_string(&value);
let token = self.tokenize(&s[discriminant], value)?;
Ok(Token::Enum(Box::new((discriminant as u8, token))))
}
}
}
/// Creates a struct `Token` from an array of parameter types and a string of values.
/// I.e. it takes a string containing values "value_1, value_2, value_3" and an array
/// of `ParamType` containing the type of each value, in order:
/// [ParamType::<Type of value_1>, ParamType::<Type of value_2>, ParamType::<Type of value_3>]
/// And attempts to return a `Token::Struct()` containing the inner types.
/// It works for nested/recursive structs.
pub fn tokenize_struct(&self, value: &str, params: &[ParamType]) -> Result<Token, Error> {
if !value.starts_with('(') || !value.ends_with(')') {
return Err(Error::InvalidData);
}
if value.chars().count() == 2 {
return Ok(Token::Struct(vec![]));
}
let mut result = vec![];
let mut nested = 0isize;
let mut ignore = false;
let mut last_item = 1;
let mut params_iter = params.iter();
for (pos, ch) in value.chars().enumerate() {
match ch {
'(' if !ignore => {
nested += 1;
}
')' if !ignore => {
nested -= 1;
match nested.cmp(&0) {
std::cmp::Ordering::Less => {
return Err(Error::InvalidData);
}
std::cmp::Ordering::Equal => {
let sub = &value[last_item..pos];
let token = self.tokenize(
params_iter.next().ok_or(Error::InvalidData)?,
sub.to_string(),
)?;
result.push(token);
last_item = pos + 1;
}
_ => {}
}
}
'"' => {
ignore = !ignore;
}
',' if nested == 1 && !ignore => {
let sub = &value[last_item..pos];
// If we've encountered an array within a struct property
// keep iterating until we see the end of it "]".
if sub.contains('[') && !sub.contains(']') {
continue;
}
let token = self.tokenize(
params_iter.next().ok_or(Error::InvalidData)?,
sub.to_string(),
)?;
result.push(token);
last_item = pos + 1;
}
_ => (),
}
}
if ignore {
return Err(Error::InvalidData);
}
Ok(Token::Struct(result))
}
/// Creates an enum `Token` from an array of parameter types and a string of values.
/// I.e. it takes a string containing values "value_1, value_2, value_3" and an array
/// of `ParamType` containing the type of each value, in order:
/// [ParamType::<Type of value_1>, ParamType::<Type of value_2>, ParamType::<Type of value_3>]
/// And attempts to return a `Token::Enum()` containing the inner types.
/// It works for nested/recursive enums.
pub fn tokenize_array<'a>(&self, value: &'a str, param: &ParamType) -> Result<Token, Error> {
if !value.starts_with('[') || !value.ends_with(']') {
return Err(Error::InvalidData);
}
if value.chars().count() == 2 {
return Ok(Token::Array(vec![]));
}
let mut result = vec![];
let mut nested = 0isize;
let mut ignore = false;
let mut last_item = 1;
for (i, ch) in value.chars().enumerate() {
match ch {
'[' if !ignore => {
nested += 1;
}
']' if !ignore => {
nested -= 1;
match nested.cmp(&0) {
std::cmp::Ordering::Less => {
return Err(Error::InvalidData);
}
std::cmp::Ordering::Equal => {
// Last element of this nest level; proceed to tokenize.
let sub = &value[last_item..i];
match self.is_array(sub) {
true => {
let arr_param = ParamType::Array(
Box::new(param.to_owned()),
self.get_array_length_from_string(sub),
);
result.push(self.tokenize(&arr_param, sub.to_string())?);
}
false => {
result.push(self.tokenize(param, sub.to_string())?);
}
}
last_item = i + 1;
}
_ => {}
}
}
'"' => {
ignore = !ignore;
}
',' if nested == 1 && !ignore => {
let sub = &value[last_item..i];
match self.is_array(sub) {
true => {
let arr_param = ParamType::Array(
Box::new(param.to_owned()),
self.get_array_length_from_string(sub),
);
result.push(self.tokenize(&arr_param, sub.to_string())?);
}
false => {
result.push(self.tokenize(param, sub.to_string())?);
}
}
last_item = i + 1;
}
_ => (),
}
}
if ignore {
return Err(Error::InvalidData);
}
Ok(Token::Array(result))
}
/// Higher-level layer of the ABI decoding module.
/// Decodes a value of a given ABI and a target function's output.
/// Note that the `value` has to be a byte array, meaning that
/// the caller must properly cast the "upper" type into a `&[u8]`,
pub fn decode<'a>(
&self,
abi: &str,
fn_name: &str,
value: &'a [u8],
) -> Result<Vec<Token>, Error> {
let parsed_abi: JsonABI = serde_json::from_str(abi)?;
let entry = parsed_abi.iter().find(|e| e.name == fn_name);
if entry.is_none() {
return Err(Error::InvalidName(format!(
"couldn't find function name: {}",
fn_name
)));
}
let params_result: Result<Vec<_>, _> = entry
.unwrap()
.outputs
.iter()
.map(|param| parse_param(param))
.collect();
match params_result {
Ok(params) => {
let mut decoder = ABIDecoder::new();
Ok(decoder.decode(¶ms, value)?)
}
Err(e) => Err(e),
}
}
/// Similar to decode, but it decodes only an array types and the encoded data
/// without having to reference to a JSON specification of the ABI.
pub fn decode_params(&self, params: &[ParamType], data: &[u8]) -> Result<Vec<Token>, Error> {
let mut decoder = ABIDecoder::new();
Ok(decoder.decode(params, data)?)
}
fn is_array(&self, ele: &str) -> bool {
ele.starts_with('[') && ele.ends_with(']')
}
fn get_enum_discriminant_from_string(&self, ele: &str) -> usize {
let mut chars = ele.chars();
chars.next(); // Remove "("
chars.next_back(); // Remove ")"
let v: Vec<_> = chars.as_str().split(',').collect();
v[0].parse().unwrap()
}
fn get_enum_value_from_string(&self, ele: &str) -> String {
let mut chars = ele.chars();
chars.next(); // Remove "("
chars.next_back(); // Remove ")"
let v: Vec<_> = chars.as_str().split(',').collect();
v[1].to_string()
}
fn get_array_length_from_string(&self, ele: &str) -> usize {
let mut chars = ele.chars();
chars.next();
chars.next_back();
chars.as_str().split(',').count()
}
/// Builds a string representation of a function selector,
/// i.e: <fn_name>(<type_1>, <type_2>, ..., <type_n>)
pub fn build_fn_selector(&self, fn_name: &str, params: &[Property]) -> Result<String, Error> {
let fn_selector = fn_name.to_owned();
let mut result: String = format!("{}(", fn_selector);
for (idx, param) in params.iter().enumerate() {
result.push_str(&self.build_fn_selector_params(param));
if idx + 1 < params.len() {
result.push(',');
}
}
result.push(')');
Ok(result)
}
fn build_fn_selector_params(&self, param: &Property) -> String {
let mut result: String = String::new();
if param.type_field.contains("struct ") || param.type_field.contains("enum ") {
// Custom type, need to break down inner fields
// Will return `"s(field_1,field_2,...,field_n)"`.
result.push_str("s(");
for (idx, component) in param.components.as_ref().unwrap().iter().enumerate() {
let res = self.build_fn_selector_params(component);
result.push_str(&res);
if idx + 1 < param.components.as_ref().unwrap().len() {
result.push(',');
}
}
result.push(')');
} else {
result.push_str(¶m.type_field);
}
result
}
}
/// Turns a JSON property into ParamType
pub fn parse_param(param: &Property) -> Result<ParamType, Error> {
match ParamType::from_str(¶m.type_field) {
// Simple case (primitive types, no arrays, including string)
Ok(param_type) => Ok(param_type),
Err(_) => {
match param.type_field.contains("struct") || param.type_field.contains("enum") {
true => Ok(parse_custom_type_param(param)?),
false => {
match param.type_field.contains('[') && param.type_field.contains(']') {
// Try to parse array (T[M]) or string (str[M])
true => Ok(parse_array_param(param)?),
// Try to parse enum or struct
false => Ok(parse_custom_type_param(param)?),
}
}
}
}
}
}
pub fn parse_array_param(param: &Property) -> Result<ParamType, Error> {
// Split "T[n]" string into "T" and "[n]"
let split: Vec<&str> = param.type_field.split('[').collect();
if split.len() != 2 {
return Err(Error::MissingData(format!(
"invalid parameter type: {}",
param.type_field
)));
}
let param_type = ParamType::from_str(split[0]).unwrap();
// Grab size in between brackets, i.e the `n` in "[n]"
let size: usize = split[1][..split[1].len() - 1].parse().unwrap();
if let ParamType::String(_) = param_type {
Ok(ParamType::String(size))
} else {
Ok(ParamType::Array(Box::new(param_type), size))
}
}
pub fn parse_custom_type_param(param: &Property) -> Result<ParamType, Error> {
let mut params: Vec<ParamType> = vec![];
match param.components.as_ref() {
Some(components) => {
for component in components {
params.push(parse_param(component)?)
}
}
None => {
return Err(Error::MissingData(
"cannot parse custom type with no components".into(),
))
}
}
if param.type_field.contains("struct") {
return Ok(ParamType::Struct(params));
}
if param.type_field.contains("enum") {
return Ok(ParamType::Enum(params));
}
Err(Error::InvalidType(param.type_field.clone()))
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn simple_encode_and_decode_no_selector() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"arg",
"type":"u32"
}
],
"name":"takes_u32_returns_bool",
"outputs":[
{
"name":"",
"type":"bool"
}
]
}
]
"#;
let values: Vec<String> = vec!["10".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_u32_returns_bool";
let encoded = abi.encode(json_abi, function_name, &values).unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "000000000000000a";
assert_eq!(encoded, expected_encode);
let return_value = [
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // false
];
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let expected_return = vec![Token::Bool(false)];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn simple_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"arg",
"type":"u32"
}
],
"name":"takes_u32_returns_bool",
"outputs":[
{
"name":"",
"type":"bool"
}
]
}
]
"#;
let values: Vec<String> = vec!["10".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_u32_returns_bool";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "000000006355e6ee000000000000000a";
assert_eq!(encoded, expected_encode);
let return_value = [
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // false
];
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let expected_return = vec![Token::Bool(false)];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn b256_and_single_byte_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"foo",
"type":"b256"
},
{
"name":"bar",
"type":"byte"
}
],
"name":"my_func",
"outputs":[
{
"name":"",
"type":"b256"
}
]
}
]
"#;
let values: Vec<String> = vec![
"d5579c46dfcc7f18207013e65b44e4cb4e2c2298f4ac457ba8f82743f31e930b".to_string(),
"1".to_string(),
];
let mut abi = ABIParser::new();
let function_name = "my_func";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "00000000e64019abd5579c46dfcc7f18207013e65b44e4cb4e2c2298f4ac457ba8f82743f31e930b0000000000000001";
assert_eq!(encoded, expected_encode);
let return_value =
hex::decode("a441b15fe9a3cf56661190a0b93b9dec7d04127288cc87250967cf3b52894d11")
.unwrap();
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let s: [u8; 32] = return_value.as_slice().try_into().unwrap();
let expected_return = vec![Token::B256(s)];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn array_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"arg",
"type":"u16[3]"
}
],
"name":"takes_array",
"outputs":[
{
"name":"",
"type":"u16[2]"
}
]
}
]
"#;
let values: Vec<String> = vec!["[1,2,3]".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_array";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "00000000f0b87864000000000000000100000000000000020000000000000003";
assert_eq!(encoded, expected_encode);
let return_value = [
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // 0
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, // 1
];
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let expected_return = vec![Token::Array(vec![Token::U16(0), Token::U16(1)])];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn tokenize_array() {
let abi = ABIParser::new();
let value = "[[1,2],[3],4]";
let param = ParamType::U16;
let tokens = abi.tokenize_array(value, ¶m).unwrap();
let expected_tokens = Token::Array(vec![
Token::Array(vec![Token::U16(1), Token::U16(2)]), // First element, a sub-array with 2 elements
Token::Array(vec![Token::U16(3)]), // Second element, a sub-array with 1 element
Token::U16(4), // Third element
]);
assert_eq!(tokens, expected_tokens);
let value = "[1,[2],[3],[4,5]]";
let param = ParamType::U16;
let tokens = abi.tokenize_array(value, ¶m).unwrap();
let expected_tokens = Token::Array(vec![
Token::U16(1),
Token::Array(vec![Token::U16(2)]),
Token::Array(vec![Token::U16(3)]),
Token::Array(vec![Token::U16(4), Token::U16(5)]),
]);
assert_eq!(tokens, expected_tokens);
let value = "[1,2,3,4,5]";
let param = ParamType::U16;
let tokens = abi.tokenize_array(value, ¶m).unwrap();
let expected_tokens = Token::Array(vec![
Token::U16(1),
Token::U16(2),
Token::U16(3),
Token::U16(4),
Token::U16(5),
]);
assert_eq!(tokens, expected_tokens);
let value = "[[1,2,3,[4,5]]]";
let param = ParamType::U16;
let tokens = abi.tokenize_array(value, ¶m).unwrap();
let expected_tokens = Token::Array(vec![Token::Array(vec![
Token::U16(1),
Token::U16(2),
Token::U16(3),
Token::Array(vec![Token::U16(4), Token::U16(5)]),
])]);
assert_eq!(tokens, expected_tokens);
}
#[test]
fn nested_array_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"arg",
"type":"u16[3]"
}
],
"name":"takes_nested_array",
"outputs":[
{
"name":"",
"type":"u16[2]"
}
]
}
]
"#;
let values: Vec<String> = vec!["[[1,2],[3],[4]]".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_nested_array";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode =
"00000000e5d521030000000000000001000000000000000200000000000000030000000000000004";
assert_eq!(encoded, expected_encode);
let return_value = [
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // 0
0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, // 1
];
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let expected_return = vec![Token::Array(vec![Token::U16(0), Token::U16(1)])];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn string_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"foo",
"type":"str[23]"
}
],
"name":"takes_string",
"outputs":[
{
"name":"",
"type":"str[2]"
}
]
}
]
"#;
let values: Vec<String> = vec!["This is a full sentence".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_string";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "00000000d56e76515468697320697320612066756c6c2073656e74656e636500";
assert_eq!(encoded, expected_encode);
let return_value = [
0x4f, 0x4b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, // "OK" encoded in utf8
];
let decoded_return = abi.decode(json_abi, function_name, &return_value).unwrap();
let expected_return = vec![Token::String("OK".into())];
assert_eq!(decoded_return, expected_return);
}
#[test]
fn struct_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"my_struct",
"type":"struct MyStruct",
"components": [
{
"name": "foo",
"type": "u8"
},
{
"name": "bar",
"type": "bool"
}
]
}
],
"name":"takes_struct",
"outputs":[]
}
]
"#;
let values: Vec<String> = vec!["(42, true)".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_struct";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "00000000cb0b2f05000000000000002a0000000000000001";
assert_eq!(encoded, expected_encode);
}
#[test]
fn struct_and_primitive_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"my_struct",
"type":"struct MyStruct",
"components": [
{
"name": "foo",
"type": "u8"
},
{
"name": "bar",
"type": "bool"
}
]
},
{
"name":"foo",
"type":"u32"
}
],
"name":"takes_struct_and_primitive",
"outputs":[]
}
]
"#;
let values: Vec<String> = vec!["(42, true)".to_string(), "10".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_struct_and_primitive";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "000000005c445838000000000000002a0000000000000001000000000000000a";
assert_eq!(encoded, expected_encode);
}
#[test]
fn nested_struct_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"top_value",
"type":"struct MyNestedStruct",
"components": [
{
"name": "x",
"type": "u16"
},
{
"name": "inner",
"type": "struct Y",
"components": [
{
"name":"a",
"type": "bool"
},
{
"name":"b",
"type": "u8[2]"
}
]
}
]
}
],
"name":"takes_nested_struct",
"outputs":[]
}
]
"#;
let values: Vec<String> = vec!["(10, (true, [1,2]))".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_nested_struct";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode =
"00000000ff25eb48000000000000000a000000000000000100000000000000010000000000000002";
assert_eq!(encoded, expected_encode);
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"top_value",
"type":"struct MyNestedStruct",
"components": [
{
"name": "inner",
"type": "struct X",
"components": [
{
"name":"a",
"type": "bool"
},
{
"name":"b",
"type": "u8[2]"
}
]
},
{
"name": "y",
"type": "u16"
}
]
}
],
"name":"takes_nested_struct",
"outputs":[]
}
]
"#;
let values: Vec<String> = vec!["((true, [1,2]), 10)".to_string()];
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode =
"000000007728cb9e000000000000000100000000000000010000000000000002000000000000000a";
assert_eq!(encoded, expected_encode);
}
#[test]
fn enum_encode_and_decode() {
let json_abi = r#"
[
{
"type":"contract",
"inputs":[
{
"name":"my_enum",
"type":"enum MyEnum",
"components": [
{
"name": "x",
"type": "u32"
},
{
"name": "y",
"type": "bool"
}
]
}
],
"name":"takes_enum",
"outputs":[]
}
]
"#;
let values: Vec<String> = vec!["(0, 42)".to_string()];
let mut abi = ABIParser::new();
let function_name = "takes_enum";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "00000000082e0dfa0000000000000000000000000000002a";
assert_eq!(encoded, expected_encode);
}
#[test]
fn fn_selector_single_primitive() {
let abi = ABIParser::new();
let p = Property {
name: "foo".into(),
type_field: "u64".into(),
components: None,
};
let params = vec![p];
let selector = abi.build_fn_selector("my_func", ¶ms).unwrap();
assert_eq!(selector, "my_func(u64)");
}
#[test]
fn fn_selector_multiple_primitives() {
let abi = ABIParser::new();
let p1 = Property {
name: "foo".into(),
type_field: "u64".into(),
components: None,
};
let p2 = Property {
name: "bar".into(),
type_field: "bool".into(),
components: None,
};
let params = vec![p1, p2];
let selector = abi.build_fn_selector("my_func", ¶ms).unwrap();
assert_eq!(selector, "my_func(u64,bool)");
}
#[test]
fn fn_selector_custom_type() {
let abi = ABIParser::new();
let inner_foo = Property {
name: "foo".into(),
type_field: "bool".into(),
components: None,
};
let inner_bar = Property {
name: "bar".into(),
type_field: "u64".into(),
components: None,
};
let p = Property {
name: "my_struct".into(),
type_field: "struct MyStruct".into(),
components: Some(vec![inner_foo, inner_bar]),
};
let params = vec![p];
let selector = abi.build_fn_selector("my_func", ¶ms).unwrap();
assert_eq!(selector, "my_func(s(bool,u64))");
}
#[test]
fn fn_selector_nested_custom_type() {
let abi = ABIParser::new();
let inner_foo = Property {
name: "foo".into(),
type_field: "bool".into(),
components: None,
};
let inner_a = Property {
name: "a".into(),
type_field: "u64".into(),
components: None,
};
let inner_b = Property {
name: "b".into(),
type_field: "u32".into(),
components: None,
};
let inner_bar = Property {
name: "bar".into(),
type_field: "struct InnerStruct".into(),
components: Some(vec![inner_a, inner_b]),
};
let p = Property {
name: "my_struct".into(),
type_field: "struct MyStruct".into(),
components: Some(vec![inner_foo, inner_bar]),
};
let params = vec![p];
println!("params: {:?}\n", params);
let selector = abi.build_fn_selector("my_func", ¶ms).unwrap();
assert_eq!(selector, "my_func(s(bool,s(u64,u32)))");
}
#[test]
fn compiler_generated_abi_test() {
let json_abi = r#"
[
{
"inputs": [
{
"components": null,
"name": "gas_",
"type": "u64"
},
{
"components": null,
"name": "amount_",
"type": "u64"
},
{
"components": null,
"name": "color_",
"type": "b256"
},
{
"components": null,
"name": "value",
"type": "u64"
}
],
"name": "foo",
"outputs": [
{
"components": null,
"name": "",
"type": "u64"
}
],
"type": "function"
},
{
"inputs": [
{
"components": null,
"name": "gas_",
"type": "u64"
},
{
"components": null,
"name": "amount_",
"type": "u64"
},
{
"components": null,
"name": "color_",
"type": "b256"
},
{
"components": [
{
"components": null,
"name": "a",
"type": "bool"
},
{
"components": null,
"name": "b",
"type": "u64"
}
],
"name": "value",
"type": "struct TestStruct"
}
],
"name": "boo",
"outputs": [
{
"components": [
{
"components": null,
"name": "a",
"type": "bool"
},
{
"components": null,
"name": "b",
"type": "u64"
}
],
"name": "",
"type": "struct TestStruct"
}
],
"type": "function"
}
]
"#;
let gas = "1000000".to_string();
let coins = "0".to_string();
let color = "0000000000000000000000000000000000000000000000000000000000000000".to_string();
let s = "(true, 42)".to_string();
let values: Vec<String> = vec![gas, coins, color, s];
let mut abi = ABIParser::new();
let function_name = "boo";
let encoded = abi
.encode_with_function_selector(json_abi, function_name, &values)
.unwrap();
println!("encoded: {:?}\n", encoded);
let expected_encode = "0000000087f27a3900000000000f4240000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000002a";
assert_eq!(encoded, expected_encode);
}
}