Sha256: 0122c0080141ac5e977a66822aff78cf02fd30dbc2ad113827f11a04b5be5b5f
Contents?: true
Size: 1.33 KB
Versions: 3
Compression:
Stored size: 1.33 KB
Contents
# frozen_string_literal: true module NanoRpc::AccountMethods def proxy_params { account: :address } end def proxy_methods # rubocop:disable Metrics/MethodLength { account_balance: {}, account_block_count: {}, account_create: { required: %i[wallet], optional: %i[work] }, account_history: { required: %i[count] }, account_info: {}, account_key: {}, account_move: { required: %i[wallet source accounts] }, account_remove: { required: %i[wallet] }, account_representative: {}, account_representative_set: { required: %i[wallet representative] }, account_weight: {}, delegators: {}, delegators_count: {}, frontiers: { required: %i[count] }, ledger: { required: %i[count], optional: %i[representative weight pending modified_since sorting] }, payment_wait: { required: %i[amount timeout] }, pending: { required: %i[count], optional: %i[threshold exists source include_active] }, receive: { required: %i[wallet block], optional: %i[work] }, validate_account_number: {}, work_get: { required: %i[wallet] }, work_set: {} } end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nano_rpc-0.22.0 | lib/nano_rpc/methods/account_methods.rb |
nano_rpc-0.21.0 | lib/nano_rpc/methods/account_methods.rb |
nano_rpc-0.20.0 | lib/nano_rpc/methods/account_methods.rb |