We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34f43fa commit f212821Copy full SHA for f212821
src/server/utils/wallets/getAwsKmsAccount.ts
@@ -5,7 +5,7 @@ import {
5
eth_sendRawTransaction,
6
getRpcClient,
7
keccak256,
8
- type Address as TwAddress,
+ type Address,
9
} from "thirdweb";
10
import { serializeTransaction } from "thirdweb/transaction";
11
import { toBytes } from "thirdweb/utils";
@@ -41,7 +41,7 @@ export async function getAwsKmsAccount(
41
42
// Populate address immediately
43
const addressUnprefixed = await signer.getAddress();
44
- const address = `0x${addressUnprefixed}` as TwAddress;
+ const address = `0x${addressUnprefixed}` as Address;
45
46
async function signTransaction(tx: TransactionSerializable): Promise<Hex> {
47
const serializedTx = serializeTransaction({ transaction: tx });
0 commit comments