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

chore: cleanup filesnames #85

Merged
merged 30 commits into from
Dec 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
49079e4
updating refs
spoo-bar Jul 11, 2023
607eec2
Rename Account.ts to account.ts
spoo-bar Jul 11, 2023
39f2f12
Rename Contract.ts to contract.ts
spoo-bar Jul 11, 2023
5890d25
Rename AccountDataProvider.ts to accountDataProvider.ts
spoo-bar Jul 11, 2023
be9587b
Rename ContractDataProvider.ts to contractDataProvider.ts
spoo-bar Jul 11, 2023
36725a9
Rename CosmwasmHistoryView.ts to cosmwasmHistoryView.ts
spoo-bar Jul 11, 2023
cc0e609
Rename CosmwasmTerminal.ts to cosmwasmTerminal.ts
spoo-bar Jul 11, 2023
159967e
Rename InitializeViewProvider.ts to initializeViewProvider.ts
spoo-bar Jul 11, 2023
0290430
Rename MigrateViewProvider.ts to migrateViewProvider.ts
spoo-bar Jul 11, 2023
b44b138
Rename QueryProvider.ts to queryProvider.ts
spoo-bar Jul 11, 2023
02b2c06
Rename SignProvider.ts to signProvider.ts
spoo-bar Jul 11, 2023
09f8257
Rename TestExplorer.ts to testExplorer.ts
spoo-bar Jul 11, 2023
a41703b
Rename TxProvider.ts to txProvider.ts
spoo-bar Jul 11, 2023
a337297
Rename WasmVmPanel.ts to wasmVmPanel.ts
spoo-bar Jul 11, 2023
c5c74ef
Rename API.ts to api.ts
spoo-bar Jul 11, 2023
d6e5db8
Rename Executer.ts to executer.ts
spoo-bar Jul 11, 2023
6e21569
Rename SmartExecutor.ts to smartExecutor.ts
spoo-bar Jul 11, 2023
1bc185c
Rename ExtData.ts to extData.ts
spoo-bar Jul 11, 2023
34ec0ca
Rename HistoryHandler.ts to historyHandler.ts
spoo-bar Jul 11, 2023
416bc3b
Rename ResponseHandler.ts to responseHandler.ts
spoo-bar Jul 11, 2023
83c7bb8
Rename Workspace.ts to workspace.ts
spoo-bar Jul 11, 2023
e21de7b
Merge branch 'main' into cleanup
spoo-bar Dec 26, 2023
76e4998
Rename api.ts to api.ts
spoo-bar Dec 26, 2023
a0b4e6c
Rename executer.ts to executer.ts
spoo-bar Dec 26, 2023
99532e4
Rename smartExecutor.ts to smartExecutor.ts
spoo-bar Dec 26, 2023
c257568
Rename ethsecp256k1hdwallet.d.ts to ethsecp256k1hdwallet.d.ts
spoo-bar Dec 26, 2023
66e444f
Rename ethsecp256k1hdwallet.js to ethsecp256k1hdwallet.js
spoo-bar Dec 26, 2023
ba8b3b5
Rename wrapwallet.ts to wrapwallet.ts
spoo-bar Dec 26, 2023
594b4ef
Rename extData.ts to extData.ts
spoo-bar Dec 26, 2023
acf19f8
Rename historyHandler.ts to historyHandler.ts
spoo-bar Dec 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/commands/account.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { WrapWallet } from '../helpers/Sign/wrapwallet';
import { WrapWallet } from '../helpers/sign/wrapwallet';
import { Constants } from '../constants';
import { Cosmwasm, CosmwasmAPI } from '../helpers/cosmwasm/api';
import { Workspace } from '../helpers/workspace';
Expand Down
2 changes: 1 addition & 1 deletion src/commands/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Workspace } from '../helpers/workspace';
import { Contract } from '../models/contract';
import { ContractDataProvider } from '../views/contractDataProvider';
import { CosmwasmTerminal } from '../views/cosmwasmTerminal';
import { WasmVmPanel } from '../views/WasmVmPanel';
import { WasmVmPanel } from '../views/wasmVmPanel';

