How to use the indy-sdk.buildNymRequest function in indy-sdk

To help you get started, we’ve selected a few indy-sdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hyperledger / education / LFS171x / indy-material / nodejs / indy / src / pool / index.js View on Github external
exports.sendNym = async function(poolHandle, walletHandle, Did, newDid, newKey, role) {
    let nymRequest = await sdk.buildNymRequest(Did, newDid, newKey, null, role);
    await sdk.signAndSubmitRequest(poolHandle, walletHandle, Did, nymRequest);
};
github hyperledger / indy-agent / nodejs / indy / common.js View on Github external
exports.sendNym = async function(poolHandle, walletHandle, Did, newDid, newKey, role) {
    let nymRequest = await indy.buildNymRequest(Did, newDid, newKey, null, role);
    await indy.signAndSubmitRequest(poolHandle, walletHandle, Did, nymRequest);
};
github hyperledger / indy-agent / nodejs / indy / src / pool / index.js View on Github external
exports.sendNym = async function(poolHandle, walletHandle, Did, newDid, newKey, role) {
    let nymRequest = await sdk.buildNymRequest(Did, newDid, newKey, null, role);
    await sdk.signAndSubmitRequest(poolHandle, walletHandle, Did, nymRequest);
};