How to use the @aeternity/aepp-sdk.MemoryAccount function in @aeternity/aepp-sdk

To help you get started, we’ve selected a few @aeternity/aepp-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 aeternity / aepp-aeproject-js / packages / aeproject-utils / utils / aeproject-utils.js View on Github external
await handleApiError(async () => {
        client = await Universal({
            url: network.url,
            internalUrl,
            accounts: [AeSDK.MemoryAccount({
                keypair
            })],
            nativeMode: true,
            networkId: network.networkId,
            compilerUrl: network.compilerUrl
        })
    });