UNPKG
incubed
Version:
latest (1.1.41)
1.1.41
1.1.10
1.1.9
1.1.6
Typescript-version of the incubed client
github.com/slockit/in3
slockit/in3
incubed
/
js
/
src
/
modules
/
eth
/
call.d.ts
11 lines
(10 loc)
•
306 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
AccountProof
}
from
'../../types/types'
;
/** executes a transaction-call to a smart contract */
export
declare
function
executeCall
(
args
: { to:
string
; data:
string
; value?:
string
;
from
?:
string
; },
accounts
: { [adr:
string
]: AccountProof; },
block
:
Buffer
):
Promise
<
Buffer
>;