Please check out our Tutorial.
Yes, the embeddings are ordered by frequencies.
In FastText models, you can obtain the frequencies of the words by using the following code:
import fasttext
model = fasttext.load_model("your_embedding_model.bin")
palabras, frecuencias = model.get_words(include_freq=True)
Please feel free to create a new Issue with your doubts or thoughts.