Skip to content

Commit 89f0198

Browse files
committed
chore: fixes and updates
1 parent d0c79dc commit 89f0198

45 files changed

Lines changed: 1140 additions & 1120 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.githooks/pre-commit

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
#!/usr/bin/env sh
22
set -eu
33

4+
# GUI git clients (GitHub Desktop, IDE integrations) launch without the user's
5+
# shell profile, so PATH often misses bun's install directory. Prepend the
6+
# common locations before resolving it.
7+
export PATH="$HOME/.bun/bin:$HOME/.local/bin:/opt/homebrew/bin:/usr/local/bin:$PATH"
8+
9+
if ! command -v bun >/dev/null 2>&1; then
10+
echo "pre-commit: bun was not found on PATH."
11+
echo "Install bun (https://bun.sh) or add its bin directory to your PATH, then commit again."
12+
exit 1
13+
fi
14+
415
echo "Running formatters and linters before commit..."
516
bun run precommit
617

bun.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"cliVersion":"0.18.1","whitelist":null,"chains":{"paseo":"0x21959ec08434c2f5b7fb57d7bc9162d8","bulletin":"0x27e8a965e47dcb1caabe2de360bc1954"},"contracts":{"ink":{},"sol":{}}}

packages/ui/src/components/RegisterModal.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@
197197
<p class="font-semibold mb-1">Pricing by PoP Status:</p>
198198
<ul class="space-y-1 text-left">
199199
<li>• <span class="font-medium">Pop Lite/Full:</span> Free registration</li>
200-
<li>• <span class="font-medium">No Status:</span> Based on name length</li>
200+
<li>
201+
• <span class="font-medium">No Status:</span> Flat refundable deposit
202+
</li>
201203
</ul>
202204
<div class="absolute top-full left-1/2 -translate-x-1/2 -mt-1">
203205
<div class="border-4 border-transparent border-t-gray-900"></div>

packages/ui/src/components/docs/interactive/TryCheckAvailability.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const tokenId = BigInt(keccak256(toHex(label)))
137137
138138
try {
139139
const owner = await client.readContract({
140-
address: '0x329aAA5b6bEa94E750b2dacBa74Bf41291E6c2BD',
140+
address: '0xf7Ad3F44F316C73E4a2b46b1ed48d376bCc9E639',
141141
abi: [{
142142
type: 'function',
143143
name: 'ownerOf',

packages/ui/src/components/docs/interactive/TryClassifyName.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const client = createPublicClient({
130130
const name = '${label}'
131131
132132
const result = await client.readContract({
133-
address: '0x4e8920B1E69d0cEA9b23CBFC87A17Ee6fE02d2d3',
133+
address: '0x4909bFb3f4Fd86244abD6430fDfA0Ce5C91aD0c4',
134134
abi: [{
135135
type: 'function',
136136
name: 'classifyName',

packages/ui/src/components/docs/interactive/TryContentHash.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const name = '${label}'
105105
const node = namehash(\`\${name}.dot\`)
106106
107107
const contentHash = await client.readContract({
108-
address: '0x7756DF72CBc7f062e7403cD59e45fBc78bed1cD7',
108+
address: '0x8A26480b0B5Df3d4D9b95adc24a5Ecb33A5b8F64',
109109
abi: [{
110110
type: 'function',
111111
name: 'text',

packages/ui/src/components/docs/interactive/TryGetText.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const key = '${recordKey}'
116116
const node = namehash(\`\${name}.dot\`)
117117
118118
const value = await client.readContract({
119-
address: '0x7756DF72CBc7f062e7403cD59e45fBc78bed1cD7',
119+
address: '0x8A26480b0B5Df3d4D9b95adc24a5Ecb33A5b8F64',
120120
abi: [{
121121
type: 'function',
122122
name: 'text',

0 commit comments

Comments
 (0)