# NOTES / RESOURCES
## Tests
Tests are sourced from the following locations:
- <https://github.com/AntelopeIO/abieos/>
- <https://github.com/AntelopeIO/abieos/blob/main/src/test.cpp#L577>
- <https://github.com/AntelopeIO/abieos/test/>
- <https://github.com/FACINGS/pyntelope/blob/main/tests/unit/types_test.py>
- <https://github.com/FACINGS/pyntelope/blob/main/tests/unit/transaction_test.py>
- <https://github.com/wharfkit/antelope/blob/master/test/chain.ts>
- <https://github.com/pinax-network/antelope.rs>
## Antelope source files locations
Types:
- <https://github.com/AntelopeIO/spring/blob/main/libraries/chain/include/eosio/chain/name.hpp>
- <https://github.com/AntelopeIO/spring/blob/main/libraries/chain/include/eosio/chain/symbol.hpp>
- etc.
Crypto types:
- <https://github.com/AntelopeIO/spring/blob/main/libraries/libfc/src/crypto/>
### ABI related files
- <https://github.com/AntelopeIO/spring/blob/main/libraries/chain/include/eosio/chain/abi_def.hpp>
TODO! check with
- <https://github.com/AntelopeIO/abieos/blob/main/include/eosio/abi.hpp>
the latter one seems more strict, for instance for the tests here:
<https://github.com/AntelopeIO/abieos/blob/main/src/test.cpp#L1008>
## ESR - EOSIO Signing Requests
Spec is at: <https://github.com/eosio-eps/EEPs/blob/master/EEPS/eep-7.md>
<https://github.com/wharfkit/signing-request>
## Related/similar projects
- <https://github.com/uuosio/rscdk>