Skip to content

Commit

Permalink
Merge pull request #28 from argentlabs/fix/project-signature-param
Browse files Browse the repository at this point in the history
fix: add projectSignature as optional parameter to SessionMetadata
  • Loading branch information
bluecco authored Oct 15, 2024
2 parents e9ac685 + d5657b2 commit d187c8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export type MetadataTxFee = {
export type SessionMetadata = {
projectID: string
txFees: MetadataTxFee[]
projectSignature?: Signature
}

type SessionParams = {
Expand Down
2 changes: 2 additions & 0 deletions src/sessionTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
CairoCustomEnum,
Calldata,
ProviderInterface,
Signature,
constants,
} from "starknet"

Expand Down Expand Up @@ -56,6 +57,7 @@ export type MetadataTxFee = {
export type SessionMetadata = {
projectID: string
txFees: MetadataTxFee[]
projectSignature: Signature
}

export type SessionParams = {
Expand Down

0 comments on commit d187c8b

Please sign in to comment.