function isSingle (entry: BN | [BN, BN]): entry is BN {
  return !Array.isArray(entry);
}