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
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 |
|
__new__(input_bytes, *args, label=None, **kwargs)
¶
Create a new Address object with an optional label.
Source code in src/ethereum_test_base_types/base_types.py
364 365 366 367 368 369 370 371 372 373 374 375 376 377 |
|
Bloom
¶
Bases: FixedSizeBytes[256]
Class that helps represent blooms in tests.
Source code in src/ethereum_test_base_types/base_types.py
386 387 388 389 |
|
BLSPublicKey
¶
Bases: FixedSizeBytes[48]
Class that helps represent BLS public keys in tests.
Source code in src/ethereum_test_base_types/base_types.py
398 399 400 401 |
|
BLSSignature
¶
Bases: FixedSizeBytes[96]
Class that helps represent BLS signatures in tests.
Source code in src/ethereum_test_base_types/base_types.py
404 405 406 407 |
|
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
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 |
|
__new__(input_bytes=b'')
¶
Create a new Bytes object.
Source code in src/ethereum_test_base_types/base_types.py
164 165 166 167 168 |
|
__hash__()
¶
Return the hash of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
170 171 172 |
|
__str__()
¶
Return the hexadecimal representation of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
174 175 176 |
|
hex(*args, **kwargs)
¶
Return the hexadecimal representation of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
178 179 180 |
|
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
182 183 184 185 186 187 |
|
keccak256()
¶
Return the keccak256 hash of the opcode byte representation.
Source code in src/ethereum_test_base_types/base_types.py
189 190 191 192 |
|
sha256()
¶
Return the sha256 hash of the opcode byte representation.
Source code in src/ethereum_test_base_types/base_types.py
194 195 196 |
|
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in src/ethereum_test_base_types/base_types.py
198 199 200 201 202 203 204 205 206 207 208 209 |
|
FixedSizeBytes
¶
Bases: Bytes
Class that helps represent bytes of fixed length in tests.
Source code in src/ethereum_test_base_types/base_types.py
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 |
|
__class_getitem__(length)
¶
Create a new FixedSizeBytes class with the given length.
Source code in src/ethereum_test_base_types/base_types.py
288 289 290 291 292 293 294 295 |
|
__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
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
|
__hash__()
¶
Return the hash of the bytes.
Source code in src/ethereum_test_base_types/base_types.py
317 318 319 |
|
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
321 322 323 324 325 326 |
|
__eq__(other)
¶
Compare two FixedSizeBytes objects to be equal.
Source code in src/ethereum_test_base_types/base_types.py
328 329 330 331 332 333 334 335 336 337 338 339 340 |
|
__ne__(other)
¶
Compare two FixedSizeBytes objects to be not equal.
Source code in src/ethereum_test_base_types/base_types.py
342 343 344 |
|
__get_pydantic_core_schema__(source_type, handler)
classmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in src/ethereum_test_base_types/base_types.py
346 347 348 349 350 351 352 353 354 355 356 |
|
Hash
¶
Bases: FixedSizeBytes[32]
Class that helps represent hashes in tests.
Source code in src/ethereum_test_base_types/base_types.py
380 381 382 383 |
|
HashInt
¶
Bases: FixedSizeHexNumber[32]
Class that helps represent hashes in tests.
Source code in src/ethereum_test_base_types/base_types.py
273 274 275 276 |
|
HeaderNonce
¶
Bases: FixedSizeBytes[8]
Class that helps represent the header nonce in tests.
Source code in src/ethereum_test_base_types/base_types.py
392 393 394 395 |
|
HexNumber
¶
Bases: Number
Class that helps represent an hexadecimal numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
|
__str__()
¶
Return the string representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
114 115 116 |
|
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in src/ethereum_test_base_types/base_types.py
118 119 120 121 122 123 124 125 126 127 128 129 |
|
Number
¶
Bases: int
, ToStringSchema
Class that helps represent numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|
__new__(input_number)
¶
Create a new Number object.
Source code in src/ethereum_test_base_types/base_types.py
47 48 49 |
|
__str__()
¶
Return the string representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
51 52 53 |
|
hex()
¶
Return the hexadecimal representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
55 56 57 |
|
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
59 60 61 62 63 64 |
|
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
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 |
|
__new__(input_number)
¶
Create a new Number object.
Source code in src/ethereum_test_base_types/base_types.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
ZeroPaddedHexNumber
¶
Bases: HexNumber
Class that helps represent zero padded hexadecimal numbers in tests.
Source code in src/ethereum_test_base_types/base_types.py
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
hex()
¶
Return the hexadecimal representation of the number.
Source code in src/ethereum_test_base_types/base_types.py
135 136 137 138 139 140 141 142 |
|
__get_pydantic_core_schema__(source_type, handler)
staticmethod
¶
Call the class constructor without info and appends the serialization schema.
Source code in src/ethereum_test_base_types/base_types.py
144 145 146 147 148 149 150 151 152 153 154 155 |
|
AccessList
¶
Bases: CamelModel
, RLPSerializable
Access List for transactions.
Source code in src/ethereum_test_base_types/composite_types.py
472 473 474 475 476 477 478 |
|
Account
¶
Bases: CamelModel
State associated with an address.
Source code in src/ethereum_test_base_types/composite_types.py
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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
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
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 |
|
__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
331 332 333 334 335 336 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
338 339 340 341 342 343 344 345 346 |
|
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
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 |
|
__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
359 360 361 362 363 364 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
366 367 368 369 370 371 372 373 374 |
|
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
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 |
|
__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
387 388 389 390 391 392 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
394 395 396 397 398 399 400 401 402 |
|
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
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 |
|
__bool__()
¶
Return True on a non-empty account.
Source code in src/ethereum_test_base_types/composite_types.py
436 437 438 |
|
with_code(code)
classmethod
¶
Create account with provided code
and nonce of 1
.
Source code in src/ethereum_test_base_types/composite_types.py
440 441 442 443 |
|
merge(account_1, account_2)
classmethod
¶
Create a merged account from two sources.
Source code in src/ethereum_test_base_types/composite_types.py
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
|
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
466 467 468 469 |
|
BlobSchedule
¶
Bases: EthereumTestRootModel[Dict[str, ForkBlobSchedule]]
Blob schedule configuration dictionary.
Source code in src/ethereum_test_base_types/composite_types.py
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
|
append(*, fork, schedule)
¶
Append a new fork schedule.
Source code in src/ethereum_test_base_types/composite_types.py
494 495 496 497 498 |
|
last()
¶
Return the last schedule.
Source code in src/ethereum_test_base_types/composite_types.py
500 501 502 503 504 |
|
ForkBlobSchedule
¶
Bases: CamelModel
Representation of the blob schedule of a given fork.
Source code in src/ethereum_test_base_types/composite_types.py
481 482 483 484 485 486 |
|
Storage
¶
Bases: EthereumTestRootModel[Dict[StorageKeyValueType, StorageKeyValueType]]
Definition of contract storage in the pre
or post
state of a test.
This model accepts a dictionary with keys and values as any of: str, int,
bytes, or any type that supports conversion to bytes, and automatically
casts them to HashInt
.
Source code in src/ethereum_test_base_types/composite_types.py
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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 |
|
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
42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid type.
Source code in src/ethereum_test_base_types/composite_types.py
48 49 50 51 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
53 54 55 |
|
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
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
__init__(key_or_value, *args)
¶
Initialize the exception with the invalid value.
Source code in src/ethereum_test_base_types/composite_types.py
66 67 68 69 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
71 72 73 |
|
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
75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
|
__init__(key, *args)
¶
Initialize the exception with the missing key.
Source code in src/ethereum_test_base_types/composite_types.py
81 82 83 84 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
86 87 88 |
|
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
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 |
|
__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
103 104 105 106 107 108 109 110 |
|
__str__()
¶
Print exception string.
Source code in src/ethereum_test_base_types/composite_types.py
112 113 114 115 116 117 118 119 120 121 122 |
|
__contains__(key)
¶
Check for an item in the storage.
Source code in src/ethereum_test_base_types/composite_types.py
124 125 126 |
|
__getitem__(key)
¶
Return an item from the storage.
Source code in src/ethereum_test_base_types/composite_types.py
128 129 130 131 132 |
|
__setitem__(key, value)
¶
Set an item in the storage.
Source code in src/ethereum_test_base_types/composite_types.py
134 135 136 137 138 139 140 141 142 |
|
__delitem__(key)
¶
Delete an item from the storage.
Source code in src/ethereum_test_base_types/composite_types.py
144 145 146 |
|
__iter__()
¶
Return an iterator over the storage.
Source code in src/ethereum_test_base_types/composite_types.py
148 149 150 |
|
__eq__(other)
¶
Return True if both storages are equal.
Source code in src/ethereum_test_base_types/composite_types.py
152 153 154 155 156 |
|
__ne__(other)
¶
Return True if both storages are not equal.
Source code in src/ethereum_test_base_types/composite_types.py
158 159 160 161 162 |
|
__bool__()
¶
Return True if the storage is not empty.
Source code in src/ethereum_test_base_types/composite_types.py
164 165 166 |
|
__add__(other)
¶
Return a new storage that is the sum of two storages.
Source code in src/ethereum_test_base_types/composite_types.py
168 169 170 |
|
keys()
¶
Return the keys of the storage.
Source code in src/ethereum_test_base_types/composite_types.py
172 173 174 |
|
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
176 177 178 179 |
|
items()
¶
Return the items of the storage.
Source code in src/ethereum_test_base_types/composite_types.py
181 182 183 |
|
set_expect_any(key)
¶
Mark key to be able to have any expected value when comparing storages.
Source code in src/ethereum_test_base_types/composite_types.py
185 186 187 |
|
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
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
|
peek_slot()
¶
Peek the next slot that will be used by store_next
.
Source code in src/ethereum_test_base_types/composite_types.py
205 206 207 |
|
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
209 210 211 212 213 214 215 216 217 218 219 220 221 |
|
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
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
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
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 |
|
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
284 285 286 287 288 289 |
|
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 |
|
RLPSerializable
¶
Class that adds RLP serialization to another class.
Source code in src/ethereum_test_base_types/serialization.py
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 |
|
get_rlp_fields()
¶
Return an ordered list of field names to be included in RLP serialization.
Function can be overridden to customize the logic to return the fields.
By default, rlp_fields class variable is used.
The list can be nested list up to one extra level to represent nested fields.
Source code in src/ethereum_test_base_types/serialization.py
37 38 39 40 41 42 43 44 45 46 47 |
|
get_rlp_signing_fields()
¶
Return an ordered list of field names to be included in the RLP serialization of the object signature.
Function can be overridden to customize the logic to return the fields.
By default, rlp_signing_fields class variable is used.
The list can be nested list up to one extra level to represent nested fields.
Source code in src/ethereum_test_base_types/serialization.py
49 50 51 52 53 54 55 56 57 58 59 60 |
|
get_rlp_prefix()
¶
Return a prefix that has to be appended to the serialized object.
By default, an empty string is returned.
Source code in src/ethereum_test_base_types/serialization.py
62 63 64 65 66 67 68 |
|
get_rlp_signing_prefix()
¶
Return a prefix that has to be appended to the serialized signing object.
By default, an empty string is returned.
Source code in src/ethereum_test_base_types/serialization.py
70 71 72 73 74 75 76 |
|
sign()
¶
Sign the current object for further serialization.
Source code in src/ethereum_test_base_types/serialization.py
78 79 80 |
|
to_list_from_fields(fields)
¶
Return an RLP serializable list that can be passed to eth_rlp.encode
.
Can be for signing purposes or the entire object.
Source code in src/ethereum_test_base_types/serialization.py
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
to_list(signing=False)
¶
Return an RLP serializable list that can be passed to eth_rlp.encode
.
Can be for signing purposes or the entire object.
Source code in src/ethereum_test_base_types/serialization.py
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
rlp_signing_bytes()
¶
Return the signing serialized envelope used for signing.
Source code in src/ethereum_test_base_types/serialization.py
127 128 129 |
|
rlp()
¶
Return the serialized object.
Source code in src/ethereum_test_base_types/serialization.py
131 132 133 134 135 |
|
SignableRLPSerializable
¶
Bases: RLPSerializable
Class that adds RLP serialization to another class with signing support.
Source code in src/ethereum_test_base_types/serialization.py
138 139 140 141 142 143 144 145 |
|
sign()
¶
Sign the current object for further serialization.
Source code in src/ethereum_test_base_types/serialization.py
143 144 145 |
|