Load user data before updating, prefer newer events in repository over old ones with the same created_at, add list update utils

This commit is contained in:
Jon Staab
2025-08-01 13:09:50 -07:00
parent bd67f2763d
commit 1f5f869f7c
9 changed files with 119 additions and 11 deletions
+2 -2
View File
@@ -69,8 +69,8 @@ export type SignerMethodWrapper = <T>(method: string, thunk: () => Promise<T>) =
export class WrappedSigner extends Emitter implements ISigner {
constructor(
private signer: ISigner,
private wrapMethod: SignerMethodWrapper,
readonly signer: ISigner,
readonly wrapMethod: SignerMethodWrapper,
) {
super()
}