Skip to content

Commit

Permalink
Use uint64 for block number (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
37ng authored Apr 15, 2024
1 parent a109bab commit f2a444c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions proto/identity/associations/signature.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ message Erc1271Signature {
// CAIP-10 contract address
// https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-10.md
string contract_address = 1;
// Specify the block height to verify the signature against
int64 block_height = 2;
// Specify the block number to verify the signature against
uint64 block_number = 2;
// The actual signature bytes
bytes signature = 3;
}

// An existing address on xmtpv2 may have already signed a legacy identity key
// of type SignedPublicKey via the 'Create Identity' signature.
// For migration to xmtpv3, the legacy key is permitted to sign on behalf of the
// For migration to xmtpv3, the legacy key is permitted to sign on behalf of the
// address to create a matching xmtpv3 installation key.
// This signature type can ONLY be used for CreateXid and AddAssociation
// payloads, and can only be used once in xmtpv3.
Expand Down

0 comments on commit f2a444c

Please sign in to comment.