@argent/x-shared 1.48.3 â 1.49.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +457 -455
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/_md.cjs +1 -0
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/_md.js +64 -0
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.cjs +1 -0
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.js +115 -0
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/utils.cjs +1 -1
- package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/utils.js +12 -10
- package/dist/src/accountNameGenerator/colors.cjs +1 -0
- package/dist/src/accountNameGenerator/colors.d.ts +2 -0
- package/dist/src/accountNameGenerator/colors.js +25 -0
- package/dist/src/accountNameGenerator/index.cjs +1 -0
- package/dist/src/accountNameGenerator/index.d.ts +9 -0
- package/dist/src/accountNameGenerator/index.js +24 -0
- package/dist/src/accountNameGenerator/types.d.ts +18 -0
- package/dist/src/accountNameGenerator/x-names.json.cjs +1 -0
- package/dist/src/accountNameGenerator/x-names.json.js +1926 -0
- package/dist/src/features/simulation/activity/schema.d.ts +78 -78
- package/dist/src/index.d.ts +1 -0
- package/dist/src/staking/schema.cjs +1 -1
- package/dist/src/staking/schema.d.ts +4 -4
- package/dist/src/staking/schema.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const p=require("./_assert.cjs"),u=require("./utils.cjs");function a(o,t,s,i){if(typeof o.setBigUint64=="function")return o.setBigUint64(t,s,i);const n=BigInt(32),h=BigInt(4294967295),e=Number(s>>n&h),r=Number(s&h),c=i?4:0,l=i?0:4;o.setUint32(t+c,e,i),o.setUint32(t+l,r,i)}const d=(o,t,s)=>o&t^~o&s,b=(o,t,s)=>o&t^o&s^t&s;class w extends u.Hash{constructor(t,s,i,n){super(),this.blockLen=t,this.outputLen=s,this.padOffset=i,this.isLE=n,this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.buffer=new Uint8Array(t),this.view=u.createView(this.buffer)}update(t){p.exists(this);const{view:s,buffer:i,blockLen:n}=this;t=u.toBytes(t);const h=t.length;for(let e=0;e<h;){const r=Math.min(n-this.pos,h-e);if(r===n){const c=u.createView(t);for(;n<=h-e;e+=n)this.process(c,e);continue}i.set(t.subarray(e,e+r),this.pos),this.pos+=r,e+=r,this.pos===n&&(this.process(s,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){p.exists(this),p.output(t,this),this.finished=!0;const{buffer:s,view:i,blockLen:n,isLE:h}=this;let{pos:e}=this;s[e++]=128,this.buffer.subarray(e).fill(0),this.padOffset>n-e&&(this.process(i,0),e=0);for(let f=e;f<n;f++)s[f]=0;a(i,n-8,BigInt(this.length*8),h),this.process(i,0);const r=u.createView(t),c=this.outputLen;if(c%4)throw new Error("_sha2: outputLen should be aligned to 32bit");const l=c/4,g=this.get();if(l>g.length)throw new Error("_sha2: outputLen bigger than state");for(let f=0;f<l;f++)r.setUint32(4*f,g[f],h)}digest(){const{buffer:t,outputLen:s}=this;this.digestInto(t);const i=t.slice(0,s);return this.destroy(),i}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());const{blockLen:s,buffer:i,length:n,finished:h,destroyed:e,pos:r}=this;return t.length=n,t.pos=r,t.finished=h,t.destroyed=e,n%s&&t.buffer.set(i),t}}exports.Chi=d;exports.HashMD=w;exports.Maj=b;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { exists as g, output as d } from "./_assert.js";
|
|
2
|
+
import { Hash as b, createView as p, toBytes as a } from "./utils.js";
|
|
3
|
+
function w(o, t, s, i) {
|
|
4
|
+
if (typeof o.setBigUint64 == "function")
|
|
5
|
+
return o.setBigUint64(t, s, i);
|
|
6
|
+
const n = BigInt(32), h = BigInt(4294967295), e = Number(s >> n & h), r = Number(s & h), c = i ? 4 : 0, u = i ? 0 : 4;
|
|
7
|
+
o.setUint32(t + c, e, i), o.setUint32(t + u, r, i);
|
|
8
|
+
}
|
|
9
|
+
const B = (o, t, s) => o & t ^ ~o & s, L = (o, t, s) => o & t ^ o & s ^ t & s;
|
|
10
|
+
class U extends b {
|
|
11
|
+
constructor(t, s, i, n) {
|
|
12
|
+
super(), this.blockLen = t, this.outputLen = s, this.padOffset = i, this.isLE = n, this.finished = !1, this.length = 0, this.pos = 0, this.destroyed = !1, this.buffer = new Uint8Array(t), this.view = p(this.buffer);
|
|
13
|
+
}
|
|
14
|
+
update(t) {
|
|
15
|
+
g(this);
|
|
16
|
+
const { view: s, buffer: i, blockLen: n } = this;
|
|
17
|
+
t = a(t);
|
|
18
|
+
const h = t.length;
|
|
19
|
+
for (let e = 0; e < h; ) {
|
|
20
|
+
const r = Math.min(n - this.pos, h - e);
|
|
21
|
+
if (r === n) {
|
|
22
|
+
const c = p(t);
|
|
23
|
+
for (; n <= h - e; e += n)
|
|
24
|
+
this.process(c, e);
|
|
25
|
+
continue;
|
|
26
|
+
}
|
|
27
|
+
i.set(t.subarray(e, e + r), this.pos), this.pos += r, e += r, this.pos === n && (this.process(s, 0), this.pos = 0);
|
|
28
|
+
}
|
|
29
|
+
return this.length += t.length, this.roundClean(), this;
|
|
30
|
+
}
|
|
31
|
+
digestInto(t) {
|
|
32
|
+
g(this), d(t, this), this.finished = !0;
|
|
33
|
+
const { buffer: s, view: i, blockLen: n, isLE: h } = this;
|
|
34
|
+
let { pos: e } = this;
|
|
35
|
+
s[e++] = 128, this.buffer.subarray(e).fill(0), this.padOffset > n - e && (this.process(i, 0), e = 0);
|
|
36
|
+
for (let f = e; f < n; f++)
|
|
37
|
+
s[f] = 0;
|
|
38
|
+
w(i, n - 8, BigInt(this.length * 8), h), this.process(i, 0);
|
|
39
|
+
const r = p(t), c = this.outputLen;
|
|
40
|
+
if (c % 4)
|
|
41
|
+
throw new Error("_sha2: outputLen should be aligned to 32bit");
|
|
42
|
+
const u = c / 4, l = this.get();
|
|
43
|
+
if (u > l.length)
|
|
44
|
+
throw new Error("_sha2: outputLen bigger than state");
|
|
45
|
+
for (let f = 0; f < u; f++)
|
|
46
|
+
r.setUint32(4 * f, l[f], h);
|
|
47
|
+
}
|
|
48
|
+
digest() {
|
|
49
|
+
const { buffer: t, outputLen: s } = this;
|
|
50
|
+
this.digestInto(t);
|
|
51
|
+
const i = t.slice(0, s);
|
|
52
|
+
return this.destroy(), i;
|
|
53
|
+
}
|
|
54
|
+
_cloneInto(t) {
|
|
55
|
+
t || (t = new this.constructor()), t.set(...this.get());
|
|
56
|
+
const { blockLen: s, buffer: i, length: n, finished: h, destroyed: e, pos: r } = this;
|
|
57
|
+
return t.length = n, t.pos = r, t.finished = h, t.destroyed = e, n % s && t.buffer.set(i), t;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
export {
|
|
61
|
+
B as Chi,
|
|
62
|
+
U as HashMD,
|
|
63
|
+
L as Maj
|
|
64
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const H=require("./_md.cjs"),s=require("./utils.cjs"),S=new Uint32Array([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),b=new Uint32Array([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]),f=new Uint32Array(64);class g extends H.HashMD{constructor(){super(64,32,8,!1),this.A=b[0]|0,this.B=b[1]|0,this.C=b[2]|0,this.D=b[3]|0,this.E=b[4]|0,this.F=b[5]|0,this.G=b[6]|0,this.H=b[7]|0}get(){const{A:d,B:o,C:x,D:e,E:a,F:i,G:c,H:r}=this;return[d,o,x,e,a,i,c,r]}set(d,o,x,e,a,i,c,r){this.A=d|0,this.B=o|0,this.C=x|0,this.D=e|0,this.E=a|0,this.F=i|0,this.G=c|0,this.H=r|0}process(d,o){for(let t=0;t<16;t++,o+=4)f[t]=d.getUint32(o,!1);for(let t=16;t<64;t++){const A=f[t-15],n=f[t-2],C=s.rotr(A,7)^s.rotr(A,18)^A>>>3,u=s.rotr(n,17)^s.rotr(n,19)^n>>>10;f[t]=u+f[t-7]+C+f[t-16]|0}let{A:x,B:e,C:a,D:i,E:c,F:r,G:h,H:l}=this;for(let t=0;t<64;t++){const A=s.rotr(c,6)^s.rotr(c,11)^s.rotr(c,25),n=l+A+H.Chi(c,r,h)+S[t]+f[t]|0,u=(s.rotr(x,2)^s.rotr(x,13)^s.rotr(x,22))+H.Maj(x,e,a)|0;l=h,h=r,r=c,c=i+n|0,i=a,a=e,e=x,x=n+u|0}x=x+this.A|0,e=e+this.B|0,a=a+this.C|0,i=i+this.D|0,c=c+this.E|0,r=r+this.F|0,h=h+this.G|0,l=l+this.H|0,this.set(x,e,a,i,c,r,h,l)}roundClean(){f.fill(0)}destroy(){this.set(0,0,0,0,0,0,0,0),this.buffer.fill(0)}}const y=s.wrapConstructor(()=>new g);exports.SHA256=g;exports.sha256=y;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { HashMD as m, Chi as p, Maj as u } from "./_md.js";
|
|
2
|
+
import { wrapConstructor as D, rotr as i } from "./utils.js";
|
|
3
|
+
const g = /* @__PURE__ */ new Uint32Array([
|
|
4
|
+
1116352408,
|
|
5
|
+
1899447441,
|
|
6
|
+
3049323471,
|
|
7
|
+
3921009573,
|
|
8
|
+
961987163,
|
|
9
|
+
1508970993,
|
|
10
|
+
2453635748,
|
|
11
|
+
2870763221,
|
|
12
|
+
3624381080,
|
|
13
|
+
310598401,
|
|
14
|
+
607225278,
|
|
15
|
+
1426881987,
|
|
16
|
+
1925078388,
|
|
17
|
+
2162078206,
|
|
18
|
+
2614888103,
|
|
19
|
+
3248222580,
|
|
20
|
+
3835390401,
|
|
21
|
+
4022224774,
|
|
22
|
+
264347078,
|
|
23
|
+
604807628,
|
|
24
|
+
770255983,
|
|
25
|
+
1249150122,
|
|
26
|
+
1555081692,
|
|
27
|
+
1996064986,
|
|
28
|
+
2554220882,
|
|
29
|
+
2821834349,
|
|
30
|
+
2952996808,
|
|
31
|
+
3210313671,
|
|
32
|
+
3336571891,
|
|
33
|
+
3584528711,
|
|
34
|
+
113926993,
|
|
35
|
+
338241895,
|
|
36
|
+
666307205,
|
|
37
|
+
773529912,
|
|
38
|
+
1294757372,
|
|
39
|
+
1396182291,
|
|
40
|
+
1695183700,
|
|
41
|
+
1986661051,
|
|
42
|
+
2177026350,
|
|
43
|
+
2456956037,
|
|
44
|
+
2730485921,
|
|
45
|
+
2820302411,
|
|
46
|
+
3259730800,
|
|
47
|
+
3345764771,
|
|
48
|
+
3516065817,
|
|
49
|
+
3600352804,
|
|
50
|
+
4094571909,
|
|
51
|
+
275423344,
|
|
52
|
+
430227734,
|
|
53
|
+
506948616,
|
|
54
|
+
659060556,
|
|
55
|
+
883997877,
|
|
56
|
+
958139571,
|
|
57
|
+
1322822218,
|
|
58
|
+
1537002063,
|
|
59
|
+
1747873779,
|
|
60
|
+
1955562222,
|
|
61
|
+
2024104815,
|
|
62
|
+
2227730452,
|
|
63
|
+
2361852424,
|
|
64
|
+
2428436474,
|
|
65
|
+
2756734187,
|
|
66
|
+
3204031479,
|
|
67
|
+
3329325298
|
|
68
|
+
]), b = /* @__PURE__ */ new Uint32Array([
|
|
69
|
+
1779033703,
|
|
70
|
+
3144134277,
|
|
71
|
+
1013904242,
|
|
72
|
+
2773480762,
|
|
73
|
+
1359893119,
|
|
74
|
+
2600822924,
|
|
75
|
+
528734635,
|
|
76
|
+
1541459225
|
|
77
|
+
]), h = /* @__PURE__ */ new Uint32Array(64);
|
|
78
|
+
class w extends m {
|
|
79
|
+
constructor() {
|
|
80
|
+
super(64, 32, 8, !1), this.A = b[0] | 0, this.B = b[1] | 0, this.C = b[2] | 0, this.D = b[3] | 0, this.E = b[4] | 0, this.F = b[5] | 0, this.G = b[6] | 0, this.H = b[7] | 0;
|
|
81
|
+
}
|
|
82
|
+
get() {
|
|
83
|
+
const { A: d, B: o, C: t, D: s, E: a, F: f, G: c, H: e } = this;
|
|
84
|
+
return [d, o, t, s, a, f, c, e];
|
|
85
|
+
}
|
|
86
|
+
// prettier-ignore
|
|
87
|
+
set(d, o, t, s, a, f, c, e) {
|
|
88
|
+
this.A = d | 0, this.B = o | 0, this.C = t | 0, this.D = s | 0, this.E = a | 0, this.F = f | 0, this.G = c | 0, this.H = e | 0;
|
|
89
|
+
}
|
|
90
|
+
process(d, o) {
|
|
91
|
+
for (let x = 0; x < 16; x++, o += 4)
|
|
92
|
+
h[x] = d.getUint32(o, !1);
|
|
93
|
+
for (let x = 16; x < 64; x++) {
|
|
94
|
+
const A = h[x - 15], n = h[x - 2], C = i(A, 7) ^ i(A, 18) ^ A >>> 3, H = i(n, 17) ^ i(n, 19) ^ n >>> 10;
|
|
95
|
+
h[x] = H + h[x - 7] + C + h[x - 16] | 0;
|
|
96
|
+
}
|
|
97
|
+
let { A: t, B: s, C: a, D: f, E: c, F: e, G: r, H: l } = this;
|
|
98
|
+
for (let x = 0; x < 64; x++) {
|
|
99
|
+
const A = i(c, 6) ^ i(c, 11) ^ i(c, 25), n = l + A + p(c, e, r) + g[x] + h[x] | 0, H = (i(t, 2) ^ i(t, 13) ^ i(t, 22)) + u(t, s, a) | 0;
|
|
100
|
+
l = r, r = e, e = c, c = f + n | 0, f = a, a = s, s = t, t = n + H | 0;
|
|
101
|
+
}
|
|
102
|
+
t = t + this.A | 0, s = s + this.B | 0, a = a + this.C | 0, f = f + this.D | 0, c = c + this.E | 0, e = e + this.F | 0, r = r + this.G | 0, l = l + this.H | 0, this.set(t, s, a, f, c, e, r, l);
|
|
103
|
+
}
|
|
104
|
+
roundClean() {
|
|
105
|
+
h.fill(0);
|
|
106
|
+
}
|
|
107
|
+
destroy() {
|
|
108
|
+
this.set(0, 0, 0, 0, 0, 0, 0, 0), this.buffer.fill(0);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
const G = /* @__PURE__ */ D(() => new w());
|
|
112
|
+
export {
|
|
113
|
+
w as SHA256,
|
|
114
|
+
G as sha256
|
|
115
|
+
};
|
package/dist/node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/utils.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./_assert.cjs");/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./_assert.cjs");/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */const u=t=>new Uint32Array(t.buffer,t.byteOffset,Math.floor(t.byteLength/4)),i=t=>new DataView(t.buffer,t.byteOffset,t.byteLength),y=(t,e)=>t<<32-e|t>>>e,b=new Uint8Array(new Uint32Array([287454020]).buffer)[0]===68,r=t=>t<<24&4278190080|t<<8&16711680|t>>>8&65280|t>>>24&255;function p(t){for(let e=0;e<t.length;e++)t[e]=r(t[e])}const l=Array.from({length:256},(t,e)=>e.toString(16).padStart(2,"0"));function g(t){o.bytes(t);let e="";for(let n=0;n<t.length;n++)e+=l[t[n]];return e}function f(t){if(typeof t!="string")throw new Error(`utf8ToBytes expected string, got ${typeof t}`);return new Uint8Array(new TextEncoder().encode(t))}function s(t){return typeof t=="string"&&(t=f(t)),o.bytes(t),t}class w{clone(){return this._cloneInto()}}function x(t){const e=c=>t().update(s(c)).digest(),n=t();return e.outputLen=n.outputLen,e.blockLen=n.blockLen,e.create=()=>t(),e}exports.Hash=w;exports.byteSwap=r;exports.byteSwap32=p;exports.bytesToHex=g;exports.createView=i;exports.isLE=b;exports.rotr=y;exports.toBytes=s;exports.u32=u;exports.utf8ToBytes=f;exports.wrapConstructor=x;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { bytes as o } from "./_assert.js";
|
|
2
2
|
/*! noble-hashes - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
3
|
-
const y = (t) => new Uint32Array(t.buffer, t.byteOffset, Math.floor(t.byteLength / 4)), p = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68, r = (t) => t << 24 & 4278190080 | t << 8 & 16711680 | t >>> 8 & 65280 | t >>> 24 & 255;
|
|
4
|
-
function
|
|
3
|
+
const y = (t) => new Uint32Array(t.buffer, t.byteOffset, Math.floor(t.byteLength / 4)), p = (t) => new DataView(t.buffer, t.byteOffset, t.byteLength), l = (t, e) => t << 32 - e | t >>> e, x = new Uint8Array(new Uint32Array([287454020]).buffer)[0] === 68, r = (t) => t << 24 & 4278190080 | t << 8 & 16711680 | t >>> 8 & 65280 | t >>> 24 & 255;
|
|
4
|
+
function b(t) {
|
|
5
5
|
for (let e = 0; e < t.length; e++)
|
|
6
6
|
t[e] = r(t[e]);
|
|
7
7
|
}
|
|
8
8
|
const c = /* @__PURE__ */ Array.from({ length: 256 }, (t, e) => e.toString(16).padStart(2, "0"));
|
|
9
|
-
function
|
|
9
|
+
function g(t) {
|
|
10
10
|
o(t);
|
|
11
11
|
let e = "";
|
|
12
12
|
for (let n = 0; n < t.length; n++)
|
|
@@ -21,24 +21,26 @@ function i(t) {
|
|
|
21
21
|
function u(t) {
|
|
22
22
|
return typeof t == "string" && (t = i(t)), o(t), t;
|
|
23
23
|
}
|
|
24
|
-
class
|
|
24
|
+
class w {
|
|
25
25
|
// Safe version that clones internal state
|
|
26
26
|
clone() {
|
|
27
27
|
return this._cloneInto();
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function
|
|
30
|
+
function h(t) {
|
|
31
31
|
const e = (f) => t().update(u(f)).digest(), n = t();
|
|
32
32
|
return e.outputLen = n.outputLen, e.blockLen = n.blockLen, e.create = () => t(), e;
|
|
33
33
|
}
|
|
34
34
|
export {
|
|
35
|
-
|
|
35
|
+
w as Hash,
|
|
36
36
|
r as byteSwap,
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
p as
|
|
37
|
+
b as byteSwap32,
|
|
38
|
+
g as bytesToHex,
|
|
39
|
+
p as createView,
|
|
40
|
+
x as isLE,
|
|
41
|
+
l as rotr,
|
|
40
42
|
u as toBytes,
|
|
41
43
|
y as u32,
|
|
42
44
|
i as utf8ToBytes,
|
|
43
|
-
|
|
45
|
+
h as wrapConstructor
|
|
44
46
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=[{token:"accent-sky-blue",hex:"#29C5FF"},{token:"accent-yellow",hex:"#FFBF3D"},{token:"accent-brand",hex:"#FF875B"},{token:"accent-green",hex:"#2CD3A9"},{token:"accent-hot-pink",hex:"#FF5B81"}];exports.nameDataColors=e;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
{
|
|
3
|
+
token: "accent-sky-blue",
|
|
4
|
+
hex: "#29C5FF"
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
token: "accent-yellow",
|
|
8
|
+
hex: "#FFBF3D"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
token: "accent-brand",
|
|
12
|
+
hex: "#FF875B"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
token: "accent-green",
|
|
16
|
+
hex: "#2CD3A9"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
token: "accent-hot-pink",
|
|
20
|
+
hex: "#FF5B81"
|
|
21
|
+
}
|
|
22
|
+
];
|
|
23
|
+
export {
|
|
24
|
+
e as nameDataColors
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("../../node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.cjs"),h=require("lodash-es"),d=require("./colors.cjs"),l=require("./x-names.json.cjs");class m{constructor(t,e){this.nameList=t||l.default,this.colorList=e||d.nameDataColors}generate(t){const e=this.hashSeed(t),n=e.getUint32(0)%this.nameList.items.length,s=this.nameList.items[n],o=e.getUint32(4)%s.adjectives.length,i=s.adjectives[o],r=e.getUint32(8)%this.colorList.length,c=this.colorList[r];return{name:`${h.upperFirst(i)} ${s.name}`,emoji:s.emoji,color:c}}hashSeed(t){const e=a.sha256(new TextEncoder().encode(t));return new DataView(e.buffer,e.byteOffset,e.byteLength)}}exports.AccountNameGenerator=m;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { GeneratedNameData, NameColor, NameDataList } from './types';
|
|
2
|
+
export declare class AccountNameGenerator {
|
|
3
|
+
nameList: NameDataList;
|
|
4
|
+
colorList: NameColor[];
|
|
5
|
+
constructor(nameList?: NameDataList, colorList?: NameColor[]);
|
|
6
|
+
generate(seed: string): GeneratedNameData;
|
|
7
|
+
private hashSeed;
|
|
8
|
+
}
|
|
9
|
+
export type * from './types';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { sha256 as c } from "../../node_modules/.pnpm/@noble_hashes@1.5.0/node_modules/@noble/hashes/esm/sha256.js";
|
|
2
|
+
import { upperFirst as m } from "lodash-es";
|
|
3
|
+
import { nameDataColors as h } from "./colors.js";
|
|
4
|
+
import d from "./x-names.json.js";
|
|
5
|
+
class j {
|
|
6
|
+
constructor(t, e) {
|
|
7
|
+
this.nameList = t || d, this.colorList = e || h;
|
|
8
|
+
}
|
|
9
|
+
generate(t) {
|
|
10
|
+
const e = this.hashSeed(t), s = e.getUint32(0) % this.nameList.items.length, o = this.nameList.items[s], n = e.getUint32(4) % o.adjectives.length, i = o.adjectives[n], r = e.getUint32(8) % this.colorList.length, a = this.colorList[r];
|
|
11
|
+
return {
|
|
12
|
+
name: `${m(i)} ${o.name}`,
|
|
13
|
+
emoji: o.emoji,
|
|
14
|
+
color: a
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
hashSeed(t) {
|
|
18
|
+
const e = c(new TextEncoder().encode(t));
|
|
19
|
+
return new DataView(e.buffer, e.byteOffset, e.byteLength);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
j as AccountNameGenerator
|
|
24
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface NameData {
|
|
2
|
+
emoji: string;
|
|
3
|
+
name: string;
|
|
4
|
+
adjectives: string[];
|
|
5
|
+
category: string;
|
|
6
|
+
}
|
|
7
|
+
export interface NameDataList {
|
|
8
|
+
items: NameData[];
|
|
9
|
+
}
|
|
10
|
+
export interface NameColor {
|
|
11
|
+
token: string;
|
|
12
|
+
hex: string;
|
|
13
|
+
}
|
|
14
|
+
export interface GeneratedNameData {
|
|
15
|
+
name: string;
|
|
16
|
+
emoji: string;
|
|
17
|
+
color: NameColor;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=[{emoji:"ðļ",name:"Blossom",category:"plants",adjectives:["Blissful","Black","Blanched","Blooming","Beloved","Benevolent"]},{emoji:"ðđ",name:"Rose",category:"plants",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðš",name:"Hibiscus",category:"plants",adjectives:["Happy","Heroic","Hardy","Heavenly","Humble","Hopeful","Healthy","Hearty"]},{emoji:"ðŧ",name:"Sunflower",category:"plants",adjectives:["Super","Surgical","Subatomic","Sublime","Subtle","Sumptuous","Sunny"]},{emoji:"ðž",name:"Daisy",category:"plants",adjectives:["Dapper","Droopy","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ð·",name:"Tulip",category:"plants",adjectives:["Tactical","Talented","Tactile","Tangible","Tenacious","Talismanic","Timely"]},{emoji:"ðŠŧ",name:"Hyacinth",category:"plants",adjectives:["Healthy","Hearty","Helpful","Heroic","Humble","Hilarious"]},{emoji:"ð",name:"Clover",category:"plants",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ð",name:"Leaf",category:"plants",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ð",name:"Mushroom",category:"plants",adjectives:["Magic","Monstrous","Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðŠĻ",name:"Rock",category:"plants",adjectives:["Robust","Real","Relative","Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŠĩ",name:"Log",category:"plants",adjectives:["Loopy","Large","Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ðŠ·",name:"Lotus",category:"plants",adjectives:["Loopy","Large","Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ðą",name:"Seedling",category:"plants",adjectives:["Stellar","Savvy","Sparing","Sensitive","Swift","Synergistic","Steady"]},{emoji:"ðē",name:"Pine",category:"plants",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðģ",name:"Oak",category:"plants",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"ðī",name:"Palm",category:"plants",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðĩ",name:"Cactus",category:"plants",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðĩ",name:"Monkey",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðķ",name:"Dog",category:"animals",adjectives:["Dapper","Droopy","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ðš",name:"Wolf",category:"animals",adjectives:["Wealthy","Wary","Wacky","Watchful","Wild","Witty","Wise"]},{emoji:"ðĶ",name:"Fox",category:"animals",adjectives:["Fabulous","Fantastic","Friendly","Faithful","Fortunate","Famous","Fungible"]},{emoji:"ðą",name:"Cat",category:"animals",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðĶ",name:"Lion",category:"animals",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ðŊ",name:"Tiger",category:"animals",adjectives:["Tactical","Talkative","Talismanic","Tough","Talented","Tasteful"]},{emoji:"ðī",name:"Horse",category:"animals",adjectives:["Healthy","Hearty","Helpful","Heroic","Humble","Hilarious"]},{emoji:"ðŦ",name:"Moose",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest"]},{emoji:"ðĶ",name:"Unicorn",category:"animals",adjectives:["Unique","United","Unionised","Universal","Unstoppable","Ubiquitous"]},{emoji:"ðŪ",name:"Cow",category:"animals",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ð·",name:"Pig",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ð",name:"Boar",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ð",name:"Mouse",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive"]},{emoji:"ð°",name:"Rabbit",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŧ",name:"Bear",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŧââïļ",name:"Polar Bear",category:"animals",adjectives:["Bubbly","Brilliant","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðĻ",name:"Koala",category:"animals",adjectives:["Keen","Kempt","Kinetic","Kind","Kilted","Kantian"]},{emoji:"ðž",name:"Panda",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ð",name:"Chicken",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðĪ",name:"Chick",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðĶ",name:"Bird",category:"animals",adjectives:["Bubbly","Burly","Balanced","Benevolent","Baffled","Bashful","Bemused"]},{emoji:"ð§",name:"Penguin",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Painted","Pampered","Panoramic","Paper","Party","Powerful","Prosperous","Prolific","Paradise","Profuse","Peaceful","Perfect"]},{emoji:"ðļ",name:"Frog",category:"animals",adjectives:["Frank","Fractional","Freaky","Freckly","Frizzy","Frosty","Fruitful"]},{emoji:"ðē",name:"Dragon",category:"animals",adjectives:["Draped","Dramatic","Drastic","Drafty","Defiant","Divine"]},{emoji:"ð",name:"Octopus",category:"animals",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"ðŠž",name:"Jellyfish",category:"animals",adjectives:["Jammy","Jaunty","Joyful","Just","Jeweled","Jagged","Jestful"]},{emoji:"ðĶ",name:"Crab",category:"animals",adjectives:["Crazy","Craggy","Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðĶ",name:"Butterfly",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ð",name:"Ant",category:"animals",adjectives:["Acrobatic","Actual","Adaptive","Adventurous","Admirable","Aerial","Affable","Affluent","Agile"]},{emoji:"ð",name:"Bee",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðŠē",name:"Beetle",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ð",name:"Ladybird",category:"animals",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ð",name:"Fish",category:"animals",adjectives:["Fluid","Flexible","Flashy","Flawless","Flowing","Free","Fresh"]},{emoji:"ðĄ",name:"Pufferfish",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal"]},{emoji:"ð",name:"Shell",category:"animals",adjectives:["Sharp","Super","Surgical","Shapely","Shimmering","Shiny","Shredded"]},{emoji:"ðĶ",name:"Shrimp",category:"animals",adjectives:["Sharp","Super","Surgical","Shapely","Shimmering","Shiny","Shredded"]},{emoji:"ð",name:"Monkey",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive"]},{emoji:"ðĶ",name:"Scorpion",category:"animals",adjectives:["Silent","Steady","Swift","Strong","Stealthy","Strategic","Skilled"]},{emoji:"ðĶ",name:"Turkey",category:"animals",adjectives:["Talented","Tactful","Tenacious","Thorough","Thoughtful","Thriving","Trusted"]},{emoji:"ðͧ",name:"Orangutan",category:"animals",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological"]},{emoji:"ð",name:"Mouse",category:"animals",adjectives:["Mental","Marvelous","Mindful","Magnificent","Masterful","Magnetic","Modest","Massive","Mighty"]},{emoji:"ð",name:"Rat",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ð",name:"Rabbit",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue"]},{emoji:"ðŋïļ",name:"Squirrel",category:"animals",adjectives:["Smart","Swift","Sneaky","Skilled","Spirited","Spontaneous","Spry"]},{emoji:"ðĶŦ",name:"Beaver",category:"animals",adjectives:["Busy","Bold","Bright","Brave","Beneficial","Boundless","Brilliant"]},{emoji:"ðĶ",name:"Hedgehog",category:"animals",adjectives:["Happy","Hasty","Helpful","Humble","Honest","Heroic","Harmonious"]},{emoji:"ðĶ",name:"Bat",category:"animals",adjectives:["Bubbly","Balanced","Benevolent","Baffled","Bashful","Bemused","Burly"]},{emoji:"ðĶĨ",name:"Sloth",category:"animals",adjectives:["Serene","Slow","Steady","Subtle","Smooth","Sleepy","Sweet"]},{emoji:"ðĶĶ",name:"Otter",category:"animals",adjectives:["Optimistic","Outgoing","Observant","Orderly","Original","Outstanding","Overjoyed"]},{emoji:"ð",name:"Rooster",category:"animals",adjectives:["Regal","Relaxed","Resolute","Random","Rapid","Riotous","Ruddy","Rogue","Royal"]},{emoji:"ðĢ",name:"Chick",category:"animals",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ðĶ",name:"Duck",category:"animals",adjectives:["Dapper","Daring","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ðĶ",name:"Owl",category:"animals",adjectives:["Observant","Orderly","Original","Orthodox","Otherworldly","Outstanding","Overachieving"]},{emoji:"ðĶĪ",name:"Dodo",category:"animals",adjectives:["Dapper","Daring","Dangerous","Daft","Dashing","Dauntless","Defiant"]},{emoji:"ðĶ",name:"Parrot",category:"animals",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal"]},{emoji:"ðĶââŽ",name:"Blackbird",category:"animals",adjectives:["Bold","Bright","Brave","Balanced","Boundless","Brilliant","Beautiful"]},{emoji:"ðŠŋ",name:"Goose",category:"animals",adjectives:["Graceful","Grand","Gregarious","Grounded","Growing","Genuine","Gifted"]},{emoji:"ðĒ",name:"Tortoise",category:"animals",adjectives:["Timeless","Thoughtful","Thorough","Tranquil","Traditional","Treasured","True"]},{emoji:"ðĶ",name:"Lizard",category:"animals",adjectives:["Lively","Logical","Lasting","Limitless","Luminous","Lucky","Luxurious"]},{emoji:"ð",name:"Snake",category:"animals",adjectives:["Silent","Smooth","Swift","Sleek","Skilled","Sublime","Subtle"]},{emoji:"ðģ",name:"Whale",category:"animals",adjectives:["Wise","Wonderful","Watchful","Welcoming","Wholesome","Willing","Worthy"]},{emoji:"ðŠļ",name:"Coral",category:"animals",adjectives:["Colorful","Calm","Complex","Creative","Curious","Cheerful","Charming"]},{emoji:"ðĶ",name:"Lobster",category:"animals",adjectives:["Loyal","Lively","Lavish","Logical","Lasting","Laudable","Learned"]},{emoji:"ðĶ",name:"Squid",category:"animals",adjectives:["Swift","Smart","Smooth","Skilled","Sophisticated","Sporty","Snappy"]},{emoji:"ð",name:"Snail",category:"animals",adjectives:["Steady","Smooth","Simple","Serene","Sincere","Skilled","Sweet"]},{emoji:"ð",name:"Caterpillar",category:"animals",adjectives:["Curious","Creative","Careful","Cheerful","Clever","Calm","Cute"]},{emoji:"ðĶ",name:"Cricket",category:"animals",adjectives:["Crazy","Craggy","Creative","Cheerful","Clever","Calm","Coordinated"]},{emoji:"ð·ïļ",name:"Spider",category:"animals",adjectives:["Silent","Swift","Skilled","Smart","Strategic","Steady","Strong"]},{emoji:"ð",name:"Green Apple",category:"food",adjectives:["Able","Ambitious","Adaptable","Affable","Abstract","Academic","Absolute","Accessible"]},{emoji:"ð",name:"Red Apple",category:"food",adjectives:["Able","Ambitious","Adaptable","Affable","Abstract","Academic","Absolute","Accessible"]},{emoji:"ð",name:"Pear",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pirate","Pixelated","Pivotal","Perfect"]},{emoji:"ð",name:"Orange",category:"food",adjectives:["Optimistic","Opulent","Observant","Olympic","Omnipotent","Ontological","Outstanding"]},{emoji:"ð",name:"Lemon",category:"food",adjectives:["Legendary","Lavish","Laudable","Lively","Loving","Loyal","Learned"]},{emoji:"ð",name:"Banana",category:"food",adjectives:["Bubbly","Burly","Balanced","Benevolent","Baffled","Bashful","Bemused"]},{emoji:"ð",name:"Watermelon",category:"food",adjectives:["Wacky","Wealthy","Wakeful","Wonderful","Wild","Watchful","Witty","Winning"]},{emoji:"ð",name:"Grape",category:"food",adjectives:["Great","Gradiated","Grand","Groovy","Gracious","Grounded","Gregarious"]},{emoji:"ð",name:"Strawberry",category:"food",adjectives:["Steel","Stellar","Steady","Strategic","Strong","Stable","Stark","Stacked"]},{emoji:"ðŦ",name:"Blueberry",category:"food",adjectives:["Brave","Bright","Brilliant","Bold","Bouncy","Balanced","Beautiful"]},{emoji:"ð",name:"Cherry",category:"food",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy","Chuffed"]},{emoji:"ð",name:"Peach",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðĨ",name:"Mango",category:"food",adjectives:["Magical","Majestic","Masterful","Maverick","Mellow","Mighty","Mindful"]},{emoji:"ðĨĨ",name:"Coconut",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating","Cute"]},{emoji:"ðĨ",name:"Kiwi",category:"food",adjectives:["Kind","Keen","Knightly","Knowing","Kinetic","Kindred","Kingly"]},{emoji:"ð
",name:"Tomato",category:"food",adjectives:["Tender","Tasty","Tactful","Talented","Tangible","Thorough","Thoughtful"]},{emoji:"ð",name:"Aubergine",category:"food",adjectives:["Artistic","Authentic","Automated","Assertive","Astute","Attractive","Animated"]},{emoji:"ðĨ",name:"Avocado",category:"food",adjectives:["Active","Adaptable","Adept","Admired","Advanced","Adventurous","Affable"]},{emoji:"ðĨĶ",name:"Broccoli",category:"food",adjectives:["Brave","Bright","Brilliant","Bold","Bouncy","Balanced","Beautiful"]},{emoji:"ðĨŽ",name:"Lettuce",category:"food",adjectives:["Lively","Light","Lasting","Logical","Lucid","Luminous","Lustrous"]},{emoji:"ðķïļ",name:"Chilli",category:"food",adjectives:["Charming","Cheerful","Choppy","Chatty","Cheeky","Chiseled","Chirpy","Choosy"]},{emoji:"ðŦ",name:"Pepper",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ð―",name:"Corn",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating"]},{emoji:"ðĨ",name:"Carrot",category:"food",adjectives:["Caring","Cheerful","Clever","Creative","Calm","Careful","Captivating"]},{emoji:"ðŦ",name:"Olive",category:"food",adjectives:["Observant","Original","Optimistic","Orderly","Outstanding","Outgoing","Orthodox"]},{emoji:"ðĨ",name:"Potato",category:"food",adjectives:["Peaceful","Patient","Perky","Playful","Pleasant","Plucky","Proper"]},{emoji:"ðĨ",name:"Croissant",category:"food",adjectives:["Crispy","Crafty","Creative","Cultured","Curious","Careful","Cordial"]},{emoji:"ðĨ",name:"Bread",category:"food",adjectives:["Bright","Balanced","Beautiful","Beneficial","Benevolent","Brave","Brilliant"]},{emoji:"ðĨĻ",name:"Pretzel",category:"food",adjectives:["Peaceful","Perfect","Perky","Playful","Pleasant","Plucky","Proper"]},{emoji:"ð§",name:"Cheese",category:"food",adjectives:["Charming","Cheerful","Cheesy","Chatty","Cheeky","Choice","Chief"]},{emoji:"ðĨ",name:"Egg",category:"food",adjectives:["Earnest","Eager","Easygoing","Eccentric","Educated","Efficient","Elegant"]},{emoji:"ðĨĐ",name:"Steak",category:"food",adjectives:["Steel","Stellar","Steady","Strategic","Strong","Stable","Stark"]},{emoji:"ð",name:"Hotdog",category:"food",adjectives:["Happy","Heroic","Honest","Helpful","Humble","Hearty","Harmonious"]},{emoji:"ð",name:"Burger",category:"food",adjectives:["Bold","Bright","Brave","Balanced","Boundless","Brilliant","Beautiful"]},{emoji:"ð",name:"Fries",category:"food",adjectives:["Friendly","Fresh","Free","Fancy","Fair","Famous","Fantastic"]},{emoji:"ð",name:"Pizza",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðŪ",name:"Taco",category:"food",adjectives:["Tactical","Talented","Tasteful","Tenacious","Thoughtful","Thorough","Timely"]},{emoji:"ðŊ",name:"Wrap",category:"food",adjectives:["Wise","Willing","Witty","Wonderful","Worthy","Watchful","Warm"]},{emoji:"ðĢ",name:"Sushi",category:"food",adjectives:["Super","Surgical","Sublime","Subtle","Sumptuous","Sunny","Superb"]},{emoji:"ðĶ",name:"Ice Cream",category:"food",adjectives:["Iconic","Ideal","Idyllic","Imaginative","Immaculate","Imperial","Impressive"]},{emoji:"ðŋ",name:"Popcorn",category:"food",adjectives:["Positive","Peachy","Pious","Pioneering","Pristine","Pure","Perfect"]},{emoji:"ðĐ",name:"Donut",category:"food",adjectives:["Dapper","Daring","Dazzling","Decent","Dedicated","Definite","Delightful"]},{emoji:"ðŠ",name:"Cookie",category:"food",adjectives:["Colossal","Charismatic","Casual","Courageous","Colorful","Capable","Captivating"]}],a={items:e};exports.default=a;exports.items=e;
|