From 3675554c47a666118afe13a11b79de87d4d1782d Mon Sep 17 00:00:00 2001 From: Olexandr88 Date: Wed, 21 May 2025 12:39:55 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d9161d..416aac4 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Alpha release. Feedback requested. ## Packing transactions 1. Create a context: `abieos_create` -1. Use `abieos_set_abi` to load [eosjs2/src/transaction.abi](https://github.com/EOSIO/eosjs2/blob/master/src/transaction.abi) into contract 0. +1. Use `abieos_set_abi` to load [eosjs2/src/transaction.abi](https://github.com/EOSIO/eosjs2/blob/master/src/transaction.abi.json) into contract 0. 1. Use `abieos_set_abi` to load the contract's ABI. 1. Use `abieos_json_to_bin` and `abieos_get_bin_hex` to convert action data to hex. Use `abieos_get_type_for_action` to get the action's type. 1. Use `abieos_json_to_bin` and `abieos_get_bin_hex` to convert transaction to hex. Use `contract = 0` and `type = abieos_string_to_name(context, "transaction")`. From bea8b51c92a240dde129951258d73366d27bf55c Mon Sep 17 00:00:00 2001 From: Olexandr88 Date: Wed, 21 May 2025 12:42:53 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 416aac4..8f93099 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Alpha release. Feedback requested. ## Packing transactions 1. Create a context: `abieos_create` -1. Use `abieos_set_abi` to load [eosjs2/src/transaction.abi](https://github.com/EOSIO/eosjs2/blob/master/src/transaction.abi.json) into contract 0. +1. Use `abieos_set_abi` to load [master/src/transaction.abi.json](https://github.com/EOSIO/eosjs2/blob/master/src/transaction.abi.json) into contract 0. 1. Use `abieos_set_abi` to load the contract's ABI. 1. Use `abieos_json_to_bin` and `abieos_get_bin_hex` to convert action data to hex. Use `abieos_get_type_for_action` to get the action's type. 1. Use `abieos_json_to_bin` and `abieos_get_bin_hex` to convert transaction to hex. Use `contract = 0` and `type = abieos_string_to_name(context, "transaction")`.