Source code for agora.client.environment

from enum import Enum


[docs]class Environment(Enum): """An Agora Environment. """ # Interacts with the production Kin blockchain. PRODUCTION = 1 # Interacts with the test Kin blockchain. TEST = 2