Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 693 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 693 Bytes

Cardano Wallet Functions

Common functions for the cardano-wallet backend

Methods implemented

  • getNetworkSyncState
  • createWallet (and generate mnemonic)
  • getWalletSnapshot
  • getWalletAssets
  • getAccountPublicKey

Troubleshooting CORS

If you are cloning the repo and running in local environment then you are likely to get errors related to CORS. To solve it you should run a local proxy server

lcp --proxyUrl https://cnode.dynamicstrategies.io:8071/v2

And then you should point all your graphQL API queries to

http://localhost:8010/proxy

The issue with CORS is well explained here

Link