Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update #70

Open
wants to merge 36 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
69f249c
add planq
beal2912 Feb 29, 2024
1531469
Merge pull request #1 from coinhall/main
beal2912 Mar 12, 2024
46bc6dc
Merge branch 'coinhall:main' into main
beal2912 Mar 23, 2024
121cd22
ajout kava
beal2912 May 15, 2024
66bde9c
Merge branch 'main' of github.com:beal2912/cosmes
beal2912 May 15, 2024
2b466ab
bump version
beal2912 May 15, 2024
7c67f5a
package name
beal2912 May 15, 2024
6915cb3
conf
beal2912 May 15, 2024
0451c38
Merge branch 'main' into main
beal2912 May 23, 2024
74eae35
Ajout elys protobuf
beal2912 May 23, 2024
2f6b84d
Merge branch 'coinhall:main' into main
beal2912 Jun 3, 2024
8320a82
added onomy market proto file
beal2912 Jun 3, 2024
231d42b
Merge branch 'main' of github.com:beal2912/cosmes
beal2912 Jun 3, 2024
41ba629
patch version
beal2912 Jun 7, 2024
b5efe2d
adding algo parameter to mnemonic wallet for being able to switch alg…
beal2912 Jun 8, 2024
8896a7f
ajout signamino
beal2912 Jun 25, 2024
dce3380
ajout signanimo
beal2912 Jun 25, 2024
db8a8a8
correction
beal2912 Jun 25, 2024
bb3fdf9
correction
beal2912 Jun 25, 2024
584bd64
correction
beal2912 Jun 25, 2024
fc5ab6f
set ibc-go to v7.6
beal2912 Jun 25, 2024
cac69db
integrating evmos proto msg
beal2912 Jun 25, 2024
d53279c
pull resquest from coinHall
beal2912 Jul 29, 2024
11582b9
Merge branch 'coinhall-main'
beal2912 Jul 29, 2024
f41bad2
update with pryzm proto
beal2912 Jul 29, 2024
f51f573
correction dymension repo + keplr
beal2912 Jul 30, 2024
2934284
update Dymension protobuf
beal2912 Jul 30, 2024
131981c
integration pull request 10-2024 + add sunrise proto
beal2912 Oct 3, 2024
339e38f
update proto for elys mainnet
beal2912 Dec 16, 2024
b4b0855
update version
beal2912 Dec 16, 2024
3d7f24d
sdk 0.50.10
beal2912 Dec 17, 2024
83434c2
Merge branch 'neutron'
beal2912 Dec 17, 2024
b5063ae
?
beal2912 Dec 17, 2024
a068e9f
ibc-go v 8.5.2
beal2912 Dec 17, 2024
4ae373d
maj neutron
beal2912 Dec 22, 2024
470dee1
ajout milkyway proto
beal2912 Jan 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## `v0.0.71`

### Features

- Add optional `label` field to `ConnectedWallet` instances, which contains the user-defined label of the wallet

### Fixes

- Handle more wallet errors in the `wrap` function

## `v0.0.70`

### Features

- Add legacy amino type to `MsgSend` model
- Add `MsgMigrateContract`, `MsgStoreCode`, `MsgBeginRedelegate`, `MsgDelegate`, `MsgUndelegate`, `MsgWithdrawDelegatorRewards`, `MsgWithdrawValidatorCommission` models
- Add ed25519 signature type

### Fixes

- Add Keplr default sign options to `WalletConnectV2`

## `v0.0.69`

### Chore
Expand Down
10 changes: 5 additions & 5 deletions examples/solid-vite/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const CHAINS: Record<string, string> = {
const WALLETS: Record<WalletName, string> = {
[WalletName.KEPLR]: "Keplr",
[WalletName.COSMOSTATION]: "Cosmostation",
[WalletName.STATION]: "Terra Station",
[WalletName.STATION]: "Station",
[WalletName.LEAP]: "Leap",
[WalletName.COMPASS]: "Compass",
[WalletName.METAMASK_INJECTIVE]: "MetaMask",
Expand Down Expand Up @@ -325,13 +325,13 @@ const App: Component = () => {
Broadcast Tx
</button>

<div class="flex flex-col">
<code>CONNECTED WALLETS</code>
<div class="flex flex-col items-center border py-2 px-4 border-gray-400">
<div class="font-semibold">Connected Wallets</div>
<For each={Object.values(wallets)}>
{(wallet) => (
<code>
{wallet.address.slice(0, 10)}
...{wallet.address.slice(-5)} | {WALLETS[wallet.id]}
{wallet.address.slice(0, 10)}{wallet.address.slice(-5)} [
{WALLETS[wallet.id]}: {wallet.label ?? "-"}]
</code>
)}
</For>
Expand Down
51 changes: 27 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "cosmes",
"version": "0.0.69",
"name": "@beal2912/cosmes",
"version": "0.0.94",
"private": false,
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"sideEffects": false,
"type": "module",
Expand Down Expand Up @@ -44,36 +47,36 @@
"@bufbuild/protobuf": "1.2.0",
"@bufbuild/protoc-gen-es": "1.2.0",
"@bufbuild/protoplugin": "1.2.0",
"@keplr-wallet/types": "^0.11.62",
"@keplr-wallet/types": "^0.11.64",
"@metamask/providers": "^14.0.2",
"@noble/hashes": "^1.3.2",
"@noble/secp256k1": "^2.0.0",
"@scure/base": "^1.1.3",
"@scure/bip32": "^1.3.2",
"@scure/bip39": "^1.2.1",
"@types/degit": "^2.8.3",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@noble/hashes": "^1.4.0",
"@noble/secp256k1": "^2.1.0",
"@scure/base": "^1.1.7",
"@scure/bip32": "^1.4.0",
"@scure/bip39": "^1.3.0",
"@types/degit": "^2.8.6",
"@types/lodash-es": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@walletconnect/legacy-client": "^2.0.0",
"@walletconnect/legacy-types": "^2.0.0",
"@walletconnect/sign-client": "2.8.6",
"@walletconnect/types": "2.8.6",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"degit": "^2.8.4",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"glob": "^10.2.3",
"json-schema-to-typescript": "^13.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"glob": "^10.4.5",
"json-schema-to-typescript": "^13.1.2",
"lodash-es": "^4.17.21",
"postcss": "^8.4.23",
"postcss": "^8.4.40",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"rimraf": "^5.0.0",
"tsc-alias": "^1.8.6",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
"rimraf": "^5.0.9",
"tsc-alias": "^1.8.10",
"tsx": "^3.14.0",
"typescript": "^5.5.4",
"vitest": "^0.31.4"
}
}
Loading