We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0920f48 commit da45390Copy full SHA for da45390
src/soroban/models.py
@@ -109,12 +109,12 @@ class Argument(BaseModel):
109
model_config = ConfigDict(arbitrary_types_allowed=True)
110
111
type: str
112
- value: int | str | xdr.SCVal
+ value: int | bytes | str | xdr.SCVal
113
114
115
class Parameter(Argument):
116
name: str
117
- value: int | str | xdr.SCVal | list[Argument | xdr.SCVal]
+ value: int | bytes | str | xdr.SCVal | list[Argument | xdr.SCVal]
118
119
@model_validator(mode="after")
120
def value_to_scval(self) -> "Parameter":
0 commit comments