# getPublicKey

Returns a string encoding a public key.

# Type

;() => string

# Return Value

A string encoding BIP32 public key.

# Example

import { Computer } from '@bitcoin-computer/lib'
import { expect } from '../../utils'

describe('getPublicKey', () => {
  it('Should return the public key', async () => {
    const computer = new Computer()
    expect(typeof computer.getPublicKey()).eq('string')
  })
})

Sources