UNPKG
@mavrykdynamics/taquito-local-forging
Version:
latest (20.1.0)
20.1.0
20.0.4
20.0.3
20.0.2
20.0.1
20.0.0
19.2.3
19.2.2
19.2.1
19.2.0
19.0.2
17.5.2
17.5.0
17.3.3
17.3.2
Provide local forging functionality to be with taquito
@mavrykdynamics/taquito-local-forging
/
dist
/
types
/
interface.d.ts
10 lines
(9 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
OperationContents
}
from
'@mavrykdynamics/taquito-rpc'
;
export
interface
ForgeParams
{
branch
:
string
;
contents
:
OperationContents
[]; }
export
type
ForgeResponse
=
string
;
export
interface
Forger
{
forge
(
params
:
ForgeParams
):
Promise
<
ForgeResponse
>; }