We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a wont-fix issue just using it myself to track which legacy APIs are available in lisk.rb
https://docs.lisk.io/docs/lisk-api-080
POST /api/accounts/open
Lisk::Legacy::accounts_open secret
GET /api/accounts/getBalance?address=address
Lisk::Legacy::accounts_get_balance address
GET /api/accounts/getPublicKey?address=address
Lisk::Legacy::accounts_get_public_key address
POST /api/accounts/generatePublicKey
Lisk::Legacy::accounts_generate_public_key secret
GET /api/accounts?address=address
Lisk::Legacy::accounts address
GET /api/accounts/delegates?address=address
Lisk::Legacy::accounts_delegates_get_by_address address
PUT /api/accounts/delegates
Lisk::Legacy::accounts_delegates_put votes
GET /api/loader/status
Lisk::Legacy::loader_status_sync
GET /api/loader/status/sync
Lisk::Legacy::loader_status
GET /api/loader/status/ping
Lisk::Legacy::loader_status_ping
GET /api/transactions?blockId=blockId&senderId=senderId&recipientId=recipientId&limit=limit&offset=offset&orderBy=field
Lisk::Legacy::transactions filter = nil
PUT /api/transactions
Lisk::Legacy::transactions_put transaction
GET /api/transactions/get?id=id
Lisk::Legacy::transactions_get_by_id id
GET /api/transactions/unconfirmed/get?id=id
Lisk::Legacy::transactions_unconfirmed_get_by_id id
GET /api/transactions/unconfirmed
Lisk::Legacy::transactions_unconfirmed
GET /api/transactions/queued
Lisk::Legacy::transactions_queued
GET /api/transactions/queued/get?id=id
Lisk::Legacy::transactions_queued_get_by_id id
GET /api/peers?state=state&os=os&version=version&limit=limit&offset=offset&orderBy=orderBy
Lisk::Legacy::peers filter = nil
GET /api/peers/get?ip=ip&port=port
Lisk::Legacy::peers_get filter = nil
GET /api/peers/version
Lisk::Legacy::peers_version
GET /api/blocks?generatorPublicKey=generatorPublicKey&height=height&previousBlock=previousBlock&totalAmount=totalAmount&totalFee=totalFee&limit=limit&offset=offset&orderBy=orderBy
Lisk::Legacy::blocks filter = nil
GET /api/blocks/get?id=id
Lisk::Legacy::blocks_get_by_id id
GET /api/blocks/getFee
Lisk::Legacy::blocks_get_fee
GET /api/blocks/getFees
Lisk::Legacy::blocks_get_fees
GET /api/blocks/getReward
Lisk::Legacy::blocks_get_reward
GET /api/blocks/getSupply
Lisk::Legacy::blocks_get_supply
GET /api/blocks/getHeight
Lisk::Legacy::blocks_get_height
GET /api/blocks/getStatus
Lisk::Legacy::blocks_get_status
GET /api/blocks/getNethash
Lisk::Legacy::blocks_get_nethash
GET /api/blocks/getMilestone
Lisk::Legacy::blocks_get_milestone
GET /api/signatures/fee
Lisk::Legacy::signatures_fee
PUT /api/signatures
Lisk::Legacy::signatures_put secrets
PUT /api/delegates
Lisk::Legacy::delegates_put delegate
GET /api/delegates?limit=limit&offset=offset&orderBy=orderBy
Lisk::Legacy::delegates filter = nil
GET /api/delegates/get?publicKey=publicKey
Lisk::Legacy::delegates_get_by_key public_key
GET /api/delegates/get?username=username
Lisk::Legacy::delegates_get_by_name user_name
GET /api/delegates/search?q=username&orderBy=producedblocks:desc
Lisk::Legacy::delegates_search query
GET /api/delegates/count
Lisk::Legacy::delegates_count
GET /api/accounts/delegates/?address=address
Lisk::Legacy::accounts_delegates address
GET /api/delegates/voters?publicKey=publicKey
Lisk::Legacy::delegates_voters public_key
POST /api/delegates/forging/enable
Lisk::Legacy::delegates_forging_enable secret
POST /api/delegates/forging/disable
Lisk::Legacy::delegates_forging_disable secret
GET /api/delegates/forging/getForgedByAccount?generatorPublicKey=generatorPublicKey
Lisk::Legacy::delegates_forging_get_forged_by_account public_key
GET /api/delegates/getNextForgers?limit=limit
Lisk::Legacy::delegates_get_next_forgers limit = 10
PUT /api/multisignatures
Lisk::Legacy::multisignatures_put secrets
GET /api/multisignatures/accounts?publicKey=publicKey
Lisk::Legacy::multisignatures_accounts public_key
POST /api/multisignatures/sign
Lisk::Legacy::multisignatures_sign signature
GET /api/multisignatures/pending?publicKey=publicKey
Lisk::Legacy::multisignatures_pending public_key
PUT /api/dapps
GET /api/dapps?category=category&name=name&type=type&link=link&limit=limit&offset=offset&orderBy=orderBy
GET /api/dapps/get?id=id
GET /api/dapps/search?q=q&category=category&installed=installed
POST /api/dapps/install
GET /api/dapps/installed
GET /api/dapps/installedIds
POST /api/dapps/uninstall
POST /api/dapps/launch
GET /api/dapps/installing
GET /api/dapps/uninstalling
GET /api/dapps/launched
GET /api/dapps/categories
POST /api/dapps/stop
The text was updated successfully, but these errors were encountered:
Rename api methods according to the Lisk core API endpoints, ref #4
1303a3a
Add transaction API to legacy module, ref #4
b0cfc12
Add peers API to legacy module, ref #4
91a9ba0
Add blocks API to legacy module, ref #4
ad792f1
Add signature API to legacy module, ref #4
7a3bf30
Add multi-signature API to legacy module, ref #4
042fbc0
Add delegates API to legacy module, ref #4
0dfab6f
/api/dapps* is not going to happen :-p
/api/dapps*
Sorry, something went wrong.
No branches or pull requests
This is a wont-fix issue just using it myself to track which legacy APIs are available in lisk.rb
https://docs.lisk.io/docs/lisk-api-080
Accounts
POST /api/accounts/open
:Lisk::Legacy::accounts_open secret
GET /api/accounts/getBalance?address=address
:Lisk::Legacy::accounts_get_balance address
GET /api/accounts/getPublicKey?address=address
:Lisk::Legacy::accounts_get_public_key address
POST /api/accounts/generatePublicKey
:Lisk::Legacy::accounts_generate_public_key secret
GET /api/accounts?address=address
:Lisk::Legacy::accounts address
GET /api/accounts/delegates?address=address
:Lisk::Legacy::accounts_delegates_get_by_address address
PUT /api/accounts/delegates
:Lisk::Legacy::accounts_delegates_put votes
Loader
GET /api/loader/status
:Lisk::Legacy::loader_status_sync
GET /api/loader/status/sync
:Lisk::Legacy::loader_status
GET /api/loader/status/ping
:Lisk::Legacy::loader_status_ping
Transactions
GET /api/transactions?blockId=blockId&senderId=senderId&recipientId=recipientId&limit=limit&offset=offset&orderBy=field
:Lisk::Legacy::transactions filter = nil
PUT /api/transactions
:Lisk::Legacy::transactions_put transaction
GET /api/transactions/get?id=id
:Lisk::Legacy::transactions_get_by_id id
GET /api/transactions/unconfirmed/get?id=id
:Lisk::Legacy::transactions_unconfirmed_get_by_id id
GET /api/transactions/unconfirmed
:Lisk::Legacy::transactions_unconfirmed
GET /api/transactions/queued
:Lisk::Legacy::transactions_queued
GET /api/transactions/queued/get?id=id
:Lisk::Legacy::transactions_queued_get_by_id id
Peers
GET /api/peers?state=state&os=os&version=version&limit=limit&offset=offset&orderBy=orderBy
:Lisk::Legacy::peers filter = nil
GET /api/peers/get?ip=ip&port=port
:Lisk::Legacy::peers_get filter = nil
GET /api/peers/version
:Lisk::Legacy::peers_version
Blocks
GET /api/blocks?generatorPublicKey=generatorPublicKey&height=height&previousBlock=previousBlock&totalAmount=totalAmount&totalFee=totalFee&limit=limit&offset=offset&orderBy=orderBy
:Lisk::Legacy::blocks filter = nil
GET /api/blocks/get?id=id
:Lisk::Legacy::blocks_get_by_id id
GET /api/blocks/getFee
:Lisk::Legacy::blocks_get_fee
GET /api/blocks/getFees
:Lisk::Legacy::blocks_get_fees
GET /api/blocks/getReward
:Lisk::Legacy::blocks_get_reward
GET /api/blocks/getSupply
:Lisk::Legacy::blocks_get_supply
GET /api/blocks/getHeight
:Lisk::Legacy::blocks_get_height
GET /api/blocks/getStatus
:Lisk::Legacy::blocks_get_status
GET /api/blocks/getNethash
:Lisk::Legacy::blocks_get_nethash
GET /api/blocks/getMilestone
:Lisk::Legacy::blocks_get_milestone
Signatures
GET /api/signatures/fee
:Lisk::Legacy::signatures_fee
PUT /api/signatures
:Lisk::Legacy::signatures_put secrets
Delegates
PUT /api/delegates
:Lisk::Legacy::delegates_put delegate
GET /api/delegates?limit=limit&offset=offset&orderBy=orderBy
:Lisk::Legacy::delegates filter = nil
GET /api/delegates/get?publicKey=publicKey
:Lisk::Legacy::delegates_get_by_key public_key
GET /api/delegates/get?username=username
:Lisk::Legacy::delegates_get_by_name user_name
GET /api/delegates/search?q=username&orderBy=producedblocks:desc
:Lisk::Legacy::delegates_search query
GET /api/delegates/count
:Lisk::Legacy::delegates_count
GET /api/accounts/delegates/?address=address
:Lisk::Legacy::accounts_delegates address
GET /api/delegates/voters?publicKey=publicKey
:Lisk::Legacy::delegates_voters public_key
POST /api/delegates/forging/enable
:Lisk::Legacy::delegates_forging_enable secret
POST /api/delegates/forging/disable
:Lisk::Legacy::delegates_forging_disable secret
GET /api/delegates/forging/getForgedByAccount?generatorPublicKey=generatorPublicKey
:Lisk::Legacy::delegates_forging_get_forged_by_account public_key
GET /api/delegates/getNextForgers?limit=limit
:Lisk::Legacy::delegates_get_next_forgers limit = 10
Multi-sig
PUT /api/multisignatures
:Lisk::Legacy::multisignatures_put secrets
GET /api/multisignatures/accounts?publicKey=publicKey
:Lisk::Legacy::multisignatures_accounts public_key
POST /api/multisignatures/sign
:Lisk::Legacy::multisignatures_sign signature
GET /api/multisignatures/pending?publicKey=publicKey
:Lisk::Legacy::multisignatures_pending public_key
DappsPUT /api/dapps
GET /api/dapps?category=category&name=name&type=type&link=link&limit=limit&offset=offset&orderBy=orderBy
GET /api/dapps/get?id=id
GET /api/dapps/search?q=q&category=category&installed=installed
POST /api/dapps/install
GET /api/dapps/installed
GET /api/dapps/installedIds
POST /api/dapps/uninstall
POST /api/dapps/launch
GET /api/dapps/installing
GET /api/dapps/uninstalling
GET /api/dapps/launched
GET /api/dapps/categories
POST /api/dapps/stop
The text was updated successfully, but these errors were encountered: