DeepBookClient constructor
Implementation
DeepBookClient({
SuiClient? client,
String? accountCap,
String? currentAddress
}) {
suiClient = client ?? SuiClient(Constants.testnetAPI);
_accountCap = accountCap;
this.currentAddress = currentAddress ?? DUMMY_ADDRESS;
}