Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Arc

The Arc class holds all configuration. Any useage of the library typically will start with instantiating a new Arc instance

returns

an instance of Arc

Hierarchy

Index

Constructors

constructor

  • new Arc(options: object): Arc
  • Parameters

    • options: object
      • Optional contractInfos?: IContractInfo[]

        Information about the contracts. Cf. setContractInfos and fetchContractInfos

      • Optional graphqlErrHandler?: any
      • Optional graphqlHttpProvider?: undefined | string
      • Optional graphqlPrefetchHook?: undefined | function

        this function will be called before a query is sent to the graphql provider

      • Optional graphqlRetryLink?: any
      • Optional graphqlSubscribeToQueries?: undefined | false | true

        determines whether a query should subscribe to updates from the graphProvider. Default is true.

      • Optional graphqlWsProvider?: undefined | string
      • Optional ipfsProvider?: IPFSProvider
      • Optional web3Provider?: undefined | string
      • Optional web3ProviderRead?: undefined | string

    Returns Arc

Properties

Logger

Logger: GlobalLogger = Logger

Optional apolloClient

apolloClient: ApolloClient<object>

blockHeaderSubscription

blockHeaderSubscription: Subscription | undefined = undefined

contractInfos

contractInfos: IContractInfo[]

a mapping of contrct names to contract addresses

contracts

contracts: object

Type declaration

  • [key: string]: any

contractsR

contractsR: object

Type declaration

  • [key: string]: any

Optional graphqlHttpProvider

graphqlHttpProvider: undefined | string

Optional graphqlSubscribeToQueries

graphqlSubscribeToQueries: undefined | false | true

Optional graphqlWsProvider

graphqlWsProvider: undefined | string

ipfs

ipfs: any

ipfsProvider

ipfsProvider: IPFSProvider

observedAccounts

observedAccounts: object

Type declaration

  • [address: string]: object
    • Optional lastBalance?: undefined | string
    • Optional observable?: Observable<BN>
    • Optional observer?: Observer<BN>
    • subscriptionsCount: number

pendingOperations

pendingOperations: Observable<Array<Operation<any>>> = of()

web3

web3: any

web3Provider

web3Provider: Web3Provider = ""

web3ProviderRead

web3ProviderRead: Web3Provider = ""

web3Read

web3Read: any

Methods

GENToken

allowance

  • How much GEN spender may spend on behalve of the owner

    Parameters

    • owner: Address

      Address of the owner of the tokens

    • spender: Address

      Address of the spender

    Returns Observable<BN>

approveForStaking

dao

  • get a DAO instance from an address

    Parameters

    • address: Address

      address of the dao Avatar

    Returns DAO

    an instance of a DAO

daos

ethBalance

  • ethBalance(owner: Address): Observable<BN>

events

fetchContractInfos

getABI

  • getABI(address?: Address, abiName?: undefined | string, version?: undefined | string): any
  • Parameters

    • Optional address: Address
    • Optional abiName: undefined | string
    • Optional version: undefined | string

    Returns any

getAccount

  • getAccount(): Observable<Address>

getContract

  • getContract(address: Address, abi?: any, mode?: undefined | "readonly"): any
  • return a web3 Contract instance.

    Parameters

    • address: Address

      address of the contract to look up in self.contractInfos

    • Optional abi: any
    • Optional mode: undefined | "readonly"

    Returns any

    a web3 contract instance

getContractInfo

getContractInfoByName

  • getContractInfoByName(name: string, version: string): IContractInfo

getObservable

  • Given a gql query, will return an observable of query results

    Parameters

    • query: any

      a gql query object to execute

    • Default value apolloQueryOptions: IApolloQueryOptions = {}

      options to pass on to Apollo, cf ..

    Returns any

    an Observable that will first yield the current result, and yields updates every time the data changes

getObservableList

  • getObservableList(query: any, itemMap?: function, apolloQueryOptions?: IApolloQueryOptions): any
  • Returns an observable that:

    • sends a query over http and returns the current list of results
    • subscribes over a websocket to changes, and returns the updated list.
    example:
       const query = gql`
       {
         daos {
           id
           address
         }
       }`
       getObservableList(query, (r:any) => new DAO(r.address))

    Parameters

    • query: any

      The query to be run

    • Default value itemMap: function = (o) => o

      (optional) a function that takes elements of the list and creates new objects

        • (o: object): object | null
        • Parameters

          • o: object

          Returns object | null

    • Default value apolloQueryOptions: IApolloQueryOptions = {}

    Returns any

    an Observable

getObservableObject

  • getObservableObject(query: any, itemMap?: function, apolloQueryOptions?: IApolloQueryOptions): any
  • Returns an observable that:

    • sends a query over http and returns the current list of results
    • subscribes over a websocket to changes, and returns the updated list example: const query = gql` { daos {
       id
       address
      } }` getObservableList(query, (r:any) => new DAO(r.address), filter((r:any) => r.address === "0x1234..."))

    Parameters

    • query: any

      The query to be run

    • Default value itemMap: function = (o) => o

      (optional) a function that takes elements of the list and creates new objects

        • (o: object): object | null
        • Parameters

          • o: object

          Returns object | null

    • Default value apolloQueryOptions: IApolloQueryOptions = {}

    Returns any

proposal

proposals

rewards

saveIPFSData

  • saveIPFSData(options: object): Promise<string>
  • save data of a proposal to IPFS, return the IPFS hash

    Parameters

    • options: object

      an Object to save. This object must have title, url and desction defined

      • Optional description?: undefined | string
      • Optional tags?: string[]
      • Optional title?: undefined | string
      • Optional url?: undefined | string

    Returns Promise<string>

    a Promise that resolves in the IPFS Hash where the file is saved

scheme

schemes

sendQuery

sendTransaction

setAccount

  • setAccount(address: Address): void

setContractInfos

  • setContractInfos(contractInfos: IContractInfo[]): Promise<void>
  • set the contract addresses

    Parameters

    Returns Promise<void>

stakes

tags

Private validateGenesisProtocolParams

  • validateGenesisProtocolParams(gpAddress: Address, parametersHash: string): Promise<boolean>
  • Parameters

    • gpAddress: Address
    • parametersHash: string

    Returns Promise<boolean>

verifyParametersHash

  • verifyParametersHash(address: Address, schemeParametersHash: string, schemeName?: undefined | string): Promise<boolean>
  • verify scheme parametersHash

    Parameters

    • address: Address

      address of the scheme to verify its params hash

    • schemeParametersHash: string

      the scheme params hash

    • Optional schemeName: undefined | string

      optional

    Returns Promise<boolean>

    true if : scheme is not one of the following: 'SchemeRegistrar','ContributionReward','GenericScheme','GenericSchemeMultiCall' or parameters are verified for this scheme, otherwise - will return false

Generated using TypeDoc