
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
steem-auth-vue
Advanced tools
A Vue 3 authentication component for Steem blockchain and Echelon sidechain
A Vue 3 component for Steem blockchain authentication and transactions, with support for Echelon sidechain.
npm install steem-auth-vue
<template>
<div>
<SteemAuth />
</div>
</template>
<script setup>
import { SteemAuth } from 'steem-auth-vue';
import 'steem-auth-vue/dist/style.css'; // Import styles
</script>
You can customize which authentication methods are available by passing props to the SteemAuth component:
<template>
<div>
<!-- Only enable SteemLogin (disable Keychain and direct login) -->
<SteemAuth
:enableSteemLogin="true"
:enableKeychain="false"
:enableDirectLogin="false"
/>
<!-- Only enable Keychain authentication -->
<SteemAuth
:enableSteemLogin="false"
:enableKeychain="true"
:enableDirectLogin="false"
/>
<!-- Only enable direct login with posting key -->
<SteemAuth
:enableSteemLogin="false"
:enableKeychain="false"
:enableDirectLogin="true"
/>
</div>
</template>
<script setup>
import { SteemAuth } from 'steem-auth-vue';
import 'steem-auth-vue/dist/style.css'; // Import styles
</script>
The component supports both light and dark themes. Users can toggle between themes using the built-in theme toggle button. You can also set the default theme:
<template>
<div>
<!-- Start with dark theme by default -->
<SteemAuth :defaultDarkMode="true" @theme-change="handleThemeChange" />
</div>
</template>
<script setup>
import { SteemAuth } from 'steem-auth-vue';
import 'steem-auth-vue/dist/style.css'; // Import styles
const handleThemeChange = (isDark) => {
console.log('Theme changed:', isDark ? 'dark' : 'light');
// You can apply additional theme changes to your app based on this event
};
</script>
Access the authentication state in your components:
<template>
<div>
<p v-if="authStore.state.isAuthenticated">
Logged in as: {{ authStore.state.username }}
</p>
<p v-else>
Not logged in
</p>
</div>
</template>
<script setup>
import { useAuthStore } from 'steem-auth-vue';
const authStore = useAuthStore();
</script>
Use the transaction components to send operations to the Steem blockchain or Echelon sidechain:
<template>
<div>
<SteemAuth />
<!-- For Steem blockchain transactions -->
<SteemTransactions v-if="authStore.state.isAuthenticated" />
<!-- For Echelon sidechain transactions -->
<EchelonTransactions v-if="authStore.state.isAuthenticated" />
</div>
</template>
<script setup>
import { SteemAuth, SteemTransactions, EchelonTransactions, useAuthStore } from 'steem-auth-vue';
import 'steem-auth-vue/dist/style.css'; // Import styles
const authStore = useAuthStore();
</script>
This component supports Echelon, a next generation sidechain for the Steem blockchain that provides advanced features like tokens, NFTs, markets, and staking.
If you need more flexibility than the provided components, you can use the TransactionService directly:
<template>
<div>
<button @click="sendTransfer" :disabled="!authStore.state.isAuthenticated">
Send 0.001 STEEM to recipient
</button>
<div v-if="result">Transaction ID: {{ result }}</div>
<div v-if="error" class="error">{{ error }}</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { useAuthStore, TransactionService } from 'steem-auth-vue';
const authStore = useAuthStore();
const result = ref('');
const error = ref('');
async function sendTransfer() {
try {
// Clear previous results
result.value = '';
error.value = '';
// Set up transaction data
const tx = {
from: authStore.state.username,
to: 'recipient-username',
amount: '0.001 STEEM',
memo: 'Payment for services'
};
// Send the transaction
const response = await TransactionService.send('transfer', tx, {
requiredAuth: 'active' // 'active' or 'posting' depending on operation type
});
// Handle the response
result.value = response.id || response.result?.id;
} catch (err) {
error.value = err instanceof Error ? err.message : 'Failed to send transaction';
}
}
</script>
<template>
<div>
<button @click="approveNode" :disabled="!authStore.state.isAuthenticated">
Approve Node
</button>
<div v-if="result">Transaction ID: {{ result }}</div>
<div v-if="error" class="error">{{ error }}</div>
</div>
</template>
<script setup>
import { ref } from 'vue';
import { useAuthStore, TransactionService } from 'steem-auth-vue';
const authStore = useAuthStore();
const result = ref('');
const error = ref('');
async function approveNode() {
try {
// Clear previous results
result.value = '';
error.value = '';
// Create the custom_json payload for an Echelon operation
const payload = {
required_auths: [authStore.state.username],
required_posting_auths: [],
id: 'sidechain',
json: JSON.stringify({
contract: 'approve_node',
payload: {
target: 'node-account-name'
}
})
};
// Send the transaction
const response = await TransactionService.send('custom_json', payload, {
requiredAuth: 'active'
});
// Handle the response
result.value = response.id || response.result?.id;
} catch (err) {
error.value = err instanceof Error ? err.message : 'Failed to send transaction';
}
}
</script>
For detailed documentation on all available operations:
MIT
Steem Keychain
SteemLogin
Direct Posting Key
Create a .env
file in your project root:
VITE_APP_NAME=your-app-name
# Install dependencies
npm install
# Build the component
npm run build
# Test the component
cd test
npm run dev
Contributions are welcome! Please feel free to submit a Pull Request.
FAQs
A Vue 3 authentication component for Steem blockchain and MeeRay sidechain
The npm package steem-auth-vue receives a total of 6 weekly downloads. As such, steem-auth-vue popularity was classified as not popular.
We found that steem-auth-vue demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.