0.0.28 • Published 8 months ago

@credora/eas-react v0.0.28

Weekly downloads
-
License
ISC
Repository
-
Last release
8 months ago

EAS REACT SDK

EAS React SDK exposes a set of React components that enable schema creation and attestation. These components abstract away the complexities of interacting with the EAS SDK, providing a smooth and efficient development experience.

Installation

To install the EAS React SDK, run the following command:

npm install eas-react

Usage

To use the EAS React SDK in your React application, import the components you need from the eas-react package and integrate them into your components.

EasCreateSchema

import { EasCreateSchema } from "eas-react"

function App() {
  return (
    <div>
      <EasCreateSchema network='sepolia'
          signer={signer!}
          onSchemaCreated={(schemaId) => {
            console.log('Schema created:', schemaId);
            // handle schema creation here
          }}
        />
    </div>
  )
}

EasAttest

import { EasAttest } from "eas-react";

function App() {
  return (
    <div>
      <EasAttest
          text="Attest this Schema"
          schemaId="<SCHEMA_ID>"
          network="sepolia"
          signer={signer!}
          onAttestationComplete={(attestation) => {
            console.log('Attestation complete', attestation);
            // handle attestation here
          }}
        />
    </div>
  )
}
0.0.28

8 months ago

0.0.27

8 months ago

0.0.26

8 months ago

0.0.25

8 months ago

0.0.24

8 months ago

0.0.23

8 months ago

0.0.21

8 months ago

0.0.20

8 months ago

0.0.19

8 months ago

0.0.18

9 months ago

0.0.17

9 months ago

0.0.16

9 months ago