Skip to content

Commit

Permalink
make 'from' optional
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrosario committed Jan 17, 2025
1 parent 0de3f96 commit 8532ab0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EIPS/eip-5792.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ The wallet:
```typescript
type SendCallsParams = {
version: string;
from: `0x${string}`;
chainId: `0x${string}` | undefined; // Hex chain id
from?: `0x${string}` | undefined;
chainId: `0x${string}`; // Hex chain id
calls: {
to?: `0x${string}` | undefined;
data?: `0x${string}` | undefined;
Expand Down Expand Up @@ -147,7 +147,7 @@ type GetCallsParams = string;

type GetCallsResult = {
id: `0x${string}`;
chainId?: `0x${string}`;
chainId: `0x${string}`;
status: number; // See "Status Codes"
receipts?: {
logs: {
Expand Down

0 comments on commit 8532ab0

Please sign in to comment.