Closed llllllluc closed 1 year ago
btw is there a telegram channel or discord to ask questions like this?
change rpc to 1317
gives me
1 of 1 unhandled error
Unhandled Runtime Error
Error: Bad status on response: 501
Call Stack
filterBadStatus
node_modules/@cosmjs/tendermint-rpc/build/rpcclients/http.js (10:0)
async HttpClient.execute
node_modules/@cosmjs/tendermint-rpc/build/rpcclients/httpclient.js (22:0)
async Tendermint34Client.detectVersion
node_modules/@cosmjs/tendermint-rpc/build/tendermint34/tendermint34client.js (68:0)
async Tendermint34Client.create
node_modules/@cosmjs/tendermint-rpc/build/tendermint34/tendermint34client.js (63:0)
async CosmWasmClient.connect
node_modules/@cosmjs/cosmwasm-stargate/build/cosmwasmclient.js (21:0)
this is probably not an issue of shuttle, but wonder anyone has any suggestion
Hi @llllllluc, this is an interesting issue, I haven't tried using shuttle with local terra but will do, let me check it out. We will also take your suggestion into consideration, about the telegram or discord to ask questions about Shuttle.
In the mean time you can DM me in Telegram (@afsardo), that's my handle.
Thank you! @afsardo
@llllllluc here is the Telegram group: DelphiLabsOSS
@llllllluc were you able to make this work? Tbh I haven't tried it yet sorry. Let me know if this is still an issue.
@llllllluc were you able to make this work? Tbh I haven't tried it yet sorry. Let me know if this is still an issue.
i haven't either, will try it soon!
@llllllluc just got the time to test it out and was able to use Shuttle with Station on LocalTerra with the following network config:
import {
Network,
StationExtensionProvider,
WalletExtensionProvider,
} from "@delphi-labs/shuttle-react";
export const LOCAL_TERRA: Network = {
name: "LocalTerra",
chainId: "localterra",
rest: "http://localhost:1317",
rpc: "http://localhost:26657",
};
const extensionProviders: WalletExtensionProvider[] = [
new StationExtensionProvider({
networks: [LOCAL_TERRA],
}),
];
this is my localterra config
but i'm getting this when i try to connect terra station