// Access methods with global variable 'polybase'const auth = new polybase_auth.Auth()// Show the user the login modalconst state = await auth.signIn()
// Access methods with global variable 'polybase_eth'const data = 'Some data to be encrypted'const address = '0xADDRESS_TO_ENCRYPT_WITH'const encryptedData = polybase_eth.encrypt(data, address)
//Access methods with the global variable 'polybase_util'const encodedString = '0xSOME_ENCODED_DATA'const data = polybase_util.decodeFromString(encodedString, 'hex')