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) fix typos #144

Merged
merged 43 commits into from
May 29, 2022
Merged
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8d4297c
change base fee uusd to uluna
JSHan94 May 23, 2022
53b04c7
remove codes related to oracle, market, treasury
JSHan94 May 23, 2022
13e4099
update proto package
JSHan94 May 23, 2022
b5dc824
fix core/auth module
JSHan94 May 24, 2022
a52a425
fix core/auth __init__.py
JSHan94 May 24, 2022
7ba314e
add testcases for core/auth
JSHan94 May 24, 2022
c163c6e
fix core/wasm (WIP)
JSHan94 May 24, 2022
b398c1d
fix core/auth tests
JSHan94 May 25, 2022
96ae3ab
fix authAPI
JSHan94 May 25, 2022
212ad5d
fix core/authz module
JSHan94 May 25, 2022
38c92b5
fix core/bank module
JSHan94 May 25, 2022
ba0f10a
fix core/distribution module
JSHan94 May 25, 2022
bc20319
fix core/crisis module
JSHan94 May 25, 2022
d8f89af
fix core/feegrant,gov,params
JSHan94 May 25, 2022
80428e8
fix core/slashing module
JSHan94 May 25, 2022
098dce2
change bombay to pisco
JSHan94 May 25, 2022
0897a0f
fix api/authz
JSHan94 May 25, 2022
308b64e
fix api/bank
JSHan94 May 25, 2022
961795f
check API status before testnet faucet
JSHan94 May 25, 2022
2a61fac
fix api/tx_test
JSHan94 May 26, 2022
9ef9992
test stakingAPI on testnet
JSHan94 May 26, 2022
db94d73
test gov,slashing module on pisco testnet
JSHan94 May 26, 2022
6520297
fix core/wasm module
JSHan94 May 26, 2022
812e576
fix feegrant_test case
JSHan94 May 26, 2022
83e8a39
fix AccessConfig in wasm/data
JSHan94 May 26, 2022
d9fae91
fix msgs in core/wasm
JSHan94 May 26, 2022
42b4252
add proposal in core/wasm
JSHan94 May 26, 2022
3007fd0
fix testcases
JSHan94 May 27, 2022
fa11253
fix moduels to pass testcases
JSHan94 May 27, 2022
794fea1
fix wasm contract_info query
JSHan94 May 28, 2022
d010ba4
fix minor errors
JSHan94 May 28, 2022
bd23060
fix parsing error
JSHan94 May 28, 2022
a0b42b8
change bombay to pisco
JSHan94 May 28, 2022
04ae289
fix integration-tests/contract.py errors
JSHan94 May 28, 2022
f6ec734
remove uusd
JSHan94 May 28, 2022
d0378a7
fix signBytes for test
JSHan94 May 28, 2022
ed7ae1e
fix some testcases to run in localterra
JSHan94 May 28, 2022
ef41203
fix terra-proto to 1.1.0
JSHan94 May 28, 2022
564b085
fix format
JSHan94 May 28, 2022
b8e4b52
remove unnecessary files
JSHan94 May 29, 2022
c110a02
revert time converter
JSHan94 May 29, 2022
3d6cfd1
fix typo
JSHan94 May 29, 2022
be9695a
fix merge conflict
JSHan94 May 29, 2022
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 terra_sdk/client/lcd/lcdclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@


def get_default(chain_id: str) -> [Coins, Numeric]:
if chain_id == "pheonix-1":
if chain_id == "phoenix-1":
return [Coins.from_str("0.15uluna"), Numeric.parse(1.75)]
if chain_id == "pisco-1":
return [Coins.from_str("0.15uluna"), Numeric.parse(1.75)]
Expand Down