-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(op receipt): implement wait_for_user_operation_receipt
- Loading branch information
1 parent
dfe0f88
commit d1238a3
Showing
9 changed files
with
147 additions
and
58 deletions.
There are no files selected for viewing
79 changes: 79 additions & 0 deletions
79
crates/ffi/YttriumCore/Sources/YttriumCore/SwiftFFI/Models/FFIUserOperationReceipt.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import Foundation | ||
|
||
public struct UserOperationReceipt: Codable { | ||
|
||
public struct Receipt: Codable { | ||
public let transactionHash: String | ||
public let transactionIndex: String | ||
public let block_hash: String | ||
public let block_number: String | ||
public let from: String | ||
public let to: String | ||
public let cumulativeGasUsed: String | ||
public let gas_used: String | ||
public let contractAddress: String? | ||
public let status: String | ||
public let logsBloom: String | ||
public let effectiveGasPrice: String | ||
|
||
public init( | ||
transactionHash: String, | ||
transactionIndex: String, | ||
block_hash: String, | ||
block_number: String, | ||
from: String, | ||
to: String, | ||
cumulativeGasUsed: String, | ||
gas_used: String, | ||
contractAddress: String?, | ||
status: String, | ||
logsBloom: String, | ||
effectiveGasPrice: String | ||
) { | ||
self.transactionHash = transactionHash | ||
self.transactionIndex = transactionIndex | ||
self.block_hash = block_hash | ||
self.block_number = block_number | ||
self.from = from | ||
self.to = to | ||
self.cumulativeGasUsed = cumulativeGasUsed | ||
self.gas_used = gas_used | ||
self.contractAddress = contractAddress | ||
self.status = status | ||
self.logsBloom = logsBloom | ||
self.effectiveGasPrice = effectiveGasPrice | ||
} | ||
} | ||
|
||
public let userOpHash: String | ||
public let entryPoint: String | ||
public let sender: String | ||
public let nonce: String | ||
public let paymaster: String | ||
public let actualGasCost: String | ||
public let actualGasUsed: String | ||
public let success: Bool | ||
public let receipt: Receipt | ||
|
||
public init( | ||
userOpHash: String, | ||
entryPoint: String, | ||
sender: String, | ||
nonce: String, | ||
paymaster: String, | ||
actualGasCost: String, | ||
actualGasUsed: String, | ||
success: Bool, | ||
receipt: Receipt | ||
) { | ||
self.userOpHash = userOpHash | ||
self.entryPoint = entryPoint | ||
self.sender = sender | ||
self.nonce = nonce | ||
self.paymaster = paymaster | ||
self.actualGasCost = actualGasCost | ||
self.actualGasUsed = actualGasUsed | ||
self.success = success | ||
self.receipt = receipt | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters