Skip to content

Commit f212821

Browse files
committed
remove twAddress override
1 parent 34f43fa commit f212821

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/utils/wallets/getAwsKmsAccount.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
eth_sendRawTransaction,
66
getRpcClient,
77
keccak256,
8-
type Address as TwAddress,
8+
type Address,
99
} from "thirdweb";
1010
import { serializeTransaction } from "thirdweb/transaction";
1111
import { toBytes } from "thirdweb/utils";
@@ -41,7 +41,7 @@ export async function getAwsKmsAccount(
4141

4242
// Populate address immediately
4343
const addressUnprefixed = await signer.getAddress();
44-
const address = `0x${addressUnprefixed}` as TwAddress;
44+
const address = `0x${addressUnprefixed}` as Address;
4545

4646
async function signTransaction(tx: TransactionSerializable): Promise<Hex> {
4747
const serializedTx = serializeTransaction({ transaction: tx });

0 commit comments

Comments
 (0)