NAME
WebService::BitFlyer - Perl libraries for bitFlyer API.
SYNOPSIS
use
WebService::BitFlyer;
my
$bf
= WebService::BitFlyer->new(
access_key
=>
'ACCESS_KEY'
,
secret_key
=>
'SECRET_KEY'
,
);
$bf
->api->markets;
$bf
->api->order(
child_order_type
=>
'LIMIT'
,
side
=>
'BUY'
,
price
=> 1000000,
size
=> 0.001,
);
$bf
->api->cancel_order(
child_order_acceptance_id
=>
'JRF*****'
,
);
DESCRIPTION
WebService::BitFlyer is the Perl libraries for https://bitflyer.jp/ API
METHODS
new
the constructor
set_sign
generate signature
request
calling API
REPOSITORY
WebService::BitFlyer is hosted on github: http://github.com/bayashi/WebService-BitFlyer
I appreciate any feedback :D
AUTHOR
Dai Okabayashi <bayashi@cpan.org>
SEE ALSO
https://lightning.bitflyer.jp/docs
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.