Skip to content

Feature: 7702 Transaction Support#88

Open
KartikSoneji wants to merge 7 commits into
joshstevens19:masterfrom
KartikSoneji:feature/7702-support
Open

Feature: 7702 Transaction Support#88
KartikSoneji wants to merge 7 commits into
joshstevens19:masterfrom
KartikSoneji:feature/7702-support

Conversation

@KartikSoneji
Copy link
Copy Markdown

Adds support for 7702 transactions via an optional authorizationList parameter in send transaction.
closes #87

@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 20, 2026

@KartikSoneji is attempting to deploy a commit to the joshaavecom's projects Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Copy Markdown
Owner

@joshstevens19 joshstevens19 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks for PR just 1 comment

Transaction {
id: row.get("id"),
relayer_id: row.get("relayer_id"),
authorization_list: row.get("authorization_list"),
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i dont see anything in the schema https://github.com/KartikSoneji/rrelayer/tree/feature/7702-support/crates/core/src/schema so this field doesnt exist - you need to create a v1_0_3.rs one to add this field with defaults NULL so other upgrade using this still work

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah missed that, pushed a commit to add it.

/// Applies the RRelayer database schema version 1.0.3.
/// Adds a column for `authorization_list`.
pub async fn apply_v1_0_3_schema(client: &PostgresClient) -> Result<(), PostgresError> {
let schema_sql = r#"
ALTER TABLE relayer.transaction
ADD COLUMN IF NOT EXISTS authorization_list JSONB DEFAULT null
"#;
client.batch_execute(schema_sql).await?;
Ok(())
}

Copy link
Copy Markdown
Owner

@joshstevens19 joshstevens19 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just need to actually save the authorization_list when your sending tx or replacing it etc i cant see you changing that bit of code?

Transaction {
id: row.get("id"),
relayer_id: row.get("relayer_id"),
authorization_list: row.get("authorization_list"),
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i dont see where you save this when you send a transaction ?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah ok I think it needs a few more changes.

@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 23, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
rrelayer Ready Ready Preview, Comment Feb 23, 2026 4:25pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Feature: Support 7702 Transactions

3 participants