-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install cosmoskit * Working txs * Add leap & cosmostation wallets * Fix homepage * Support mobile wallets * Improve typing * Remove old ConnectWalletModal * Cleanup * Redirect to home when changing selected address * Add bundle analyzer * Make sandbox work * Cleanup suggest code * Cleanup registerTypes * Revert TransactionMessageData * Use custom node * Fix custom rpc * Fix signing client when no wallet connected * Fix keplr mobile issue (session restore) * Remove autofocus on search input * Use new addEndpoints method * Fix leap modal after merge * .
- Loading branch information
Showing
24 changed files
with
5,422 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { akash, akashAssetList } from "./akash"; | ||
|
||
export const akashSandbox = { | ||
...akash, | ||
chain_id: "sandbox-01", | ||
network_type: "sandbox", | ||
chain_name: "akash-sandbox", | ||
pretty_name: "Akash-Sandbox", | ||
apis: { | ||
rpc: [{ address: "https://rpc.sandbox-01.aksh.pw", provider: "ovrclk" }], | ||
rest: [{ address: "https://api.sandbox-01.aksh.pw", provider: "ovrclk" }] | ||
} | ||
}; | ||
|
||
export const akashSandboxAssetList = { ...akashAssetList, chain_name: "akash-sandbox", assets: [...akashAssetList.assets] }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { akash, akashAssetList } from "./akash"; | ||
|
||
export const akashTestnet = { | ||
...akash, | ||
chain_id: "testnet-02", | ||
network_type: "testnet", | ||
chain_name: "akash-testnet", | ||
pretty_name: "Akash-Testnet", | ||
apis: { | ||
rpc: [{ address: "https://rpc.testnet-02.aksh.pw", provider: "ovrclk" }], | ||
rest: [{ address: "https://api.testnet-02.aksh.pw", provider: "ovrclk" }] | ||
} | ||
}; | ||
|
||
export const akashTestnetAssetList = { ...akashAssetList, chain_name: "akash-testnet", assets: [...akashAssetList.assets] }; |
Oops, something went wrong.