| 134 | } |
| 135 | |
| 136 | export interface ProviderSettings extends CoordinatorSettings { |
| 137 | readonly authorizers: ChainAuthorizers; |
| 138 | readonly authorizations: ChainAuthorizations; |
| 139 | readonly blockHistoryLimit: number; |
| 140 | readonly chainId: string; |
| 141 | readonly chainType: ChainType; |
| 142 | readonly chainOptions: ChainOptions; |
| 143 | readonly minConfirmations: number; |
| 144 | readonly mayOverrideMinConfirmations: boolean; |
| 145 | readonly name: string; |
| 146 | readonly url: string; |
| 147 | readonly xpub: string; |
| 148 | } |
| 149 | |
| 150 | export type ProviderState<T> = T & { |
| 151 | readonly config?: Config; |
nothing calls this directly
no outgoing calls
no test coverage detected