Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@assetval/address-history

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@assetval/address-history

AssetVal's addresshistory workspace

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
0
Weekly downloads
 
Created
Source

AddressHistory

This is the Veritas AddressHistory Schema workspace.

Installation

yarn add @assetval/addresshistory

Usage

As a Class (Front End)

import { AddressHistory } from '@assetval/addresshistory';

const addresshistory = new AddressHistory();

As Schema (Back End)

import { {AddressHistory}Schema, AddressHistory } from '@assetval/addresshistory';
import { Model } from 'mongoose';

export const {AddressHistory}Model = model<AddressHistory>('{addresshistory}es', {AddressHistory}Schema);

As Validation (Back End)

import { {AddressHistory}ValidationSchema } from '@assetval/addresshistory';
import { z } from 'zod';
import { MagikRoutes } from '../middleware/RouterManager.js';

const ProfileRoute = MagikRoutes.getRouter('/profile');

ProfileRoute.post('/updateAddressHistory', {
  auth: 'ensureAuthenticated',
  validationSchema: z.object({
    body: {AddressHistory}ValidationSchema
  }),
  route: async (req, res): Promise<void> => {
    // Do something
  }
});

License

MIT

Authors

  • Abourass

Contributing

Download the Schema repository and make sure you have the following installed:

  • asdf
  • NodeJS (ASDF)
  • PNPM (Corepack / Node / ASDF)
  • NX

Then run the following commands:

pnpm install

FAQs

Package last updated on 27 Aug 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc