evmos.proto.autogen.py.cosmos.crypto.secp256k1

Classes

PrivKey(key)

PrivKey defines a secp256k1 private key.

PubKey(key)

PubKey defines a secp256k1 public key Key is the compressed form of the pubkey.

class evmos.proto.autogen.py.cosmos.crypto.secp256k1.PrivKey(key: bytes = <object object>)[source]

Bases: Message

PrivKey defines a secp256k1 private key.

key: bytes = <object object>
class evmos.proto.autogen.py.cosmos.crypto.secp256k1.PubKey(key: bytes = <object object>)[source]

Bases: Message

PubKey defines a secp256k1 public key Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte if the y-coordinate is the lexicographically largest of the two associated with the x-coordinate. Otherwise the first byte is a 0x03. This prefix is followed with the x-coordinate.

key: bytes = <object object>