Options
All
  • Public
  • Public/Protected
  • All
Menu

@daostack/arc.js - v0.2.87

Index

Enumerations

Classes

Interfaces

Type aliases

Variables

Functions

Object literals

Type aliases

Address

Address: string

Date

Date: number

EthereumEvent

EthereumEvent: any

Hash

Hash: string

IPFSProvider

IPFSProvider: string

IProposalCreateOptions

IProposalType

Operation

Type parameters

  • T

Web3Provider

Web3Provider: string | object

Web3Receipt

Web3Receipt: any

transactionErrorHandler

transactionErrorHandler: function

Type declaration

    • (error: Error, transaction?: any, options?: undefined | object): Promise<Error> | Error
    • Parameters

      • error: Error
      • Optional transaction: any
      • Optional options: undefined | object

      Returns Promise<Error> | Error

web3receipt

web3receipt: object

Variables

Const ABI_DIR

ABI_DIR: "./abis" = "./abis"

Const CONTRIBUTION_REWARD_DUMMY_VERSION

CONTRIBUTION_REWARD_DUMMY_VERSION: "0.0.1-rc.44" = "0.0.1-rc.44"

Const CT4RRedeemerABI

CT4RRedeemerABI: object[] = [{constant: false,inputs: [{internalType: 'contract ContinuousLocking4Reputation',name: 'clt4Reputation',type: 'address'},{components: [{internalType: 'address',name: 'beneficiary',type: 'address'},{internalType: 'uint256',name: 'id',type: 'uint256'}],internalType: 'struct NectarReputationRedeemer.Redeem[]',name: 'clt4rRedeems',type: 'tuple[]'}],name: 'redeemContinuousLocking4Reputation',outputs: [],payable: false,stateMutability: 'nonpayable',type: 'function'}]

Const CT4RRedeemerAddress

CT4RRedeemerAddress: "0x829BDfd41d517f57E5eBf13AD0E181351cb16a96" = "0x829BDfd41d517f57E5eBf13AD0E181351cb16a96"

Const DAOFieldsFragment

DAOFieldsFragment: DocumentNode = gql`fragment DAOFields on DAO {idnamenativeReputation { id, totalSupply }nativeToken { id, name, symbol, totalSupply }numberOfQueuedProposalsnumberOfPreBoostedProposalsnumberOfBoostedProposalsregisterreputationHoldersCount}`

Const DAOTOKEN_CONTRACT_VERSION

DAOTOKEN_CONTRACT_VERSION: "0.0.1-rc.19" = "0.0.1-rc.19"

Const DEFAULT_GRAPH_POLL_INTERVAL

DEFAULT_GRAPH_POLL_INTERVAL: number = 15000

Const FormData

FormData: any = require('form-data')

Const NULL_ADDRESS

NULL_ADDRESS: "0x0000000000000000000000000000000000000000" = "0x0000000000000000000000000000000000000000"

Const REDEEMER_CONTRACT_VERSIONS

REDEEMER_CONTRACT_VERSIONS: string[] = ['0.0.1-rc.44','0.0.1-rc.37','0.0.1-rc.36']

Const REPUTATION_CONTRACT_VERSION

REPUTATION_CONTRACT_VERSION: "0.0.1-rc.19" = "0.0.1-rc.19"

Const Web3

Web3: any = require('web3')

Const fetch

fetch: any = require('isomorphic-fetch')

Functions

checkWebsocket

  • checkWebsocket(options: object): void
  • Parameters

    • options: object
      • url: string

    Returns void

concat

  • concat(a: Uint8Array, b: Uint8Array): Uint8Array
  • Parameters

    • a: Uint8Array
    • b: Uint8Array

    Returns Uint8Array

createApolloClient

  • createApolloClient(options: object): ApolloClient<NormalizedCacheObject>
  • Parameters

    • options: object
      • Optional errHandler?: undefined | function
      • graphqlHttpProvider: string
      • graphqlWsProvider: string
      • Optional prefetchHook?: undefined | function
      • Optional retryLink?: any

    Returns ApolloClient<NormalizedCacheObject>

createGraphQlQuery

  • creates a string to be plugsging into a graphql query

    example

    { proposals ${createGraphQlQuery({ skip: 2}, 'id: "2"')} { id } }

    Parameters

    Returns string

createGraphQlWhereQuery

  • createGraphQlWhereQuery(where?: undefined | object): string
  • Parameters

    • Optional where: undefined | object

    Returns string

createProposal

  • createProposal(options: any, context: Arc): (Anonymous function)

