Connect with Us
Contact & Workshop Inquiries
Get in touch with Dime Staking Handbook Co., Ltd. in Pattaya, Thailand for workshop registrations, advisory scheduling, and curriculum inquiries.
Send Us an Inquiry
Whether you wish to register your engineering team for an upcoming **Validator Operations Workshop**, schedule a **Staking Economics Briefing**, or request an independent **Security Audit**, submit your inquiry below. Our lead engineers review every message and respond within 1 business day.
<!-- Alpine.js Form Component -->
<div
class="form-card"
x-data="{
formData: {
fullName: '',
email: '',
serviceInterest: 'validator-workshop',
message: ''
},
errors: {},
isSubmitting: false,
submitSuccess: false,
submitError: false,
errorMessage: '',
validate() {
this.errors = {};
if (!this.formData.fullName.trim()) {
this.errors.fullName = 'Please enter your full name or team handle.';
}
if (!this.formData.email.trim()) {
this.errors.email = 'Please provide a valid email address.';
} else if (!/^\S+@\S+\.\S+$/.test(this.formData.email)) {
this.errors.email = 'Please enter a well-formed email address.';
}
if (!this.formData.message.trim() || this.formData.message.trim().length < 10) {
this.errors.message = 'Please provide brief details about your inquiry (at least 10 characters).';
}
return Object.keys(this.errors).length === 0;
},
async submitForm() {
if (!this.validate()) return;
this.isSubmitting = true;
this.submitSuccess = false;
this.submitError = false;
try {
const response = await fetch('/api/mock.json', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(this.formData)
});
if (response.ok) {
const data = await response.json();
this.submitSuccess = true;
this.formData = { fullName: '', email: '', serviceInterest: 'validator-workshop', message: '' };
} else {
this.submitError = true;
this.errorMessage = 'Network response error (' + response.status + '). Please try again or email us directly.';
}
} catch (err) {
this.submitError = true;
this.errorMessage = 'Unable to send request. Please check your internet connection or email us directly.';
} finally {
this.isSubmitting = false;
}
}
}"
>
<div x-show="submitSuccess" class="form-alert-success" x-cloak>
<h4 style="color: #fff; margin-bottom: 0.25rem;">Inquiry Received</h4>
<p style="color: #e2e8f0; font-size: 0.95rem; margin-bottom: 0;">Thank you for your message. A member of our technical training team will review your requirements and respond via email within one business day.</p>
</div>
<div x-show="submitError" class="form-alert-error" x-cloak>
<h4 style="color: #ff9999; margin-bottom: 0.25rem;">Submission Failed</h4>
<p style="font-size: 0.95rem; margin-bottom: 0;" x-text="errorMessage"></p>
</div>
<form @submit.prevent="submitForm()" novalidate>
<div class="form-group">
<label class="form-label" for="fullName">Full Name / Engineering Lead *</label>
<input
type="text"
id="fullName"
class="form-control"
placeholder="e.g. Tanawat Siriporn"
x-model="formData.fullName"
:class="{ 'has-error': errors.fullName }"
>
<span class="form-error" x-show="errors.fullName" x-text="errors.fullName" x-cloak></span>
</div>
<div class="form-group">
<label class="form-label" for="email">Work Email Address *</label>
<input
type="email"
id="email"
class="form-control"
placeholder="e.g. engineer@organization.com"
x-model="formData.email"
:class="{ 'has-error': errors.email }"
>
<span class="form-error" x-show="errors.email" x-text="errors.email" x-cloak></span>
</div>
<div class="form-group">
<label class="form-label" for="serviceInterest">Area of Educational Interest</label>
<select id="serviceInterest" class="form-control" x-model="formData.serviceInterest">
<option value="validator-workshop">Validator Operations & Node Workshop ($1,850)</option>
<option value="individual-seat">Individual Workshop Seat ($650)</option>
<option value="staking-briefing">Staking Economics & Yield Briefing ($450)</option>
<option value="security-audit">Node Key Custody & Security Audit ($1,200)</option>
<option value="custom-training">Custom Enterprise Training / On-site in Pattaya</option>
<option value="general-inquiry">General Handbook Question</option>
</select>
</div>
<div class="form-group">
<label class="form-label" for="message">Project Scope & Technical Objectives *</label>
<textarea
id="message"
class="form-control"
placeholder="Please describe your current infrastructure setup, team size, desired timeline, or specific questions..."
x-model="formData.message"
:class="{ 'has-error': errors.message }"
></textarea>
<span class="form-error" x-show="errors.message" x-text="errors.message" x-cloak></span>
</div>
<button type="submit" class="btn btn-primary btn-block" :disabled="isSubmitting">
<span x-show="!isSubmitting">Submit Inquiry</span>
<span x-show="isSubmitting" x-cloak>Transmitting...</span>
</button>
</form>
</div>
Registered Operations Office
Our training and research operations are based in Pattaya, Thailand. We welcome scheduled visits from engineering cohorts and prospective participants.
<div style="background: var(--bg-glass); border: 1px solid var(--border-glass); border-radius: var(--radius-md); padding: 2rem; margin-top: 1.5rem;">
<h3 style="font-size: 1.15rem; margin-bottom: 1.25rem;">Direct Coordinates</h3>
<div style="margin-bottom: 1.25rem;">
<div class="mono" style="font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;">Physical Office</div>
<div style="color: #fff; font-size: 1rem; font-weight: 500;">Office 6, 64 Sample Road, Pattaya 00000</div>
<div style="color: var(--text-secondary); font-size: 0.85rem;">Kingdom of Thailand</div>
</div>
<div style="margin-bottom: 1.25rem;">
<div class="mono" style="font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;">Telephone Support</div>
<div style="color: #fff; font-size: 1rem; font-weight: 500;" class="mono">+66 38 000 874</div>
<div style="color: var(--text-secondary); font-size: 0.85rem;">Mon–Fri 09:00–18:00 (ICT / UTC+7)</div>
</div>
<div style="margin-bottom: 1.25rem;">
<div class="mono" style="font-size: 0.8rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;">Electronic Mail</div>
<div style="color: var(--accent-turquoise); font-size: 1rem; font-weight: 500;" class="mono">contact@hub-axispoint.click</div>
<div style="color: var(--text-secondary); font-size: 0.85rem;">Average response time: 24 business hours</div>
</div>
<div style="margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); font-size: 0.85rem; color: var(--text-muted);">
<strong>Visiting Note:</strong> In-person consultations and on-site workshop attendance must be scheduled in advance to ensure classroom workstation availability.
</div>
</div>