Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Apr 18, 2024
1 parent ccd9a39 commit 2479d78
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 6 deletions.
5 changes: 2 additions & 3 deletions boilerplates/telescope/.github/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ jobs:
- name: Build Project
run: yarn build

- name: Run Parser Tests
run: yarn workspace modulename test
working-directory: packages/modulefolder
- name: Run Tests
run: yarn test
7 changes: 7 additions & 0 deletions boilerplates/telescope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
__MODULEDESC__
</p>

<p align="center" width="100%">
<a href="https://github.com/__USERNAME__/__MODULENAME__/actions/workflows/run-tests.yml">
<img height="20" src="https://github.com/__USERNAME__/__MODULENAME__/actions/workflows/run-tests.yml/badge.svg" />
</a>
<a href="https://github.com/__USERNAME__/__MODULENAME__/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
</p>


## install

Expand Down
1 change: 1 addition & 0 deletions boilerplates/telescope/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build --stream",
"test": "lerna run test --stream --scope __PACKAGE_IDENTIFIER__",
"codegen": "lerna run codegen --stream --scope __PACKAGE_IDENTIFIER__",
"symlink": "symlink-workspace --logLevel error",
"postinstall": "yarn symlink"
Expand Down
7 changes: 7 additions & 0 deletions boilerplates/telescope/packages/telescope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
__MODULEDESC__
</p>

<p align="center" width="100%">
<a href="https://github.com/__USERNAME__/__MODULENAME__/actions/workflows/run-tests.yml">
<img height="20" src="https://github.com/__USERNAME__/__MODULENAME__/actions/workflows/run-tests.yml/badge.svg" />
</a>
<a href="https://github.com/__USERNAME__/__MODULENAME__/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
</p>


## install

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { cosmos } from '../src';

it('cosmos', () => {
const message = cosmos.bank.v1beta1.MessageComposer.fromPartial.send({
amount: [
{
amount: '1',
denom: 'uatom'
}
],
fromAddress: 'myaddress',
toAddress: 'youraddress'
});
expect(message).toMatchSnapshot();
})
7 changes: 7 additions & 0 deletions boilerplates/telescope/packages/telescope/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,12 @@
"devDependencies": {
"@cosmology/telescope": "^1.0.1"
},
"dependencies": {
"@cosmjs/encoding": "0.32.3",
"@cosmjs/math": "0.32.3",
"@cosmjs/amino": "0.32.3",
"@cosmjs/proto-signing": "0.32.3",
"@cosmjs/stargate": "0.32.3"
},
"keywords": []
}

0 comments on commit 2479d78

Please sign in to comment.