MCPcopy Index your code
hub / github.com/bitpay/bitcore / getnewaddress

Method getnewaddress

packages/bitcore-node/src/rpc.ts:171–174  ·  view source on GitHub ↗
(account: string)

Source from the content-addressed store, hash-verified

169 }
170
171 async getnewaddress(account: string): Promise<string> {
172 await this.setWallet();
173 return (await this.call('getnewaddress', [account], this.walletName)) as string;
174 }
175
176 async signrawtx(txs: string): Promise<any> {
177 await this.setWallet();

Callers 4

sendBitcoinFunction · 0.80
websocket.test.tsFile · 0.80
wallet.test.tsFile · 0.80

Calls 2

setWalletMethod · 0.95
callMethod · 0.95

Tested by 1

sendBitcoinFunction · 0.64