How to use the submitAction function from bindings

Find comprehensive JavaScript bindings.submitAction code examples handpicked from public code repositorys.

330
331
332
333
334
335
336
337
338
339
340
341
  return cb.promise
}


indy.submitAction = function submitAction (poolHandle, request, nodes, timeout, cb) {
  cb = wrapIndyCallback(cb, fromJson)
  capi.submitAction(poolHandle, toJson(request), toJson(nodes), timeout == null ? -1 : timeout, cb)
  return cb.promise
}


indy.signRequest = function signRequest (wh, submitterDid, request, cb) {
fork icon1
star icon0
watch icon0

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)