encodeMultichainAddrCall static method

Uint8List encodeMultichainAddrCall(
  1. Uint8List node,
  2. int coinType
)

Implementation

static Uint8List encodeMultichainAddrCall(Uint8List node, int coinType) {
  return SolCodec.encodeCall(
    'addr(bytes32,uint256)',
    [SolFixedBytes(32), SolUint(256)],
    [node, BigInt.from(coinType)],
  );
}