6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
import { TAccountPointer } from '@/types'
|
|
|
|
export function isSameAccount(a: TAccountPointer | null, b: TAccountPointer | null) {
|
|
return a?.pubkey === b?.pubkey && a?.signerType === b?.signerType
|
|
}
|