export class ContractCmds {
public static async Register(context: vscode.ExtensionContext) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/cosmwasm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as vscode from 'vscode';
import { Constants } from '../constants';
import { Executer } from '../helpers/cosmwasm/executer';
import { Workspace } from '../helpers/workspace';
import { CosmwasmHistoryView } from '../views/CosmwasmHistoryView';
import { CosmwasmHistoryView } from '../views/cosmwasmHistoryView';

export class CosmwasmCmds {
public static async Register(context: vscode.ExtensionContext) {
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/Cosmwasm/API.ts → src/helpers/cosmwasm/api.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CodeDetails, CosmWasmClient } from "@cosmjs/cosmwasm-stargate";
import { SigningCosmWasmClient } from "@cosmjs/cosmwasm-stargate";
import { WrapWallet } from '../Sign/wrapwallet';
import { WrapWallet } from '../sign/wrapwallet';
import { GasPrice } from '@cosmjs/stargate';
import { FaucetClient } from "@cosmjs/faucet-client";
import { Contract } from '../../models/contract';
Expand Down Expand Up @@ -194,4 +194,4 @@ export class Cosmwasm {
};
}
}
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SigningCosmWasmClient } from '@cosmjs/cosmwasm-stargate';
import { GasPrice } from '@cosmjs/stargate';
import { WrapWallet } from '../Sign/wrapwallet';
import { WrapWallet } from '../sign/wrapwallet';
import { TextDecoder } from 'util';
import * as vscode from 'vscode';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ export enum Action {
Migrate,
Initialize,
Invalid
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ export class ResponseHandler {
private static outputToTerminal(outputText: string) {
CosmwasmTerminal.output("\n\n"+ outputText);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ class EthSecp256k1HdWallet {
}));
}
}
exports.EthSecp256k1HdWallet = EthSecp256k1HdWallet;
exports.EthSecp256k1HdWallet = EthSecp256k1HdWallet;
File renamed without changes.
2 changes: 1 addition & 1 deletion src/helpers/Workspace.ts → src/helpers/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,4 @@ export class ChainConfig {

return;
}
}
}
2 changes: 1 addition & 1 deletion src/models/Account.ts → src/models/account.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { WrapWallet } from '../helpers/Sign/wrapwallet';
import { WrapWallet } from '../helpers/sign/wrapwallet';
import { ExtData } from '../helpers/extensionData/extData';
import { CosmwasmAPI } from '../helpers/cosmwasm/api';

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -194,4 +194,4 @@ export class CosmwasmHistoryView {
}
}

// run; codiId + contract label; contract addr; queryType; input data;
// run; codiId + contract label; contract addr; queryType; input data;
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@ export class CosmwasmTerminal {
this.terminal.sendText(text, true);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@ export class InitializeViewProvider implements vscode.WebviewViewProvider {
</body>
</html>`;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ export class MigrateViewProvider implements vscode.WebviewViewProvider {
</body>
</html>`;
}
}
}
2 changes: 1 addition & 1 deletion src/views/QueryProvider.ts → src/views/queryProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ export class QueryProvider implements vscode.WebviewViewProvider {
</html>`;
}

}
}
4 changes: 2 additions & 2 deletions src/views/SignProvider.ts → src/views/signProvider.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as vscode from 'vscode';
import { WrapWallet } from '../helpers/Sign/wrapwallet';
import { WrapWallet } from '../helpers/sign/wrapwallet';
import { StdSignDoc } from "@cosmjs/amino";
import { Workspace } from '../helpers/workspace';
import { ResponseHandler } from '../helpers/responseHandler';
Expand Down Expand Up @@ -107,4 +107,4 @@ export class SignProvider implements vscode.WebviewViewProvider {
</html>`;
}

}
}
2 changes: 1 addition & 1 deletion src/views/TestExplorer.ts → src/views/testExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,4 @@ export class TestExplorer {
run.end();

}
}
}
2 changes: 1 addition & 1 deletion src/views/TxProvider.ts → src/views/txProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ export class TxProvider implements vscode.WebviewViewProvider {
</body>
</html>`;
}
}
}
2 changes: 1 addition & 1 deletion src/views/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { SignProvider } from './signProvider';
import { TxProvider } from './txProvider';
import { TextDecoder } from 'util';
import { Account } from '../models/account';
import { TestExplorer } from './TestExplorer';
import { TestExplorer } from './testExplorer';
import { CwSimulateKernel } from '../notebook/cwSimulateKernel';
import { Coin } from '@cosmjs/amino';
var toml = require('toml');
Expand Down
2 changes: 1 addition & 1 deletion src/views/WasmVmPanel.ts → src/views/wasmVmPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,4 +279,4 @@ class Input {
this.id = id;
this.data = data;
}
}
}
Loading