createTransaction

  • createTransaction(options: any, context: Arc): (Anonymous function)

createTransactionMap

  • createTransactionMap(options: any, context: Arc): map
  • map the transaction receipt of the createTransaction call to a nice result map the transaction receipt of the createTransaction call to a nice result map the transaction receipt of the createTransaction call to a nice result map the transaction receipt of the createTransaction call to a nice result map the transaction receipt of the createTransaction call to a nice result

    Parameters

    • options: any

      the options passed to the createProposal call

    • context: Arc

      an Arc instance

    Returns map

dateToSecondsSinceEpoch

  • dateToSecondsSinceEpoch(date: Date): number

eventId

fromWei

  • fromWei(amount: BN): string

getBlockTime

  • getBlockTime(web3: any): Promise<Date>
  • get the latest block time, or the current time, whichver is later

    export

    Parameters

    • web3: any

    Returns Promise<Date>

getCompetitionContract

  • If this scheme is a ContributionREwardExt scheme and if its rewarder is Competition contract, return that contract

    Parameters

    Returns any

    A Web3 contract instance

hasCompetitionContract

hexStringToUint8Array

  • hexStringToUint8Array(hexString: string): Uint8Array
  • Parameters

    • hexString: string

    Returns Uint8Array

isAddress

  • isAddress(address: Address): void

isCompetitionScheme

  • isCompetitionScheme(arc: Arc, item: any): boolean

mapGenesisProtocolParams

  • Parameters

    Returns object

    • activationTime: number
    • boostedVotePeriodLimit: number
    • daoBountyConst: number
    • limitExponentValue: number
    • minimumDaoBounty: BN
    • preBoostedVotePeriodLimit: number
    • proposingRepReward: BN
    • queuedVotePeriodLimit: number
    • queuedVoteRequiredPercentage: number
    • quietEndingPeriod: number
    • thresholdConst: number
    • votersReputationLossRatio: number

realMathToBN

  • realMathToBN(t: BN): BN

realMathToNumber

  • realMathToNumber(t: BN): number
  • convert the number representation of RealMath.sol representations to real real numbers

    Parameters

    • t: BN

      a BN instance of a real number in the RealMath representation

    Returns number

    a BN

secondSinceEpochToDate

  • secondSinceEpochToDate(seconds: number): Date

sendTransaction

    • send a transaction to the ethereumblockchain, and return a observable of ITransactionUpdatessend for example: sendTransaction(.....).subscribe((txUpdate) => { if (txUpdate.state === 'sent' ) { notify("your transaction has been sent, waitin'for it to be mnied") } if (txUpdate.state === 'mined'} { notify("your transaction has been mined! It was confirmed ${txUpdate.confirmations} times"} // and we also ahve the txUpdate.receipt and the txUpdate.result to do stuff with } })

    @export @template T @param {Arc} context An instance of Arc @param {*} transaction A Web3 transaction object to send @param {((receipt: web3receipt) => T | Promise)} mapReceipt A function that takes the receipt of the transaction and returns an object @param {((error: Error, transaction: any, options: { from?: string }) => Promise | Error)} [errorHandler] A function that takes an error, and either returns or throws a more informative Error if errorHander is not provided, a default error handler will throw any errors thrown by calling transaction.call() @returns {Operation}

    Type parameters

    • T

    Parameters

    • context: Arc
    • transaction: any
    • mapReceipt: function
    • Default value errorHandler: transactionErrorHandler = async (err: Error, tx: any = transaction, options: { from?: string} = {}) => {await tx.call(options)throw err}

    Returns Operation<T>

toIOperationObservable

toWei

  • toWei(amount: string | number): BN

zenToRxjsObservable

  • zenToRxjsObservable(zenObservable: ZenObservable<any>): any
  • convert a ZenObservable to an rxjs.Observable

    Parameters

    • zenObservable: ZenObservable<any>

    Returns any

    an Observable instance

Object literals

Const IProposalType

IProposalType: object

ContributionReward

ContributionReward: = "ContributionRewardExt"

GenericScheme

GenericScheme: = "UGenericScheme"

GenericSchemeMultiCall

GenericSchemeMultiCall: = "GenericSchemeMultiCall"

SchemeRegistrarAdd

SchemeRegistrarAdd: = "SchemeRegistrarAdd"

SchemeRegistrarEdit

SchemeRegistrarEdit: = "SchemeRegistrarEdit"

SchemeRegistrarRemove

SchemeRegistrarRemove: = "SchemeRegistrarRemove"

Generated using TypeDoc