anyone know how to pass string array to constructor?
May 20, 2020, 2:45 PM
  only can pass int array
 May 20, 2020, 4:38 PM
  https://stackoverflow.com/questions/42716858/string-array-in-solidity#42933492
 May 20, 2020, 4:42 PM
  but the problem is that when i pass the string of array it will still error
 it says that wrong pass arguement
 May 20, 2020, 5:08 PM
  Is because string arrays cannot be passed like argument to functions
 A string array is interpreted by solid like a byte[][]
 And Solidity functions does not support matrix
 May 20, 2020, 5:14 PM
  