feat: multi accounts
This commit is contained in:
5
src/lib/account.ts
Normal file
5
src/lib/account.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { TAccountPointer } from '@/types'
|
||||
|
||||
export function isSameAccount(a: TAccountPointer | null, b: TAccountPointer | null) {
|
||||
return a?.pubkey === b?.pubkey && a?.signerType === b?.signerType
|
||||
}
|
||||
Reference in New Issue
Block a user