1.1.5 • Published 4 years ago

@arhamill/cortex v1.1.5

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Cortex: A reactive library for the Corda vault

Guide to usage

Install cortex

npm install @arhamill/cortex

Run the cortex webserver

docker run -p 8080:8080 -v "<cordapp-directory>":/opt/cortex/cordapps arhamill/cortex

Create a corda context and provider component

import { createLinearContext } from '@arhamill/cortex'

const nft = createLinearContext('http://cortex-server-url', 'com.r3.corda.lib.tokens.contracts.states.NonFungibleToken')
const nftContext = nft.linearContext
const NFTProvider = nft.LinearProvider

Add the provider as a parent to any component that needs to consume it (either within itself or any of its children). For convenience this will usually be the App component.

ReactDOM.render(
    <NFTProvider>
        <App />
    </NFTProvider>
, document.getElementById('root'));

Consume the context from any child component!

import React, { useContext } from 'react'

const MyComponent = () => {
    const nfts = useContext(nftContext)

    ...
}

Any component consuming this context will be re-rendered when there is a vault update.

Full API documentation

Create a context provider for token-sdk fungible tokens:

createTokensContext(url)

Create a context provider for any linear state (order of linear ids is preserved):

createLinearContext(url, stateClass)

Create a context provider for any contract state:

createStateContext(url, stateClass)
1.1.6

4 years ago

1.1.5

4 years ago

1.1.4

4 years ago

1.1.1

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago