Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions packages/thirdweb/src/wallets/injected/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,16 +201,17 @@
};
const params = [
{
...tx,
authorizationList: tx.authorizationList
? ox__Authorization.toRpcList(tx.authorizationList)
: undefined,
...gasFees,
from: this.address,
gas: tx.gas ? numberToHex(tx.gas) : undefined,
nonce: tx.nonce ? numberToHex(tx.nonce) : undefined,
to: tx.to ? getAddress(tx.to) : undefined,
data: tx.data,

Check warning on line 209 in packages/thirdweb/src/wallets/injected/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/injected/index.ts#L209

Added line #L209 was not covered by tests
value: tx.value ? numberToHex(tx.value) : undefined,
authorizationList: tx.authorizationList
? ox__Authorization.toRpcList(tx.authorizationList)
: undefined,
accessList: tx.accessList,

Check warning on line 214 in packages/thirdweb/src/wallets/injected/index.ts

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/wallets/injected/index.ts#L211-L214

Added lines #L211 - L214 were not covered by tests
...tx.eip712,
},
];
Expand Down
Loading