UNPKG
koinos-rpc
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
Typescript library to communicate with Koinos API via RPC
gitlab.com/engrave/koinos/koinos-rpc
koinos-rpc
/
dist
/
service
/
ContractMetaStore.d.ts
12 lines
(11 loc)
•
298 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Client
}
from
'../Client'
;
interface
GetContractMetaResponse
{
meta
:
any
; }
export
declare
class
ContractMetaStore
{
private
readonly
client;
constructor
(
client
:
Client
);
getContractMeta
(
contractId
:
string
):
Promise
<
GetContractMetaResponse
>;
private
call; }
export
{};