-
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.
Wallet connect & sign arbitrary (#268)
- Loading branch information
1 parent
48d855b
commit 06b5431
Showing
58 changed files
with
3,652 additions
and
65 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
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,17 @@ | ||
import { AssetList } from "@chain-registry/types"; | ||
|
||
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: AssetList = { ...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,17 @@ | ||
import { AssetList } from "@chain-registry/types"; | ||
|
||
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: AssetList = { ...akashAssetList, chain_name: "akash-testnet", assets: [...akashAssetList.assets] }; |
Oops, something went wrong.