60c95659a0
* Add method for sending tx to wallet * Setup registry-sdk in onboarding app * Build message for bond creation * Get response on signing and broadcasting tx * Run eject script * Display snackbar on creating bond * Add fallback to webpack config file * Handle review changes * Handle errors with snackbar
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
const { createHash } = require('crypto');
|
|
|
|
module.exports = env => {
|
|
const hash = createHash('md5');
|
|
hash.update(JSON.stringify(env));
|
|
|
|
return hash.digest('hex');
|
|
};
|