Options
All
  • Public
  • Public/Protected
  • All
Menu

@beblurt/dblurt

Index

Enumerations

Classes

Interfaces

Type aliases

Variables

Functions

Object literals

Type aliases

AssetSymbol

AssetSymbol: "HIVE" | "VESTS" | "HBD" | "TESTS" | "TBD" | "STEEM" | "SBD" | "BLURT"

Asset symbol string.

Bignum

Bignum: string

Large number that may be unsafe to represent natively in JavaScript.

Deserializer

Deserializer: (buffer: ByteBuffer) => void

Type declaration

DiscussionQueryCategory

DiscussionQueryCategory: "active" | "blog" | "cashout" | "children" | "comments" | "feed" | "hot" | "promoted" | "trending" | "votes" | "created"

Possible categories for get_discussions_by_*.

KeyRole

KeyRole: "owner" | "active" | "posting" | "memo"

NexusSortGetRankedPost

NexusSortGetRankedPost: "trending" | "hot" | "created" | "promoted" | "payout" | "payout_comments" | "muted"

Possible sort for get_ranked_posts.

NexusTypeNotification

NexusTypeNotification: "new_community" | "set_role" | "set_props" | "set_label" | "mute_post" | "unmute_post" | "pin_post" | "unpin_post" | "flag_post" | "error" | "subscribe" | "reply" | "reblog" | "follow" | "mention" | "vote"

OperationName

OperationName: "vote" | "comment" | "transfer" | "transfer_to_vesting" | "withdraw_vesting" | "account_create" | "account_update" | "witness_update" | "account_witness_vote" | "account_witness_proxy" | "custom" | "delete_comment" | "custom_json" | "comment_options" | "set_withdraw_vesting_route" | "claim_account" | "create_claimed_account" | "request_account_recovery" | "recover_account" | "change_recovery_account" | "escrow_transfer" | "escrow_dispute" | "escrow_release" | "escrow_approve" | "transfer_to_savings" | "transfer_from_savings" | "cancel_transfer_from_savings" | "custom_binary" | "decline_voting_rights" | "reset_account" | "set_reset_account" | "claim_reward_balance" | "delegate_vesting_shares" | "witness_set_properties" | "create_proposal" | "update_proposal_votes" | "remove_proposal"

PARAMS_ACCOUNT_HISTORY

PARAMS_ACCOUNT_HISTORY: [string, number, number] | [string, number, number, number | null, number | null] | [string, number, number, number | null]

PARAM_ENUM_VIRTUAL_OPS

PARAM_ENUM_VIRTUAL_OPS: { block_range_begin: number; block_range_end: number; filter?: undefined | number; group_by_block?: undefined | false | true; include_reversible: boolean; limit?: undefined | number; operation_begin?: undefined | number }

Type declaration

  • block_range_begin: number
  • block_range_end: number
  • Optional filter?: undefined | number
  • Optional group_by_block?: undefined | false | true
  • include_reversible: boolean
  • Optional limit?: undefined | number
  • Optional operation_begin?: undefined | number

PriceType

PriceType: Price | { base: Asset | string; quote: Asset | string }

Serializer

Serializer: (buffer: ByteBuffer, data: any) => void

Type declaration

VirtualOperationName

VirtualOperationName: "author_reward" | "curation_reward" | "comment_reward" | "fill_vesting_withdraw" | "shutdown_witness" | "fill_transfer_from_savings" | "hardfork" | "comment_payout_update" | "return_vesting_delegation" | "comment_benefactor_reward" | "producer_reward" | "clear_null_account_balance" | "proposal_pay" | "sps_fund" | "fee_pay"

Virtual operation name.

Variables

Const AssetSymbolRegexp

AssetSymbolRegexp: RegExp = new RegExp('^HIVE$'+ '|^VESTS$'+ '|^HBD$'+ '|^TESTS$'+ '|^TBD$'+ '|^STEEM$'+ '|^SBD$'+ '|^BLURT$')

