/user-addrs/multichain
chain
, the count
of addresses to generate, and optionally, the type
of address, which is relevant for certain chains.chain
: Specifies the blockchain type for which the address(es) will be generated. Supported values are 'BITCOIN', 'ETHEREUM', 'LITECOIN', 'TRON', 'ARBITRUM_ONE' and 'OPTIMISM'.count
: Indicates the number of addresses to generate. The value must be an integer between 1 and 10.type
(optional): Specifies the type of address to generate. For BITCOIN
, the valid types are DEFAULT
and P2WPKH
. For all other chains, the only valid type is DEFAULT
. This field defaults to DEFAULT
if not provided.BITCOIN
, both DEFAULT
(which generates a P2TR
type address) and P2WPKH
are valid values for the type
field.BITCOIN
, the type
must be DEFAULT
.type
field is validated based on the chain specified:BITCOIN
is selected, type
can be either DEFAULT
or P2WPKH
.ETHEREUM
and OPTIMISM
, only DEFAULT
is acceptable.count
must be a positive integer and should not exceed 10 to prevent excessive load and potential misuse of the service.