aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/contract-namer.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/lib/contract-namer.js')
-rw-r--r--ui/lib/contract-namer.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/ui/lib/contract-namer.js b/ui/lib/contract-namer.js
new file mode 100644
index 000000000..eae066ad5
--- /dev/null
+++ b/ui/lib/contract-namer.js
@@ -0,0 +1,17 @@
+/* CONTRACT NAMER
+ *
+ * Takes an address,
+ * Returns a nicname if we have one stored,
+ * otherwise returns null.
+ */
+
+const nicknames = {}
+
+module.exports = function(address) {
+
+ if (address in nicknames) {
+ return nicknames[address]
+ }
+
+ return null
+}