Const AuthoritySerializer

AuthoritySerializer: (Anonymous function) = ObjectSerializer([['weight_threshold', UInt32Serializer],['account_auths', FlatMapSerializer(StringSerializer, UInt16Serializer)],['key_auths', FlatMapSerializer(PublicKeySerializer, UInt16Serializer)]])

Const BLURT_100_PERCENT

BLURT_100_PERCENT: 10000 = 10000

Const BLURT_UPVOTE_LOCKOUT_SECONDS

BLURT_UPVOTE_LOCKOUT_SECONDS: number = (60 * 60 * 12)

Const BLURT_VOTING_MANA_REGENERATION_SECONDS

BLURT_VOTING_MANA_REGENERATION_SECONDS: number = (5 * 60 * 60 * 24)

Const BeneficiarySerializer

BeneficiarySerializer: (Anonymous function) = ObjectSerializer([['account', StringSerializer],['weight', UInt16Serializer]])

Const ByteBuffer

ByteBuffer: any = require('bytebuffer')

Const DEFAULT_ADDRESS_PREFIX

DEFAULT_ADDRESS_PREFIX: "BLT" = "BLT"

Main Blurt network address prefix

Const DEFAULT_CHAIN_ID

DEFAULT_CHAIN_ID: Buffer = Buffer.from('cd8d90f29ae273abec3eaa7731e25934c63eb654d55080caff2ebb7f5df6381f','hex')

Main Blurt network chain id

Const EncryptedMemoDeserializer

EncryptedMemoDeserializer: any = BufferDeserializer([['from', PublicKeyDeserializer],['to', PublicKeyDeserializer],['nonce', UInt64Deserializer],['check', UInt32Deserializer],['encrypted', BinaryDeserializer]])

Const EncryptedMemoSerializer

EncryptedMemoSerializer: (Anonymous function) = ObjectSerializer([['from', PublicKeySerializer],['to', PublicKeySerializer],['nonce', UInt64Serializer],['check', UInt32Serializer],['encrypted', BinarySerializer()]])

Const JSBI

JSBI: any = require('jsbi')

Const Long

Long: any = ByteBuffer.Long

Const NETWORK_ID

NETWORK_ID: Buffer = Buffer.from([0x80])

Network id used in WIF-encoding

Const OperationNameRegexp

OperationNameRegexp: RegExp = new RegExp('^vote$'+ '|^comment$'+ '|^transfer$'+ '|^transfer_to_vesting$'+ '|^withdraw_vesting$'+ '|^account_create$'+ '|^account_update$'+ '|^witness_update$'+ '|^account_witness_vote$'+ '|^account_witness_proxy$'+ '|^custom$'+ '|^delete_comment$'+ '|^custom_json$'+ '|^comment_options$'+ '|^set_withdraw_vesting_route$'+ '|^claim_account$'+ '|^create_claimed_account$'+ '|^request_account_recovery$'+ '|^recover_account$'+ '|^change_recovery_account$'+ '|^escrow_transfer$'+ '|^escrow_dispute$'+ '|^escrow_release$'+ '|^escrow_approve$'+ '|^transfer_to_savings$'+ '|^transfer_from_savings$'+ '|^cancel_transfer_from_savings$'+ '|^custom_binary$'+ '|^decline_voting_rights$'+ '|^reset_account$'+ '|^set_reset_account$'+ '|^claim_reward_balance$'+ '|^delegate_vesting_shares$'+ '|^witness_set_properties$'+ '|^create_proposal$'+ '|^update_proposal_votes$'+ '|^remove_proposal$')

Const OperationSerializers

OperationSerializers: {}

START | Operation Serializers

Type declaration

Const TransactionSerializer

TransactionSerializer: (Anonymous function) = ObjectSerializer([['ref_block_num', UInt16Serializer],['ref_block_prefix', UInt32Serializer],['expiration', DateSerializer],['operations', ArraySerializer(OperationSerializer)],['extensions', ArraySerializer(StringSerializer)]])

