Go to file
Roy Crihfield 66a9b6a4b5
Some checks failed
Tests / sdk_tests (pull_request) Failing after 8m44s
rm debugs
2023-10-20 01:47:11 -05:00
.gitea/workflows typo (#40) 2023-04-20 14:36:32 -05:00
.github/workflows Auction nameservice tests (#28) 2023-02-10 14:44:23 -05:00
proto protobuf query update 2023-10-20 01:20:01 -05:00
scripts combine proto scripts 2023-09-25 19:43:44 +08:00
src rm debugs 2023-10-20 01:47:11 -05:00
.env.example Changes to use laconic-sdk with console-app (#10) 2022-12-09 14:25:13 +05:30
.gitignore Auction nameservice tests (#28) 2023-02-10 14:44:23 -05:00
.npmignore Add .npmignore file to make publish work 2022-12-01 20:24:58 -07:00
DEVELOPMENT.md Replace wrn with crn 2022-04-21 09:44:24 +05:30
Dockerfile-sdk Auction nameservice tests (#28) 2023-02-10 14:44:23 -05:00
entrypoint.sh Auction nameservice tests (#28) 2023-02-10 14:44:23 -05:00
jest.config.js Changes from review 2022-04-21 09:44:24 +05:30
package.json Revert "remaining record types support (#27)" (#35) 2023-03-06 16:54:02 -05:00
README.md quick README update to reflect reality 2023-02-06 12:47:29 -05:00
tsconfig.json Implement setRecord and add test for setAutorityBond 2022-04-21 09:44:24 +05:30
yarn.lock remove hard-coded record types 2023-09-21 19:42:24 +08:00

laconic-sdk

Client library used by TS/JS applications to communicate with laconicd.

Tests

Follow these steps to run the tests:

  • After cloning this repo run:

    yarn
    
  • Copy .env.example file and create a .env file.

  • Clone the laconicd repo and change to repo directory.

  • Run the chain using ./init.sh.

  • Export the private key using:

    laconicd keys export mykey --unarmored-hex --unsafe
    
  • Copy the private key and assign it to variable PRIVATE_KEY in the .env file.

  • Run the tests in laconic-sdk repo:

    yarn test
    
  • Run the tests with auctions enabled

    • In laconicd repo run:

      TEST_AUCTION_ENABLED=true ./init.sh
      
    • Export the private key and change it in .env file again using:

      laconicd keys export mykey --unarmored-hex --unsafe
      
    • Run tests:

      yarn test:auctions
      
  • Run the tests for record and authority expiry

    • In laconicd repo run:

      TEST_REGISTRY_EXPIRY=true ./init.sh
      
    • Export the private key and change it in .env file again using:

      laconicd keys export mykey --unarmored-hex --unsafe
      
    • Run tests:

      yarn test:nameservice-expiry
      

Development

README

Known Issues

  • Passing a float type value in watcher attributes throws error when sending setRecord message.

    failed to execute message; message index: 0: Invalid signature.: unauthorized
    
  • When sending setRecord message, an integer value passed in watcher attributes is parsed as float type in laconicd while unmarshalling json.

  • setRecord message throws error when fileds in Record message are not assigned.

    failed to pack and hash typedData primary type: provided data '<nil>' doesn't match type 'string' [tharsis/ethermint/ethereum/eip712/eip712.go:33]
    

    Passing dummy values to work around issue.