Skip to content

RequestIdLibrary

Functions

from

Creates a RequestId from a client address and a 32-bit index.

function from(address client1, uint32 id) internal pure returns (RequestId);
Parameters
NameTypeDescription
client1addressThe address of the client.
iduint32The 32-bit index.
Returns
NameTypeDescription
<none>RequestIdThe constructed RequestId.

clientAndIndex

Extracts the client address and index from a RequestId.

function clientAndIndex(RequestId id) internal pure returns (address, uint32);
Parameters
NameTypeDescription
idRequestIdThe RequestId to extract from.
Returns
NameTypeDescription
<none>addressThe client address and the 32-bit index.
<none>uint32