Economic API gets and uses new currency

Hello,
Can’t the economylite API use multiple currencies at the same time?
If I can use multiple currencies at the same time, how can I get the newly created currency types?

Not sure if the EcoLite plugin supports multiple currenies however you can get all currency types in the EcoService built directly into Sponge.

As for “newly” you can listen to the EconomyTransactionEvent and get the currency used in that transaction

clan {
“.plural”=Clans
“.singular”=Clan
“.symbol”=Cl
}
coin {
plural=Coins
singular=Coin
symbol=C
}
current=coin

I’ve created a new currency called clan,
Currency changes are required,
Am I right to do this next?

All looks correct

Unfortunately, the economylite plug-in should not support using multiple currencies at the same time.
I only get the default currency in set < currency >.

The implementation suggests otherwise. But i am only looking at the EconomyService implementation

Edit:
Just looked at the loading of another currency and its all there to load another currency and store it in that list.

I’m sorry!
I found that the configuration file generated by the economic plug-in instruction was wrong, resulting in the currency not being registered.
Now it works very well!
But thank you for your kind help!