@appliedblockchain/helpers
v6.0.0
Published
No dependency, single file helpers.
Downloads
924
Maintainers
Keywords
Readme
Summary
No dependency, single file helpers. Skewed towards ethereum.
Usage
npm i @appliedblockchain/helpers
Api
Table of Contents
- addressOfPrivateKey
- addressOfPublicKey
- blockHashOf
- booleanOfString
- bufferOfHexOrHex0x
- bufferOfHex
- bufferOfHex0x
- bufferOfUnsigned
- catchOf
- defaultCmp
- eachPromise
- evenZeroPaddedOf
- eventuallyTrue
- fibonacciOf
- hasKeys
- heightOf
- hexOfUnsigned
- hex0xOfUnsigned
- indexedByKey
- isLikeDateString
- isPending
- isSafePositive
- isSafeUnsigned
- jsonOfUrl
- makeRetrace
- noop
- objectOfStrings
- racePromises
- randomUint32
- shSync
- sortedDifference
- sortedIntersection
- defaultTimeout
- spread
- stopOfMonitor
- timeoutOf
addressOfPrivateKey
Parameters
privateKey
Buffer
Returns Buffer ethereum address of provided privateKey
.
addressOfPublicKey
Returns ethereum address of provided public key.
Parameters
publicKey
Buffer
Returns Buffer
blockHashOf
Parameters
url
stringblockNumberOrTag
("earliest"
|"latest"
|"pending"
| number) (optional, default'latest'
)timeout
number (optional, defaultdefaultTiemout
)
Returns Promise<string?> block hash as hex0x string or null from provided ethereum jsonrpc endpoint url
in specified timeout
; null
if timeout has been reached.
booleanOfString
Parses string and returns true
for "true"
, "on"
, "yes"
and "1"
strings, false
otherwise.
Parameters
value
string
Returns boolean
bufferOfHexOrHex0x
Returns Buffer
representation of provided hex (ie. "ff"
) or hex0x (ie. "0xff"
) string.
Parameters
value
stringThrows any TypeError On invalid input.
bufferOfHex
Parameters
value
string
Returns any buffer representation of provided hex string.
bufferOfHex0x
Parameters
value
string
Returns Buffer buffer representation of provided hex0x string.
bufferOfUnsigned
Parameters
value
number
Returns Buffer the smallest buffer representation of provided safe, unsigned integer number. When input is 0
- empty buffer is returned.
catchOf
Parameters
message
stringresult
T
Returns function (error: Error): T
defaultCmp
Default comparision function.
Parameters
x
anyy
any
Returns (-1
| 0
| 1
)
eachPromise
Similar to Promise.all
but yields after each promise settlement.
Exceptions are captured and results are yielded as [ err, result, i ]
tuple.
Parameters
Returns AsyncGenerator<[Error?, T?, number], any, any>
evenZeroPaddedOf
Parameters
value
string
Returns any input string padded with 0 if length is odd, otherwise returns string as is.
eventuallyTrue
Retries up to n
times (roughtly seconds) call to f
waiting for true
result, which breaks the loop and returns
true
. If f
didn't return true
throws last result value.
Parameters
Returns Promise<(true
| R)>
fibonacciOf
Yields fibonacci sequence capped to max
(default max safe integer).
Parameters
max
number (optional, defaultdefaultMax
)
Returns void
hasKeys
Type: function (any): boolean
Parameters
value
Returns any true
if value
has one or more keys, false
otherwise.
heightOf
Parameters
Returns Promise<number> Height of the chain from provided ethereum jsonrpc endpoint url
or NaN
if timeout has been reached or any other problem occured.
hexOfUnsigned
Parameters
value
number
Returns string even/byte-padded, hex string representation of a safe, unsigned number.
hex0xOfUnsigned
Parameters
value
number
Returns string 0x-prefixed hex string representation of a safe, unsigned number.
indexedByKey
Parameters
Returns {} transposed entries from xs, indexed by key
. Non-unique keys will overwrite previous values.
Non-existing keys will be indexed under undefined
key.
isLikeDateString
Checks if value
looks like YYYY-MM-DD
date string.
Parameters
value
any
Returns boolean
isPending
Returns true
if promise has not settled yet, false
otherwise.
Parameters
value
Promise<any>
Returns boolean
isSafePositive
Parameters
value
number
Returns boolean true
if value is safe integer greater than zero, false
otherwise.
isSafeUnsigned
Parameters
value
any
Returns boolean true
if value is safe unsigned number, false
otherwise.
jsonOfUrl
Type: function (string): Promise<any>
Parameters
url
Returns any json from basic http(s) get request on url
.
makeRetrace
Captures extra stack trace, usage await foo().catch(makeRetrace())
.
err
argument is being modified with new stack value.
noop
Identity function.
objectOfStrings
Parameters
Returns {} membership object (set) for provided list of elements (strings).
racePromises
Like Promise.race
but doen't complain about unhandled rejections that happen after race has settled.
Parameters
Returns Promise<any>
randomUint32
Returns number random unsigned integer that fits 32 bits.
shSync
Executes simple shell command.
Parameters
sortedDifference
Computes xs - ys difference in linear time between two, unique, ascending arrays of values. Comparision function can be flipped for descending arrays. Leaks values of arrays in thrown error.
Parameters
Returns Array<T>
sortedIntersection
Computes intersection in linear time between two, unique, ascending arrays of values. Comparision function can be flipped for descending arrays. Leaks values of arrays in thrown error.
Parameters
Returns Array<T>
defaultTimeout
Expire cached nonces after 12 seconds.
spread
Spread n
calls to f
function ms
milliseconds apart.
Parameters
stopOfMonitor
Creates monitor similar to setInterval
but allows single execution at a time only. Concurrent invocation attempts
are ignored.
Parameters
Returns any stop function.
timeoutOf
Parameters
milliseconds
numbermessage
string (optional, default`Timeout of ${String(milliseconds)}ms exceeded.`
)code
(number | string) (optional, default'@appliedblockchain/helpers/timeout'
)
Returns any cancellable, rejecting timeout promise.
License
MIT License
Copyright 2019 Applied Blockchain
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.