2.1.2 • Published 5 months ago

@stackso/soul-spec-ts v2.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Soul Spec

soul-spec-ts is a TypeScript-based library that provides specifications for actions on the Soul Protocol (soul.xyz). It provides two essential functions:

  1. getRequiredFieldsForAction(action: ActionType) - A helper function that returns a list of required fields to generate a message.

  2. generateMessage(action: ActionType, data: ActionData) - The main function to generate the message for the user to sign. It throws an error if the provided data does not meet the requirement.

Getting Started

To get started, you need to install the package using npm:

npm install soul-spec-ts

Then, you can import and use the functions in your TypeScript or JavaScript project:

import { ActionType, getRequiredFieldsForAction, generateMessage } from 'soul-spec-ts';

// optional: check required fields for an action
const action = ActionType.CREATE_SOUL;
const requiredFields = getRequiredFieldsForAction(action);
console.log(requiredFields);

// generate message to sign
const message = generateMessage({
    action,
    data: {...}, // replace this with actual data
});
console.log(message);

Remember to replace data with your actual data matching the required fields for the chosen action.

Please refer to this file for supported actions: src/actions/ActionType.ts

License

This project is licensed under the terms of the MIT license.

1.2.0

8 months ago

1.1.29

10 months ago

1.1.28

10 months ago

2.1.2

5 months ago

2.1.1

8 months ago

1.1.30

10 months ago

1.1.34

9 months ago

1.1.33

10 months ago

1.1.32

10 months ago

1.1.31

10 months ago

2.1.0

8 months ago

2.0.0

8 months ago

1.1.35

9 months ago

1.1.27

11 months ago

1.1.26

11 months ago

1.1.23

11 months ago

1.1.22

11 months ago

1.1.21

11 months ago

1.1.20

11 months ago

1.1.25

11 months ago

1.1.24

11 months ago

1.1.19

11 months ago

1.1.18

11 months ago

1.1.17

11 months ago

1.1.16

11 months ago

1.1.15

11 months ago

1.1.14

11 months ago

1.1.13

11 months ago

1.1.12

11 months ago

1.1.11

11 months ago

1.1.10

11 months ago

1.1.9

11 months ago

1.1.8

11 months ago

1.1.7

11 months ago

1.1.6

11 months ago

1.1.5

11 months ago

1.1.4

11 months ago

1.1.3

11 months ago

1.1.2

11 months ago

1.1.1

11 months ago

1.1.0

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago