Ethereum Test Base Types package¶
Common definitions and types.
Address
¶
Bases: FixedSizeBytes[20]
Class that helps represent Ethereum addresses in tests.
Source code in src/ethereum_test_base_types/base_types.py
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 |
|
__new__(input_bytes, *, label=None)
¶
Create a new Address object with an optional label.
Source code in src/ethereum_test_base_types/base_types.py
300 301 302 303 304 305 306 307 308 309 |
|
Bloom
¶
Bases: FixedSizeBytes[256]
Class that helps represent blooms in tests.
Source code in src/ethereum_test_base_types/base_types.py
318 319 320 321 |
|
BLSPublicKey
¶
Bases: FixedSizeBytes[48]
Class that helps represent BLS public keys in tests.
Source code in src/ethereum_test_base_types/base_types.py
330 331 332 333 |
|
BLSSignature
¶
Bases: FixedSizeBytes[96]
Class that helps represent BLS signatures in tests.
Source code in src/ethereum_test_base_types/base_types.py
336 337 338 339 |
|
Bytes
¶
Bases: bytes
, ToStringSchema
Class that helps represent bytes of variable length in tests.
Source code in src/ethereum_test_base_types/base_types.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
__new__(input_bytes=b'')
¶
Create a new Bytes object.
Source code in src/ethereum_test_base_types/base_types.py
137 138 139 140 141 |
|
__hash__()
¶
Return the hash of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
143 144 145 |
|
__str__()
¶
Return the hexadecimal representation of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
147 148 149 |
|
hex(*args, **kwargs)
¶
Return the hexadecimal representation of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
151 152 153 |
|
or_none(input_bytes)
classmethod
¶
Convert the input to a Bytes while accepting None.
Source code in src/ethereum_test_base_types/base_types.py
155 156 157 158 159 160 |
|
keccak256()
¶
Return the keccak256 hash of the opcode byte representation.
Source code in src/ethereum_test_base_types/base_types.py
162 163 164 165 |
|
sha256()
¶
Return the sha256 hash of the opcode byte representation.
Source code in src/ethereum_test_base_types/base_types.py
167 168 169 |
|
FixedSizeBytes
¶
Bases: Bytes
Class that helps represent bytes of fixed length in tests.
Source code in src/ethereum_test_base_types/base_types.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
__class_getitem__(length)
¶
Create a new FixedSizeBytes class with the given length.
Source code in src/ethereum_test_base_types/base_types.py
236 237 238 239 240 241 242 243 |
|
__new__(input_bytes, *, left_padding=False, right_padding=False)
¶
Create a new FixedSizeBytes object.
Source code in src/ethereum_test_base_types/base_types.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
|
__hash__()
¶
Return the hash of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
265 266 267 |
|
or_none(input_bytes)
classmethod
¶
Convert the input to a Fixed Size Bytes while accepting None.
Source code in src/ethereum_test_base_types/base_types.py
269 270 271 272 273 274 |
|
__eq__(other)
¶
Compare two FixedSizeBytes objects to be equal.
Source code in src/ethereum_test_base_types/base_types.py
276 277 278 279 280 281 282 283 284 285 286 287 288 |
|
__ne__(other)
¶
Compare two FixedSizeBytes objects to be not equal.
Source code in src/ethereum_test_base_types/base_types.py
290 291 292 |
|
Hash
¶
Bases: FixedSizeBytes[32]
Class that helps represent hashes in tests.
Source code in src/ethereum_test_base_types/base_types.py
312 313 314 315 |
|
HashInt
¶
Bases: FixedSizeHexNumber[32]
Class that helps represent hashes in tests.
Source code in src/ethereum_test_base_types/base_types.py
221 222 223 224 |
|
HeaderNonce
¶
Bases: FixedSizeBytes[8]
Class that helps represent the header nonce in tests.
Source code in src/ethereum_test_base_types/base_types.py
324 325 326 327 |
|
HexNumber
¶
Bases: Number
Class that helps represent an hexadecimal numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
110 111 112 113 114 115 |
|
__str__()
¶
Return the string representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
113 114 115 |
|
Number
¶
Bases: int
, ToStringSchema
Class that helps represent numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
__new__(input_number)
¶
Create a new Number object.
Source code in src/ethereum_test_base_types/base_types.py
46 47 48 |
|
__str__()
¶
Return the string representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
50 51 52 |
|
hex()
¶
Return the hexadecimal representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
54 55 56 |
|
or_none(input_number)
classmethod
¶
Convert the input to a Number while accepting None.
Source code in src/ethereum_test_base_types/base_types.py
58 59 60 61 62 63 |
|
Wei
¶
Bases: Number
Class that helps represent wei that can be parsed from strings.
Source code in src/ethereum_test_base_types/base_types.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
__new__(input_number)
¶
Create a new Number object.
Source code in src/ethereum_test_base_types/base_types.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
|
ZeroPaddedHexNumber
¶
Bases: HexNumber
Class that helps represent zero padded hexadecimal numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
118 119 120 121 122 123 124 125 126 127 128 |
|
hex()
¶
Return the hexadecimal representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
121 122 123 124 125 126 127 128 |
|
AccessList
¶
Bases: CamelModel
Access List for transactions.
Source code in src/ethereum_test_base_types/composite_types.py
456 457 458 459 460 461 462 463 464 |
|
to_list()
¶
Return access list as a list of serializable elements.
Source code in src/ethereum_test_base_types/composite_types.py
462 463 464 |
|
Account
¶
Bases: CamelModel
State associated with an address.
Source code in src/ethereum_test_base_types/composite_types.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
nonce: ZeroPaddedHexNumber = ZeroPaddedHexNumber(0)
class-attribute
instance-attribute
¶
The scalar value equal to a) the number of transactions sent by an Externally Owned Account, b) the amount of contracts created by a contract.
balance: ZeroPaddedHexNumber = ZeroPaddedHexNumber(0)
class-attribute
instance-attribute
¶
The amount of Wei (10-18 Eth) the account has.
code: Bytes = Bytes(b'')
class-attribute
instance-attribute
¶
Bytecode contained by the account.
storage: Storage = Field(default_factory=Storage)
class-attribute
instance-attribute
¶
Storage within a contract.
NONEXISTENT: None = None
class-attribute
¶
Sentinel object used to specify when an account should not exist in the state.
NonceMismatchError
dataclass
¶
Bases: Exception
Test expected a certain nonce value for an account but a different value was found.
Source code in src/ethereum_test_base_types/composite_types.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in src/ethereum_test_base_types/composite_types.py
315 316 317 318 319 320 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
322 323 324 325 326 327 328 329 330 |
|
BalanceMismatchError
dataclass
¶
Bases: Exception
Test expected a certain balance for an account but a different value was found.
Source code in src/ethereum_test_base_types/composite_types.py
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
|
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in src/ethereum_test_base_types/composite_types.py
343 344 345 346 347 348 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
350 351 352 353 354 355 356 357 358 |
|
CodeMismatchError
dataclass
¶
Bases: Exception
Test expected a certain bytecode for an account but a different one was found.
Source code in src/ethereum_test_base_types/composite_types.py
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 |
|
__init__(address, want, got, *args)
¶
Initialize the exception with the address, wanted and got values.
Source code in src/ethereum_test_base_types/composite_types.py
371 372 373 374 375 376 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
378 379 380 381 382 383 384 385 386 |
|
check_alloc(address, account)
¶
Check the returned alloc against an expected account in post state. Raises exception on failure.
Source code in src/ethereum_test_base_types/composite_types.py
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
|
__bool__()
¶
Return True on a non-empty account.
Source code in src/ethereum_test_base_types/composite_types.py
420 421 422 |
|
with_code(code)
classmethod
¶
Create account with provided code
and nonce of 1
.
Source code in src/ethereum_test_base_types/composite_types.py
424 425 426 427 |
|
merge(account_1, account_2)
classmethod
¶
Create a merged account from two sources.
Source code in src/ethereum_test_base_types/composite_types.py
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
|
Alloc
¶
Bases: EthereumTestRootModel[Dict[Address, Account | None]]
Allocation of accounts in the state, pre and post test execution.
Source code in src/ethereum_test_base_types/composite_types.py
450 451 452 453 |
|
BlobSchedule
¶
Bases: EthereumTestRootModel[Dict[str, ForkBlobSchedule]]
Blob schedule configuration dictionary.
Source code in src/ethereum_test_base_types/composite_types.py
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 |
|
append(*, fork, schedule)
¶
Append a new fork schedule.
Source code in src/ethereum_test_base_types/composite_types.py
480 481 482 483 484 |
|
last()
¶
Return the last schedule.
Source code in src/ethereum_test_base_types/composite_types.py
486 487 488 489 490 |
|
ForkBlobSchedule
¶
Bases: CamelModel
Representation of the blob schedule of a given fork.
Source code in src/ethereum_test_base_types/composite_types.py
467 468 469 470 471 472 |
|
Storage
¶
Bases: EthereumTestRootModel[Dict[StorageKeyValueType, StorageKeyValueType]]
Definition of a storage in pre or post state of a test.
Source code in src/ethereum_test_base_types/composite_types.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
StorageDictType: TypeAlias = Dict[str | int | bytes | SupportsBytes, str | int | bytes | SupportsBytes]
class-attribute
¶
Dictionary type to be used when defining an input to initialize a storage.
InvalidTypeError
dataclass
¶
Bases: Exception
Invalid type used when describing test's expected storage key or value.
Source code in src/ethereum_test_base_types/composite_types.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid type.
Source code in src/ethereum_test_base_types/composite_types.py
39 40 41 42 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
44 45 46 |
|
InvalidValueError
dataclass
¶
Bases: Exception
Invalid value used when describing test's expected storage key or value.
Source code in src/ethereum_test_base_types/composite_types.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid value.
Source code in src/ethereum_test_base_types/composite_types.py
57 58 59 60 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
62 63 64 |
|
MissingKeyError
dataclass
¶
Bases: Exception
Test expected to find a storage key set but key was missing.
Source code in src/ethereum_test_base_types/composite_types.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
__init__(key, *args)
¶
Initialize the exception with the missing key.
Source code in src/ethereum_test_base_types/composite_types.py
72 73 74 75 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
77 78 79 |
|
KeyValueMismatchError
dataclass
¶
Bases: Exception
Test expected a certain value in a storage key but value found was different.
Source code in src/ethereum_test_base_types/composite_types.py
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
__init__(address, key, want, got, hint='', *args)
¶
Initialize the exception with the address, key, wanted and got values.
Source code in src/ethereum_test_base_types/composite_types.py
94 95 96 97 98 99 100 101 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
103 104 105 106 107 108 109 110 111 112 113 |
|
__contains__(key)
¶
Check for an item in the storage.
Source code in src/ethereum_test_base_types/composite_types.py
115 116 117 |
|
__getitem__(key)
¶
Return an item from the storage.
Source code in src/ethereum_test_base_types/composite_types.py
119 120 121 122 123 |
|
__setitem__(key, value)
¶
Set an item in the storage.
Source code in src/ethereum_test_base_types/composite_types.py
125 126 127 128 129 130 131 132 133 |
|
__delitem__(key)
¶
Delete an item from the storage.
Source code in src/ethereum_test_base_types/composite_types.py
135 136 137 |
|
__iter__()
¶
Return an iterator over the storage.
Source code in src/ethereum_test_base_types/composite_types.py
139 140 141 |
|
__eq__(other)
¶
Return True if both storages are equal.
Source code in src/ethereum_test_base_types/composite_types.py
143 144 145 146 147 |
|
__ne__(other)
¶
Return True if both storages are not equal.
Source code in src/ethereum_test_base_types/composite_types.py
149 150 151 152 153 |
|
__bool__()
¶
Return True if the storage is not empty.
Source code in src/ethereum_test_base_types/composite_types.py
155 156 157 |
|
__add__(other)
¶
Return a new storage that is the sum of two storages.
Source code in src/ethereum_test_base_types/composite_types.py
159 160 161 |
|
keys()
¶
Return the keys of the storage.
Source code in src/ethereum_test_base_types/composite_types.py
163 164 165 |
|
set_next_slot(slot)
¶
Set the next slot to be used by store_next
.
Source code in src/ethereum_test_base_types/composite_types.py
167 168 169 170 |
|
items()
¶
Return the items of the storage.
Source code in src/ethereum_test_base_types/composite_types.py
172 173 174 |
|
store_next(value, hint='')
¶
Store a value in the storage and returns the key where the value is stored.
Increments the key counter so the next time this function is called, the next key is used.
Source code in src/ethereum_test_base_types/composite_types.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
peek_slot()
¶
Peek the next slot that will be used by store_next
.
Source code in src/ethereum_test_base_types/composite_types.py
192 193 194 |
|
contains(other)
¶
Return True if self contains all keys with equal value as contained by second storage. Used for comparison with test expected post state and alloc returned by the transition tool.
Source code in src/ethereum_test_base_types/composite_types.py
196 197 198 199 200 201 202 203 204 205 206 207 208 |
|
must_contain(address, other)
¶
Succeeds only if self contains all keys with equal value as contained by second storage. Used for comparison with test expected post state and alloc returned by the transition tool. Raises detailed exception when a difference is found.
Source code in src/ethereum_test_base_types/composite_types.py
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
must_be_equal(address, other)
¶
Succeed only if "self" is equal to "other" storage.
Source code in src/ethereum_test_base_types/composite_types.py
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
|
canary()
¶
Return a canary storage filled with non-zero values where the current storage expects zero values, to guarantee that the test overwrites the storage.
Source code in src/ethereum_test_base_types/composite_types.py
268 269 270 271 272 273 |
|
to_bytes(input_bytes)
¶
Convert multiple types into bytes.
Source code in src/ethereum_test_base_types/conversions.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|
to_hex(input_bytes)
¶
Convert multiple types into a bytes hex string.
Source code in src/ethereum_test_base_types/conversions.py
87 88 89 |
|
to_json(input_model)
¶
Convert a model to its json data representation.
Source code in src/ethereum_test_base_types/json.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
CamelModel
¶
Bases: CopyValidateModel
A base model that converts field names to camel case when serializing.
For example, the field name current_timestamp
in a Python model will be represented
as currentTimestamp
when it is serialized to json.
Source code in src/ethereum_test_base_types/pydantic.py
35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
EthereumTestBaseModel
¶
Bases: BaseModel
, ModelCustomizationsMixin
Base model for all models for Ethereum tests.
Source code in src/ethereum_test_base_types/pydantic.py
15 16 17 18 |
|
EthereumTestRootModel
¶
Bases: RootModel[RootModelRootType]
, ModelCustomizationsMixin
Base model for all models for Ethereum tests.
Source code in src/ethereum_test_base_types/pydantic.py
21 22 23 24 |
|
ReferenceSpec
¶
Reference Specification Description Abstract Class.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
|
name()
abstractmethod
¶
Return the name of the spec.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
32 33 34 35 |
|
has_known_version()
abstractmethod
¶
Return true if the reference spec object is hard-coded with a latest known version.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
37 38 39 40 |
|
known_version()
abstractmethod
¶
Return the latest known version in the reference.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
42 43 44 45 |
|
api_url()
abstractmethod
¶
Return the URL required to poll the version from an API, if needed.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
47 48 49 50 |
|
latest_version()
abstractmethod
¶
Return a digest that points to the latest version of the spec.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
52 53 54 55 |
|
is_outdated()
abstractmethod
¶
Check whether the reference specification has been updated since the test was last updated.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
57 58 59 60 61 62 63 |
|
write_info(info)
abstractmethod
¶
Write info about the reference specification used into the output fixture.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
65 66 67 68 |
|
parseable_from_module(module_dict)
abstractmethod
staticmethod
¶
Check whether the module's dict contains required reference spec information.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
70 71 72 73 74 |
|
parse_from_module(module_dict)
abstractmethod
staticmethod
¶
Parse the module's dict into a reference spec.
Source code in src/ethereum_test_base_types/reference_spec/reference_spec.py
76 77 78 79 80 |
|