Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Felt(fromSigned) initializer; Support u128, i128, timestamp types in StarknetTypedData #174

Merged
merged 118 commits into from
Apr 8, 2024

Conversation

- Add `dataAvailability` to `StarknetExecutionResources`; Add `StarknetDataAvailability
  - Add `executionResources` to tx traces
- Add `StarknetComputationResources`
  - Add `computationResources` to `StarknetFunctionInvocation`
- Add `StarknetResources` protocol with common fields
- Prefund account with `5_000_000_000_000_000`->`5_000_000_000_000_000_000`
- Change max fee in declare methods to `1_000_000_000_000_000`->`10_000_000_000_000_000`
- Add `dataGasConsumed`, `dataGasPrice` fields to `StarknetFeeEstimate`
- Update `.toResourceBounds()` extension
  - Update overheads
  - Use new logic
… and `StarknetExecutionResources`

- Adjust tests
- Add `StarknetTypedData.Domain`, `StarknetTypedData.Revision`
- Change `domain` type: `[String: Element] -> Domain`
  - Update initializer
- Add `getStructHash(typeName: String, data: Data)`
- Add `getStructHash(domain: Domain)`
- Use correct escape chars for rev 1
- Rename test files `typed_data_[..].json`-> `typed_data_rev_0_[..].json`
- Add `typed_data_rev_1_example.json`
- Update `TypedDataTests`
  - Move old td cases to `CasesRev0`
  - Add `CasesRev1`
…otocol

- Add `TypeDeclarationWrapper`
- Change `types` type from `[String: [TypeDeclaration]]` to `[String: [TypeDeclarationWrapper]]`
Sources/Starknet/Data/Numbers/Felt.swift Show resolved Hide resolved
print(input)
let element = try JSONDecoder().decode(StarknetTypedData.Element.self, from: JSONEncoder().encode(input))
XCTAssertThrowsError(try CasesRev1.td.encode(element: element, forType: "u128")) { error in
XCTAssertEqual(error as? StarknetTypedDataError, .decodingError)
Copy link
Member

Choose a reason for hiding this comment

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

yeah, at least a bit more context would be great to have, to at least know what might have gone wrong

@DelevoXDG DelevoXDG requested a review from THenry14 April 5, 2024 11:40
Base automatically changed from feat/159-4-basic-types to main April 8, 2024 10:06
@DelevoXDG DelevoXDG merged commit 0201228 into main Apr 8, 2024
1 check passed
@DelevoXDG DelevoXDG deleted the feat/159-5-int-basic-types branch April 8, 2024 10:42
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.

2 participants