UNPKG
eth-janus
Version:
latest (0.0.1)
0.0.1
Indirection service
eth-janus
/
interfaces
/
idirectory-provider.ts
5 lines
•
246 B
text/typescript
View Raw
1
2
3
4
5
export
interface
IDirectoryProvider
{
addCompanyKey
(
companyName
:
string
,
keyName
:
string
,
publicKey
:
string
);
//getCompanyAddress(companyName:string): Promise<string>;
getCompanyKey
(
companyName
:
string
,
keyName
:
string
): Promise<
string
>; }