Const VERSION

VERSION: string = packageVersion

Library version.

Const VariableBinarySerializer

VariableBinarySerializer: (Anonymous function) = BinarySerializer()

Const VirtualOperationNameRegexp

VirtualOperationNameRegexp: RegExp = new RegExp('^author_reward$'+ '|^curation_reward$'+ '|^comment_reward$'+ '|^fill_vesting_withdraw$'+ '|^shutdown_witness$'+ '|^fill_transfer_from_savings$'+ '|^hardfork$'+ '|^comment_payout_update$'+ '|^return_vesting_delegation$'+ '|^comment_benefactor_reward$'+ '|^producer_reward$'+ '|^clear_null_account_balance$'+ '|^proposal_pay$'+ '|^sps_fund$'+ '|^fee_pay$')

Const WitnessUpdatePropertiesSerializer

WitnessUpdatePropertiesSerializer: (Anonymous function) = ObjectSerializer([['account_creation_fee', AssetSerializer],// ['account_subsidy_budget', UInt32Serializer],// ['account_subsidy_decay', UInt32Serializer],// ['bandwidth_kbytes_fee', AssetSerializer],['maximum_block_size', UInt32Serializer],// ['operation_flat_fee', AssetSerializer],// ['proposal_fee', AssetSerializer],])

Const communityAccountRegexp

communityAccountRegexp: RegExp = /^blurt-[1-3]\d{4,6}$/

Community Identifier

Const regExpAccount

regExpAccount: RegExp = /^(?=.{3,16}$)[a-z][0-9a-z\-]{1,}[0-9a-z]([\.][a-z][0-9a-z\-]{1,}[0-9a-z]){0,}$/

Regexp for a graphene account

Const regExpAtAccount

regExpAtAccount: RegExp = /^@(?=.{3,16}$)[a-z][0-9a-z\-]{1,}[0-9a-z]([\.][a-z][0-9a-z\-]{1,}[0-9a-z]){0,}$/

Regexp for a graphene account with @

Const timeoutErrors

timeoutErrors: string[] = ['timeout', 'ENOTFOUND', 'ECONNREFUSED', 'database lock', 'CERT_HAS_EXPIRED', 'EHOSTUNREACH']

Let unique_nonce_entropy

unique_nonce_entropy: number = Math.floor(Math.random() * 0xFFFF)

Generates a unique 64 bit unsigned number string. Being time based, this is careful to never choose the same nonce twice. This value could be recorded in the blockchain for a long time.

returns

The unique nonce.

Functions

Const ArraySerializer

  • ArraySerializer(itemSerializer: Serializer): (Anonymous function)
  • Parameters

    Returns (Anonymous function)

Const AssetSerializer

  • Serialize asset.

    note

    This looses precision for amounts larger than 2^53-1/10^precision. Should not be a problem in real-word usage.

    Parameters

    Returns void

Const BinaryDeserializer

  • Parameters

    Returns Buffer

Const BinarySerializer

  • BinarySerializer(size?: undefined | number): (Anonymous function)
  • Parameters

    • Optional size: undefined | number

    Returns (Anonymous function)

Const BooleanSerializer

  • BooleanSerializer(buffer: ByteBuffer, data: boolean): void
  • Parameters

    Returns void

Const BufferDeserializer

  • BufferDeserializer(keyDeserializers: [string, Deserializer][]): any
  • Parameters

    Returns any

Const DateSerializer

  • DateSerializer(buffer: ByteBuffer, data: string): void
  • Parameters

    Returns void

Const FlatMapSerializer

  • Parameters

    Returns (Anonymous function)

Const Int16Serializer

  • Int16Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const Int32Serializer

  • Int32Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const Int64Serializer

  • Int64Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const Int8Serializer

  • Int8Serializer(buffer: ByteBuffer, data: number): void
  • Int

    Parameters

    Returns void

Const ObjectSerializer

  • ObjectSerializer(keySerializers: [string, Serializer][]): (Anonymous function)
  • Parameters

    Returns (Anonymous function)

Const OperationDataSerializer

  • Serializer

    Parameters

    • operationId: number
    • definitions: [string, Serializer][]

    Returns Serializer

Const OperationSerializer

  • OperationSerializer(buffer: ByteBuffer, operation: any): void
  • END | Operation Serializers

    Parameters

    Returns void

Const OptionalSerializer

  • OptionalSerializer(valueSerializer: Serializer): (Anonymous function)
  • Parameters

    Returns (Anonymous function)

Const PublicKeyDeserializer

  • PublicKeyDeserializer(buf: ByteBuffer): { key: Buffer }
  • Parameters

    Returns { key: Buffer }

    • key: Buffer

Const PublicKeySerializer

  • Parameters

    Returns void

Const StaticVariantSerializer

  • StaticVariantSerializer(itemSerializers: Serializer[]): (Anonymous function)
  • Parameters

    Returns (Anonymous function)

Const StringSerializer

  • StringSerializer(buffer: ByteBuffer, data: string): void
  • Parameters

    Returns void

Const UInt16Serializer

  • UInt16Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const UInt32Deserializer

  • Parameters

    Returns number

Const UInt32Serializer

  • UInt32Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const UInt64Deserializer

  • Parameters

    Returns Long

Const UInt64Serializer

  • UInt64Serializer(buffer: ByteBuffer, data: number): void
  • Parameters

    Returns void

Const UInt8Serializer

  • UInt8Serializer(buffer: ByteBuffer, data: number): void
  • Uint

    Parameters

    Returns void

Const VoidSerializer

  • Basic

    Parameters

    Returns void

Const copy

  • copy<T>(object: T): T
  • Return a deep copy of a JSON-serializable object

    Type parameters

    • T

    Parameters

    • object: T

    Returns T

Const decodeMemo

  • decodeMemo(memo: string, receiverPrivateMemoKey: PrivateKey | string): string
  • Decrypts an encrypted memo.

    Parameters

    • memo: string

      The encrypted memo to decrypt (need to start with #).

    • receiverPrivateMemoKey: PrivateKey | string

      The private Memo key of the recipient.

    Returns string

    The decrypted message.

Const decodePrivate

  • decodePrivate(encodedKey: string): Buffer
  • Decode bs58+doubleSha256-checksum encoded private key

    Parameters

    • encodedKey: string

    Returns Buffer

Const decodePublic

  • decodePublic(encodedKey: string): { key: Buffer; prefix: string }
  • Decode bs58+ripemd160-checksum encoded public key

    Parameters

    • encodedKey: string

    Returns { key: Buffer; prefix: string }

    • key: Buffer
    • prefix: string

Const defaultBackoff

  • defaultBackoff(tries: number): number
  • Default backoff function. min(tries*10^2, 10 seconds)

    Parameters

    • tries: number

    Returns number

Const doubleSha256

  • doubleSha256(input: Buffer | string): Buffer
  • Return 2-round sha256 hash of input

    Parameters

    • input: Buffer | string

    Returns Buffer

Const encodeMemo

  • encodeMemo(memo: string, senderPrivateMemoKey: PrivateKey | string, receiverPublicMemoKey: PublicKey | string): string
  • Encrypt a memo.

    Parameters

    • memo: string

      The memo to encrypt (need to start with #).

    • senderPrivateMemoKey: PrivateKey | string

      The private Memo key of the sender.

    • receiverPublicMemoKey: PublicKey | string

      The publicKey Memo key of the recipient.

    Returns string

    The encrypted message.

Const encodePrivate

  • encodePrivate(key: Buffer): string
  • Encode bs58+doubleSha256-checksum private key

    Parameters

    • key: Buffer

    Returns string

Const encodePublic

  • encodePublic(key: Buffer, prefix: string): string
  • Encode public key with bs58+ripemd160-checksum

    Parameters

    • key: Buffer
    • prefix: string

    Returns string

Const failover

  • failover(url: string, urls: string[], currentAddress: string, consoleOnFailover: boolean): string
  • Fetch API wrapper that retries until timeout is reached.

    Parameters

    • url: string
    • urls: string[]
    • currentAddress: string
    • consoleOnFailover: boolean

    Returns string

Const fixed_buf

  • Parameters

    Returns Buffer

Const generateTrxId

  • Parameters

    Returns string

Const getVestingSharePrice

Const getVests

  • getVests(account: Account, subtract_delegated?: boolean, add_received?: boolean): number
  • Returns the vests of specified account. Default: Subtract delegated & add received

    Parameters

    • account: Account
    • Default value subtract_delegated: boolean = true
    • Default value add_received: boolean = true

    Returns number

Const isCanonicalSignature

  • isCanonicalSignature(signature: Buffer): boolean
  • Return true if signature is canonical, otherwise false

    Parameters

    • signature: Buffer

    Returns boolean

Const isValidCommunityAccountRegexp

  • isValidCommunityAccountRegexp(communityAccount: string): boolean
  • Parameters

    • communityAccount: string

    Returns boolean

Const isWif

  • isWif(privWif: string): boolean
  • Return true if string is wif, otherwise false

    Parameters

    • privWif: string

    Returns boolean

Const iteratorStream

  • iteratorStream<T>(iterator: AsyncIterableIterator<T>): ReadableStream
  • Return a stream that emits iterator values.

    Type parameters

    • T

    Parameters

    • iterator: AsyncIterableIterator<T>

    Returns ReadableStream

Const makeBitMaskFilter

  • makeBitMaskFilter(allowedOperations: number[]): (null | number)[]
  • Make bitmask filter to be used with getAccountHistory call

    Parameters

    • allowedOperations: number[]

      Array of operations index numbers

    Returns (null | number)[]

Const makeBitwiseFilter

  • makeBitwiseFilter(allowedOperations: number[]): number
  • Make bitmask filter to be used with enum_virtual_ops call

    Parameters

    • allowedOperations: number[]

      Array of operations index numbers

    Returns number

Const redFunction

  • redFunction(__namedParameters: [any, any], allowedOperation: number): [typeof JSBI, any] | [any, typeof JSBI]
  • Parameters

    • __namedParameters: [any, any]
    • allowedOperation: number

    Returns [typeof JSBI, any] | [any, typeof JSBI]

Const removeVarintLengthPrefix

  • removeVarintLengthPrefix(decryptedMessage: Buffer): string
  • remove varint length prefix

    Parameters

    • decryptedMessage: Buffer

      Buffer of the decrypted message

    Returns string

    the decrypted message minus the varint length prefix

Const retryingFetch

  • retryingFetch(currentAddress: string, allAddresses: string | string[], opts: any, timeout: number, failoverThreshold: number, consoleOnFailover: boolean, backoff: (tries: number) => number, fetchTimeout?: undefined | ((tries: number) => number)): Promise<{ currentAddress: string; response: any }>
  • Parameters

    • currentAddress: string
    • allAddresses: string | string[]
    • opts: any
    • timeout: number
    • failoverThreshold: number
    • consoleOnFailover: boolean
    • backoff: (tries: number) => number
        • (tries: number): number
        • Parameters

          • tries: number

          Returns number

    • Optional fetchTimeout: undefined | ((tries: number) => number)

    Returns Promise<{ currentAddress: string; response: any }>

Const ripemd160

  • ripemd160(input: Buffer | string): Buffer
  • Return ripemd160 hash of input

    Parameters

    • input: Buffer | string

    Returns Buffer

Const sha256

  • sha256(input: Buffer | string): Buffer
  • Return sha256 hash of input

    Parameters

    • input: Buffer | string

    Returns Buffer

Const signTransaction

  • Return copy of transaction with signature appended to signatures array.

    Parameters

    • transaction: Transaction

      Transaction to sign.

    • keys: any

      Key(s) to sign transaction with.

    • Default value chainId: Buffer = DEFAULT_CHAIN_ID

    Returns SignedTransaction

Const sleep

  • sleep(ms: number): Promise<void>
  • Sleep for N milliseconds.

    Parameters

    • ms: number

    Returns Promise<void>

Const toBuffer

  • toBuffer(ab: ArrayBuffer): Buffer
  • From ArrayBuffer to Buffer

    Parameters

    • ab: ArrayBuffer

    Returns Buffer

Const toByteBuffer

  • toByteBuffer(o: string | number | typeof Long): typeof Long
  • Converts a string, number or Long to a ByteBuffer object.

    throws

    An error if the input is not a string, number or Long.

    Parameters

    • o: string | number | typeof Long

      The value to be converted.

    Returns typeof Long

    A ByteBuffer object.

Const toUint8Array

  • toUint8Array(buf: Buffer): Uint8Array
  • From Buffer to Uint8Array

    Parameters

    • buf: Buffer

    Returns Uint8Array

Const transactionDigest

  • Return the sha256 transaction digest.

    Parameters

    Returns Buffer

Const uniqueNonce

  • uniqueNonce(): string
  • Returns string

Const waitForEvent

  • waitForEvent<T>(emitter: EventEmitter, eventName: string | symbol): Promise<T>
  • Return a promise that will resove when a specific event is emitted.

    Type parameters

    • T

    Parameters

    • emitter: EventEmitter
    • eventName: string | symbol

    Returns Promise<T>

Object literals

Const Types

Types: object

Array

Array: ArraySerializer = ArraySerializer

Asset

Asset: AssetSerializer = AssetSerializer

Authority

Authority: (Anonymous function) = AuthoritySerializer

Binary

Binary: BinarySerializer = BinarySerializer

Boolean

Boolean: BooleanSerializer = BooleanSerializer

Date

Date: DateSerializer = DateSerializer

FlatMap

FlatMap: FlatMapSerializer = FlatMapSerializer

Int16

Int16: Int16Serializer = Int16Serializer

Int32

Int32: Int32Serializer = Int32Serializer

Int64

Int64: Int64Serializer = Int64Serializer

Int8

Int8: Int8Serializer = Int8Serializer

Memo

Memo: (Anonymous function) = EncryptedMemoSerializer

Object

Object: ObjectSerializer = ObjectSerializer

Operation

Operation: OperationSerializer = OperationSerializer

Optional

Optional: OptionalSerializer = OptionalSerializer

PublicKey

PublicKey: PublicKeySerializer = PublicKeySerializer

StaticVariant

StaticVariant: StaticVariantSerializer = StaticVariantSerializer

String

String: StringSerializer = StringSerializer

Transaction

Transaction: (Anonymous function) = TransactionSerializer

UInt16

UInt16: UInt16Serializer = UInt16Serializer

UInt32

UInt32: UInt32Serializer = UInt32Serializer

UInt64

UInt64: UInt64Serializer = UInt64Serializer

UInt8

UInt8: UInt8Serializer = UInt8Serializer

Void

Void: VoidSerializer = VoidSerializer

Const cryptoUtils

cryptoUtils: object

Misc crypto utility functions.

decodePrivate

decodePrivate: decodePrivate

doubleSha256

doubleSha256: doubleSha256

encodePrivate

encodePrivate: encodePrivate

encodePublic

encodePublic: encodePublic

generateTrxId

generateTrxId: generateTrxId

isCanonicalSignature

isCanonicalSignature: isCanonicalSignature

isWif

isWif: isWif

regExpAccount

regExpAccount: RegExp

regExpAtAccount

regExpAtAccount: RegExp

ripemd160

ripemd160: ripemd160

sha256

sha256: sha256

signTransaction

signTransaction: signTransaction

toBuffer

toBuffer: toBuffer

toByteBuffer

toByteBuffer: toByteBuffer

toUint8Array

toUint8Array: toUint8Array

transactionDigest

transactionDigest: transactionDigest

uniqueNonce

uniqueNonce: uniqueNonce

Const operationOrders

operationOrders: object

account_create

account_create: number = 5

account_update

account_update: number = 6

account_witness_proxy

account_witness_proxy: number = 9

account_witness_vote

account_witness_vote: number = 8

author_reward

author_reward: number = 37

cancel_transfer_from_savings

cancel_transfer_from_savings: number = 26

change_recovery_account

change_recovery_account: number = 19

claim_account

claim_account: number = 15

claim_reward_balance

claim_reward_balance: number = 31

clear_null_account_balance

clear_null_account_balance: number = 48

comment

comment: number = 1

comment_benefactor_reward

comment_benefactor_reward: number = 46

comment_options

comment_options: number = 13

comment_payout_update

comment_payout_update: number = 44

comment_reward

comment_reward: number = 39

create_claimed_account

create_claimed_account: number = 16

create_proposal

create_proposal: number = 34

curation_reward

curation_reward: number = 38

custom

custom: number = 10

custom_binary

custom_binary: number = 27

custom_json

custom_json: number = 12

decline_voting_rights

decline_voting_rights: number = 28

delegate_vesting_shares

delegate_vesting_shares: number = 32

delete_comment

delete_comment: number = 11

escrow_approve

escrow_approve: number = 23

escrow_dispute

escrow_dispute: number = 21

escrow_release

escrow_release: number = 22

escrow_transfer

escrow_transfer: number = 20

fee_pay

fee_pay: number = 51

fill_transfer_from_savings

fill_transfer_from_savings: number = 42

fill_vesting_withdraw

fill_vesting_withdraw: number = 40

hardfork

hardfork: number = 43

producer_reward

producer_reward: number = 47

proposal_pay

proposal_pay: number = 49

recover_account

recover_account: number = 18

remove_proposal

remove_proposal: number = 36

request_account_recovery

request_account_recovery: number = 17

reset_account

reset_account: number = 29

return_vesting_delegation

return_vesting_delegation: number = 45

set_reset_account

set_reset_account: number = 30

set_withdraw_vesting_route

set_withdraw_vesting_route: number = 14

shutdown_witness

shutdown_witness: number = 41

sps_fund

sps_fund: number = 50

transfer

transfer: number = 2

transfer_from_savings

transfer_from_savings: number = 25

transfer_to_savings

transfer_to_savings: number = 24

transfer_to_vesting

transfer_to_vesting: number = 3

update_proposal_votes

update_proposal_votes: number = 35

vote

vote: number = 0

withdraw_vesting

withdraw_vesting: number = 4

witness_set_properties

witness_set_properties: number = 33

witness_update

witness_update: number = 7

Const virtualOps

virtualOps: object

author_reward

author_reward: number = 0

clear_null_account_balance

clear_null_account_balance: number = 11

comment_benefactor_reward

comment_benefactor_reward: number = 9

comment_payout_update

comment_payout_update: number = 7

comment_reward

comment_reward: number = 2

curation_reward

curation_reward: number = 1

fee_pay

fee_pay: number = 14

fill_transfer_from_savings

fill_transfer_from_savings: number = 5

fill_vesting_withdraw

fill_vesting_withdraw: number = 3

hardfork

hardfork: number = 6

producer_reward

producer_reward: number = 10

proposal_pay

proposal_pay: number = 12

return_vesting_delegation

return_vesting_delegation: number = 8

shutdown_witness

shutdown_witness: number = 4

sps_fund

sps_fund: number = 13

Generated using TypeDoc