Function VaultsApiFactory
- VaultsApiFactory(configuration?, basePath?, axios?): {
asgard(height?, options?): AxiosPromise<VaultsResponse>;
vault(pubkey, height?, options?): AxiosPromise<Vault>;
vaultPubkeys(height?, options?): AxiosPromise<VaultPubkeysResponse>;
yggdrasil(height?, options?): AxiosPromise<VaultsResponse>;
} Parameters
Optional
configuration: ConfigurationOptional
basePath: stringOptional
axios: AxiosInstance
Returns {
asgard(height?, options?): AxiosPromise<VaultsResponse>;
vault(pubkey, height?, options?): AxiosPromise<Vault>;
vaultPubkeys(height?, options?): AxiosPromise<VaultPubkeysResponse>;
yggdrasil(height?, options?): AxiosPromise<VaultsResponse>;
}
asgard:function
- asgard(height?, options?): AxiosPromise<VaultsResponse>
Parameters
Optional
height: numberOptional
options: any
vault:function
- vault(pubkey, height?, options?): AxiosPromise<Vault>
Parameters
- pubkey: string
Optional
height: numberOptional
options: any
Returns AxiosPromise<Vault>
vaultPubkeys:function
- vaultPubkeys(height?, options?): AxiosPromise<VaultPubkeysResponse>
Parameters
Optional
height: numberOptional
options: any
yggdrasil:function
- yggdrasil(height?, options?): AxiosPromise<VaultsResponse>
Parameters
Optional
height: numberOptional
options: any
VaultsApi - factory interface