NAME CryptoExchange::Catalog - Catalog of cryptoexchanges VERSION This document describes version 20180109 of CryptoExchange::Catalog (from Perl distribution CryptoExchange-Catalog), released on 2018-01-09. SYNOPSIS use CryptoExchange::Catalog; my $cat = CryptoExchange::Catalog->new; my $record = $cat->by_name("BX Thailand"); # note: case-sensitive. => {name=>"BX Thailand", safename=>"bx-thailand"} my $record = $cat->by_safename("bx-thailand"); my $record = $cat->by_slug("bx-thailand"); # alias for by_safename(), mixed case also works my @names = $cat->all_names(); # => ("Binance", "Bithumb", ...) my @data = $cat->all_data; # => ({name=>"Binance", safename=>"binance"}, {...}, ...) DESCRIPTION This class attempts to provide a list/catalog of cryptocurrency exchanges. The main source for this catalog is the Cryptocurrency Market Capitalizations website (, or CMC for short). METHODS new by_name by_safename by_slug Alias for "by_safename". all_names all_data HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO CryptoCurrency::Catalog AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2018 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.