Compare commits

..

No commits in common. "develop" and "master" have entirely different histories.

7 changed files with 1 additions and 18285 deletions

View File

@ -1,13 +0,0 @@
name: Build/Publish
on:
push:
branches:
- master
- develop
- develop-*
jobs:
main:
uses: lumeweb/github-node-deploy-workflow/.github/workflows/main.yml@master
secrets: inherit

View File

@ -1,5 +0,0 @@
{
"preset": [
"@lumeweb/node-library-preset"
]
}

View File

@ -1,28 +0,0 @@
# [0.1.0-develop.7](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.6...v0.1.0-develop.7) (2023-10-23)
### Bug Fixes
* update return type ([b369ef0](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/commit/b369ef0be0080a11ac9efc0af3a1aa7e92fccbd7))
# [0.1.0-develop.6](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.5...v0.1.0-develop.6) (2023-10-23)
# [0.1.0-develop.5](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.4...v0.1.0-develop.5) (2023-09-04)
# [0.1.0-develop.4](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.3...v0.1.0-develop.4) (2023-09-03)
# [0.1.0-develop.3](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.2...v0.1.0-develop.3) (2023-09-02)
# [0.1.0-develop.2](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.1.0-develop.1...v0.1.0-develop.2) (2023-08-21)
### Bug Fixes
* **ci:** add missing main and files ([4f258fc](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/commit/4f258fc19bcde9e6cdcc4dac53d7c2a93db5b2d8))
# [0.1.0-develop.1](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/compare/v0.0.1...v0.1.0-develop.1) (2023-08-21)
### Features
* initial version ([950fa42](https://git.lumeweb.com/LumeWeb/kernel-lavanet-client/commit/950fa42698e462252e303ad961d5c0b07c883d8e))

View File

@ -1,6 +1,6 @@
MIT License MIT License
Copyright (c) 2023 Hammer Technologies LLC Copyright (c) 2023 LumeWeb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

18198
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,29 +0,0 @@
{
"name": "@lumeweb/kernel-lavanet-client",
"version": "0.1.0-develop.7",
"type": "module",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "gitea@git.lumeweb.com:LumeWeb/kernel-lavanet-client.git"
},
"devDependencies": {
"@lumeweb/node-library-preset": "^0.2.7",
"presetter": "*"
},
"readme": "ERROR: No README data found!",
"scripts": {
"prepare": "presetter bootstrap",
"build": "run build",
"semantic-release": "semantic-release"
},
"dependencies": {
"@lumeweb/libkernel": "^0.1.0-develop.67"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib"
]
}

View File

@ -1,11 +0,0 @@
import { Client, factory } from "@lumeweb/libkernel/module";
export const MODULE = "zrjTW4BiiJV7U8toTwqEMyzRbBy5G1nkdVRc34nW8LTmkEf";
export class LavaNetClient extends Client {
public async query(chain: string, query: any): Promise<any> {
return this.callModuleReturn("query", { chain, query });
}
}
export const createClient = factory<LavaNetClient>(LavaNetClient, MODULE);