6.7.31 • Published 2 years ago

@dfdao/network v6.7.31

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@dfdao/network

This package contains functions and classes useful for communicating with the blockchain.

Installation

You can install this package using npm or yarn by running:

npm install --save @dfdao/network
yarn add @dfdao/network

When using this in a plugin, you might want to load it with skypack

import * as network from 'http://cdn.skypack.dev/@dfdao/network';

Table of contents

Classes

Interfaces

Type aliases

Functions

Classes

ContractCaller

ContractCaller: Class ContractCaller

Instead of allowing the game to call view functions on the blockchain directly, all contract calls should go through this class. Its purpose is to throttle the calls to a reasonable rate, and to gracefully handle errors and retries


EthConnection

EthConnection: Class EthConnection

Responsible for

  1. loading the contracts
  2. connecting to the network

ThrottledConcurrentQueue

ThrottledConcurrentQueue: Class ThrottledConcurrentQueue<U>

A queue that executes promises with a max throughput, and optionally max concurrency.

Type parameters

NameType
Uunknown

TxCollection

TxCollection: Class TxCollection

Default implementation of a transaction collection - provides a simple api for adding, removing, and querying by type of transaction.


TxExecutor

TxExecutor: Class TxExecutor

Interfaces

ConcurrentQueueConfiguration

ConcurrentQueueConfiguration: Interface ConcurrentQueueConfiguration


Queue

Queue: Interface Queue

Let's keep things flexible by keeping this type small.

Type aliases

AfterTransaction

Ƭ AfterTransaction: Function

Type declaration

▸ (transactionRequest, performanceMetrics): Promise<void>

{@link TxExecutor} calls this after executing a transaction.

Parameters
NameType
transactionRequestTransaction
performanceMetricsunknown
Returns

Promise<void>


BeforeQueued

Ƭ BeforeQueued: Function

Type declaration

▸ (id, intent, overrides?): Promise<void>

{@link TxExecutor} calls this before queueing a function to determine whether or not that function should be queued. If this function rejects, a transaction is not queued.

Parameters
NameType
idTransactionId
intentTxIntent
overrides?providers.TransactionRequest
Returns

Promise<void>


BeforeTransaction

Ƭ BeforeTransaction: Function

Type declaration

▸ (transactionRequest): Promise<void>

{@link TxExecutor} calls this before executing a function to determine whether or not that function should execute. If this function rejects, the transaction is cancelled.

Parameters
NameType
transactionRequestTransaction
Returns

Promise<void>


ContractLoader

Ƭ ContractLoader: Function

Type parameters

NameType
Textends Contract

Type declaration

▸ (address, provider, signer?): Promise<T>

Parameters
NameType
addressstring
providerproviders.JsonRpcProvider
signer?Wallet
Returns

Promise<T>


GasPriceSettingProvider

Ƭ GasPriceSettingProvider: Function

Type declaration

▸ (transactionRequest): AutoGasSetting | string

Returns either a string that represents the gas price we should use by default for transactions, or a string that represents the fact that we should be using one of the automatic gas prices.

Parameters
NameType
transactionRequestTransaction
Returns

AutoGasSetting | string


RetryErrorHandler

Ƭ RetryErrorHandler: Function

Type declaration

▸ (i, e): void

Parameters
NameType
inumber
eError
Returns

void

Functions

aggregateBulkGetter

Const aggregateBulkGetter<T>(total, querySize, getterFn, onProgress?, offset?): Promise<T[]>

A useful utility function that breaks up the proverbial number line (defined by {@code total} and {@code querySize}), and calls {@code getterFn} for each of the sections on the number line.

Type parameters

Name
T

Parameters

NameTypeDefault valueDescription
totalnumberundefinedthe total amount of of items to get
querySizenumberundefinedthe chunk size
getterFnFunctionundefineda function that fetches something, given a start index and end index
onProgress?Functionundefinedwhenever a chunk is loaded, this function is called with the fraction of individual items that have been loaded so far.
offsetnumber0the index to start fetching, can be used to skip previously fetched elements.

Returns

Promise<T[]>

a list of each of the individual items that were loaded.


assertProperlySigned

assertProperlySigned(message): void

Ensures that the given message was properly signed.

Parameters

NameType
messageSignedMessage<unknown>

Returns

void


callWithRetry

Const callWithRetry<T>(fn, args?, onError?, maxRetries?, retryInterval?): Promise<T>

Calls the given function, retrying it if there is an error.

todo Get rid of this, and make use of {@link ContractCaller}.

Type parameters

Name
T

Parameters

NameTypeDefault value
fnFunctionundefined
argsany[][]
onError?RetryErrorHandlerundefined
maxRetries12DEFAULT_MAX_CALL_RETRIES
retryIntervalnumber1000

Returns

Promise<T>


createContract

createContract<C>(contractAddress, contractABI, provider, signer?): C

Type parameters

NameType
Cextends Contract<C>

Parameters

NameTypeDescription
contractAddressstringthe address of the contract you want to connect to
contractABIContractInterfacea javacript object representing the ABI
providerJsonRpcProvider-
signer?Wallet-

Returns

C


createEthConnection

createEthConnection(rpcUrl): Promise<EthConnection>

Parameters

NameType
rpcUrlstring

Returns

Promise<EthConnection>


ethToWei

ethToWei(eth): BigNumber

Returns the given amount of eth in wei as a big integer.

Parameters

NameType
ethnumber

Returns

BigNumber


getAutoGasPrices

getAutoGasPrices(): Promise<GasPrices>

Gets the current gas prices from xDai's price oracle. If the oracle is broken, return some sane defaults.

Returns

Promise<GasPrices>


getGasSettingGwei

getGasSettingGwei(setting, gasPrices): number | undefined

Given the user's auto gas setting, and the current set of gas prices on the network, returns the preferred gas price. If an invalid {@link AutoGasSetting} is provided, then returns undefined.

Parameters

NameType
settingAutoGasSetting
gasPricesGasPrices

Returns

number | undefined


gweiToWei

gweiToWei(gwei): BigNumber

Returns the given amount of gwei in wei as a big integer.

Parameters

NameType
gweinumber

Returns

BigNumber


isPurchase

isPurchase(tx?): boolean

Whether or not some value is being transferred in this transaction.

Parameters

NameType
tx?TransactionRequest

Returns

boolean


makeProvider

makeProvider(rpcUrl): providers.JsonRpcProvider

Creates a new {@link JsonRpcProvider}, and makes sure that it's connected to xDai if we're in production.

Parameters

NameType
rpcUrlstring

Returns

providers.JsonRpcProvider


neverResolves

neverResolves(): Promise<void>

A function that just never resolves.s

Returns

Promise<void>


verifySignature

verifySignature(message, signature, addr): boolean

Returns whether or not the given message was signed by the given address.

Parameters

NameType
messagestring
signaturestring
addrundefined | EthAddress

Returns

boolean


waitForTransaction

waitForTransaction(provider, txHash): Promise<providers.TransactionReceipt>

Given a transaction hash and a JsonRpcProvider, waits for the given transaction to complete.

Parameters

NameType
providerJsonRpcProvider
txHashstring

Returns

Promise<providers.TransactionReceipt>


weiToEth

weiToEth(wei): number

Returns the given amount of wei in gwei as a number.

Parameters

NameType
weiBigNumber

Returns

number


weiToGwei

weiToGwei(wei): number

Returns the given amount of wei in gwei as a number.

Parameters

NameType
weiBigNumber

Returns

number