Skip to content

Commit

Permalink
[Feature] update organization name to terra-money (#486)
Browse files Browse the repository at this point in the history
* org name update to terra-money

* remove circleci
  • Loading branch information
yys authored and yun-yeo committed Aug 11, 2021
1 parent 55417dd commit d727090
Show file tree
Hide file tree
Showing 242 changed files with 1,252 additions and 1,256 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
excludelist="$(find ./ -type f -name '*.go' | xargs grep -l 'DONTCOVER')"
excludelist+=" $(find ./ -type f -name '*.pb.go')"
for filename in ${excludelist}; do
filename=$(echo $filename | sed 's/^./github.com\/terra-project\/core/g')
filename=$(echo $filename | sed 's/^./github.com\/terra-money\/core/g')
echo "Excluding ${filename} from coverage report..."
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
Expand Down
132 changes: 66 additions & 66 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LEDGER_ENABLED ?= true
BINDIR ?= $(GOPATH)/bin
BUILDDIR ?= $(CURDIR)/build
SIMAPP = ./app
HTTPS_GIT := https://github.com/terra-project/core.git
HTTPS_GIT := https://github.com/terra-money/core.git
DOCKER := $(shell which docker)
DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf

Expand Down
29 changes: 13 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@
<p align="center">
Full-node software implementing the Terra protocol<br/><br/>

<a href="https://circleci.com/gh/terra-project/core/tree/develop">
<img src="https://circleci.com/gh/terra-project/core/tree/develop.svg?style=svg&circle-token=9d02a374fccebf599abb8ae363c30e33d45acc6d">
<a href="https://codecov.io/gh/terra-money/core">
<img src="https://codecov.io/gh/terra-money/core/branch/develop/graph/badge.svg">
</a>
<a href="https://codecov.io/gh/terra-project/core">
<img src="https://codecov.io/gh/terra-project/core/branch/develop/graph/badge.svg">
</a>
<a href="https://goreportcard.com/report/github.com/terra-project/core">
<img src="https://goreportcard.com/badge/github.com/terra-project/core">
<a href="https://goreportcard.com/report/github.com/terra-money/core">
<img src="https://goreportcard.com/badge/github.com/terra-money/core">
</a>

</p>
Expand All @@ -26,7 +23,7 @@ Full-node software implementing the Terra protocol<br/><br/>
<br/>
<a href="https://docs.terra.money/dev">Dev Guide</a>
·
<a href="https://pkg.go.dev/github.com/terra-project/core?tab=subdirectories">Go API</a>
<a href="https://pkg.go.dev/github.com/terra-money/core?tab=subdirectories">Go API</a>
·
<a href="https://swagger.terra.money/">REST API</a>
·
Expand All @@ -51,7 +48,7 @@ The Terra blockchain is secured through distributed consensus over native staked

### Binaries

You can find the latest binaries on our [releases](https://github.com/terra-project/core/releases) page.
You can find the latest binaries on our [releases](https://github.com/terra-money/core/releases) page.

### From Source

Expand All @@ -69,10 +66,10 @@ If you haven't already, install Golang by following the [official docs](https://

#### Step 2: Get Terra Core source code

Use `git` to retrieve Terra Core from the [official repo](https://github.com/terra-project/core/), and checkout the `master` branch, which contains the latest stable release. That should install the `terrad` and `terracli` binaries.
Use `git` to retrieve Terra Core from the [official repo](https://github.com/terra-money/core/), and checkout the `master` branch, which contains the latest stable release. That should install the `terrad` and `terracli` binaries.

```bash
git clone https://github.com/terra-project/core/
git clone https://github.com/terra-money/core/
cd core
git checkout master
```
Expand Down Expand Up @@ -189,11 +186,11 @@ Your `terrad` node should now be running a node on `tcp://localhost:26656`, list

### Joining the mainnet

[The mainnet repo](https://github.com/terra-project/mainnet) contains snapshot of the launch as well as network updates.
[The mainnet repo](https://github.com/terra-money/mainnet) contains snapshot of the launch as well as network updates.

### Joining a testnet

[Our testnet repo](https://github.com/terra-project/testnet) contains latest configuration files for the testnet.
[Our testnet repo](https://github.com/terra-money/testnet) contains latest configuration files for the testnet.

## Production Environment

Expand Down Expand Up @@ -291,10 +288,10 @@ journalctl -t terrad -f
- Developer Tools

- SDKs
- [Terra.js](https://www.github.com/terra-project/terra.js) for JavaScript
- [Jigu](https://www.github.com/terra-project/jigu) for Python
- [Terra.js](https://www.github.com/terra-money/terra.js) for JavaScript
- [Jigu](https://www.github.com/terra-money/jigu) for Python
- [Faucet](https://faucet.terra.money) can be used to get tokens for testnets
- [LocalTerra](https://www.github.com/terra-project/LocalTerra) can be used to set up a private local testnet with configurable world state
- [LocalTerra](https://www.github.com/terra-money/LocalTerra) can be used to set up a private local testnet with configurable world state

- Block Explorers

Expand Down
80 changes: 40 additions & 40 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,48 +94,48 @@ import (
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

terraappparams "github.com/terra-project/core/app/params"

customauth "github.com/terra-project/core/custom/auth"
customante "github.com/terra-project/core/custom/auth/ante"
customauthrest "github.com/terra-project/core/custom/auth/client/rest"
customauthsim "github.com/terra-project/core/custom/auth/simulation"
customauthtx "github.com/terra-project/core/custom/auth/tx"
custombank "github.com/terra-project/core/custom/bank"
customcrisis "github.com/terra-project/core/custom/crisis"
customdistr "github.com/terra-project/core/custom/distribution"
customevidence "github.com/terra-project/core/custom/evidence"
customgov "github.com/terra-project/core/custom/gov"
custommint "github.com/terra-project/core/custom/mint"
customparams "github.com/terra-project/core/custom/params"
customslashing "github.com/terra-project/core/custom/slashing"
customstaking "github.com/terra-project/core/custom/staking"
customupgrade "github.com/terra-project/core/custom/upgrade"

"github.com/terra-project/core/x/market"
marketkeeper "github.com/terra-project/core/x/market/keeper"
markettypes "github.com/terra-project/core/x/market/types"
"github.com/terra-project/core/x/oracle"
oraclekeeper "github.com/terra-project/core/x/oracle/keeper"
oracletypes "github.com/terra-project/core/x/oracle/types"
"github.com/terra-project/core/x/treasury"
treasurykeeper "github.com/terra-project/core/x/treasury/keeper"
treasurytypes "github.com/terra-project/core/x/treasury/types"
"github.com/terra-project/core/x/vesting"
"github.com/terra-project/core/x/wasm"
wasmconfig "github.com/terra-project/core/x/wasm/config"
wasmkeeper "github.com/terra-project/core/x/wasm/keeper"
wasmtypes "github.com/terra-project/core/x/wasm/types"

bankwasm "github.com/terra-project/core/custom/bank/wasm"
distrwasm "github.com/terra-project/core/custom/distribution/wasm"
stakingwasm "github.com/terra-project/core/custom/staking/wasm"
marketwasm "github.com/terra-project/core/x/market/wasm"
oraclewasm "github.com/terra-project/core/x/oracle/wasm"
treasurywasm "github.com/terra-project/core/x/treasury/wasm"
terraappparams "github.com/terra-money/core/app/params"

customauth "github.com/terra-money/core/custom/auth"
customante "github.com/terra-money/core/custom/auth/ante"
customauthrest "github.com/terra-money/core/custom/auth/client/rest"
customauthsim "github.com/terra-money/core/custom/auth/simulation"
customauthtx "github.com/terra-money/core/custom/auth/tx"
custombank "github.com/terra-money/core/custom/bank"
customcrisis "github.com/terra-money/core/custom/crisis"
customdistr "github.com/terra-money/core/custom/distribution"
customevidence "github.com/terra-money/core/custom/evidence"
customgov "github.com/terra-money/core/custom/gov"
custommint "github.com/terra-money/core/custom/mint"
customparams "github.com/terra-money/core/custom/params"
customslashing "github.com/terra-money/core/custom/slashing"
customstaking "github.com/terra-money/core/custom/staking"
customupgrade "github.com/terra-money/core/custom/upgrade"

"github.com/terra-money/core/x/market"
marketkeeper "github.com/terra-money/core/x/market/keeper"
markettypes "github.com/terra-money/core/x/market/types"
"github.com/terra-money/core/x/oracle"
oraclekeeper "github.com/terra-money/core/x/oracle/keeper"
oracletypes "github.com/terra-money/core/x/oracle/types"
"github.com/terra-money/core/x/treasury"
treasurykeeper "github.com/terra-money/core/x/treasury/keeper"
treasurytypes "github.com/terra-money/core/x/treasury/types"
"github.com/terra-money/core/x/vesting"
"github.com/terra-money/core/x/wasm"
wasmconfig "github.com/terra-money/core/x/wasm/config"
wasmkeeper "github.com/terra-money/core/x/wasm/keeper"
wasmtypes "github.com/terra-money/core/x/wasm/types"

bankwasm "github.com/terra-money/core/custom/bank/wasm"
distrwasm "github.com/terra-money/core/custom/distribution/wasm"
stakingwasm "github.com/terra-money/core/custom/staking/wasm"
marketwasm "github.com/terra-money/core/x/market/wasm"
oraclewasm "github.com/terra-money/core/x/oracle/wasm"
treasurywasm "github.com/terra-money/core/x/treasury/wasm"

// unnamed import of statik for swagger UI support
_ "github.com/terra-project/core/client/docs/statik"
_ "github.com/terra-money/core/client/docs/statik"
)

const appName = "TerraApp"
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package app
import (
"github.com/cosmos/cosmos-sdk/std"

"github.com/terra-project/core/app/params"
"github.com/terra-money/core/app/params"
)

// MakeEncodingConfig creates an EncodingConfig for testing
Expand Down
2 changes: 1 addition & 1 deletion app/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/staking"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

oracletypes "github.com/terra-project/core/x/oracle/types"
oracletypes "github.com/terra-money/core/x/oracle/types"
)

// ExportAppStateAndValidators exports the state of the application for a genesis
Expand Down
4 changes: 2 additions & 2 deletions app/legacy/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ import (
"github.com/cosmos/cosmos-sdk/x/genutil/types"
staking "github.com/cosmos/cosmos-sdk/x/staking/types"

legacy05 "github.com/terra-project/core/app/legacy/v05"
oracletypes "github.com/terra-project/core/x/oracle/types"
legacy05 "github.com/terra-money/core/app/legacy/v05"
oracletypes "github.com/terra-money/core/x/oracle/types"
)

const (
Expand Down
36 changes: 18 additions & 18 deletions app/legacy/v05/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@ import (
v040staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v040"
v043staking "github.com/cosmos/cosmos-sdk/x/staking/legacy/v043"

v039authcustom "github.com/terra-project/core/custom/auth/legacy/v039"
v040authcustom "github.com/terra-project/core/custom/auth/legacy/v040"
v036distrcustom "github.com/terra-project/core/custom/distribution/legacy/v036"
v036govcustom "github.com/terra-project/core/custom/gov/legacy/v036"
v043govcustom "github.com/terra-project/core/custom/gov/legacy/v043"
v036paramscustom "github.com/terra-project/core/custom/params/legacy/v036"
v038upgradecustom "github.com/terra-project/core/custom/upgrade/legacy/v038"

v043authz "github.com/terra-project/core/custom/authz/legacy/v043"
v04market "github.com/terra-project/core/x/market/legacy/v04"
v05market "github.com/terra-project/core/x/market/legacy/v05"
v04msgauth "github.com/terra-project/core/x/msgauth/legacy/v04"
v04oracle "github.com/terra-project/core/x/oracle/legacy/v04"
v05oracle "github.com/terra-project/core/x/oracle/legacy/v05"
v04treasury "github.com/terra-project/core/x/treasury/legacy/v04"
v05treasury "github.com/terra-project/core/x/treasury/legacy/v05"
v04wasm "github.com/terra-project/core/x/wasm/legacy/v04"
v05wasm "github.com/terra-project/core/x/wasm/legacy/v05"
v039authcustom "github.com/terra-money/core/custom/auth/legacy/v039"
v040authcustom "github.com/terra-money/core/custom/auth/legacy/v040"
v036distrcustom "github.com/terra-money/core/custom/distribution/legacy/v036"
v036govcustom "github.com/terra-money/core/custom/gov/legacy/v036"
v043govcustom "github.com/terra-money/core/custom/gov/legacy/v043"
v036paramscustom "github.com/terra-money/core/custom/params/legacy/v036"
v038upgradecustom "github.com/terra-money/core/custom/upgrade/legacy/v038"

v043authz "github.com/terra-money/core/custom/authz/legacy/v043"
v04market "github.com/terra-money/core/x/market/legacy/v04"
v05market "github.com/terra-money/core/x/market/legacy/v05"
v04msgauth "github.com/terra-money/core/x/msgauth/legacy/v04"
v04oracle "github.com/terra-money/core/x/oracle/legacy/v04"
v05oracle "github.com/terra-money/core/x/oracle/legacy/v05"
v04treasury "github.com/terra-money/core/x/treasury/legacy/v04"
v05treasury "github.com/terra-money/core/x/treasury/legacy/v05"
v04wasm "github.com/terra-money/core/x/wasm/legacy/v04"
v05wasm "github.com/terra-money/core/x/wasm/legacy/v05"
)

func migrateGenutil(oldGenState v039genutil.GenesisState) *types.GenesisState {
Expand Down
6 changes: 3 additions & 3 deletions app/sim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"
"testing"

terraapp "github.com/terra-project/core/app"
"github.com/terra-project/core/app/helpers"
wasmconfig "github.com/terra-project/core/x/wasm/config"
terraapp "github.com/terra-money/core/app"
"github.com/terra-money/core/app/helpers"
wasmconfig "github.com/terra-money/core/x/wasm/config"

"github.com/stretchr/testify/require"
"github.com/tendermint/tendermint/libs/log"
Expand Down
2 changes: 1 addition & 1 deletion cmd/terrad/genaccounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/genutil"
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"

vestingtypes "github.com/terra-project/core/x/vesting/types"
vestingtypes "github.com/terra-money/core/x/vesting/types"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/terrad/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/cosmos/cosmos-sdk/server"
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

terraapp "github.com/terra-project/core/app"
terraapp "github.com/terra-money/core/app"
)

func main() {
Expand Down
12 changes: 6 additions & 6 deletions cmd/terrad/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ import (
"github.com/cosmos/cosmos-sdk/x/crisis"
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"

terraapp "github.com/terra-project/core/app"
terralegacy "github.com/terra-project/core/app/legacy"
"github.com/terra-project/core/app/params"
authcustomcli "github.com/terra-project/core/custom/auth/client/cli"
core "github.com/terra-project/core/types"
wasmconfig "github.com/terra-project/core/x/wasm/config"
terraapp "github.com/terra-money/core/app"
terralegacy "github.com/terra-money/core/app/legacy"
"github.com/terra-money/core/app/params"
authcustomcli "github.com/terra-money/core/custom/auth/client/cli"
core "github.com/terra-money/core/types"
wasmconfig "github.com/terra-money/core/x/wasm/config"
)

// NewRootCmd creates a new root command for terrad. It is called once in the
Expand Down
2 changes: 1 addition & 1 deletion cmd/terrad/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

core "github.com/terra-project/core/types"
core "github.com/terra-money/core/types"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions custom/auth/ante/ante_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
xauthsigning "github.com/cosmos/cosmos-sdk/x/auth/signing"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"

terraapp "github.com/terra-project/core/app"
treasurytypes "github.com/terra-project/core/x/treasury/types"
wasmconfig "github.com/terra-project/core/x/wasm/config"
terraapp "github.com/terra-money/core/app"
treasurytypes "github.com/terra-money/core/x/treasury/types"
wasmconfig "github.com/terra-money/core/x/wasm/config"
)

// AnteTestSuite is a test suite to be used with ante handler tests.
Expand Down
2 changes: 1 addition & 1 deletion custom/auth/ante/spamming_prevention.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"

oracleexported "github.com/terra-project/core/x/oracle/exported"
oracleexported "github.com/terra-money/core/x/oracle/exported"
)

// SpammingPreventionDecorator will check if the transaction's gas is smaller than
Expand Down
4 changes: 2 additions & 2 deletions custom/auth/ante/spamming_prevention_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"

"github.com/terra-project/core/custom/auth/ante"
oracletypes "github.com/terra-project/core/x/oracle/types"
"github.com/terra-money/core/custom/auth/ante"
oracletypes "github.com/terra-money/core/x/oracle/types"
)

func (suite *AnteTestSuite) TestOracleSpamming() {
Expand Down
8 changes: 4 additions & 4 deletions custom/auth/ante/tax.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
authz "github.com/cosmos/cosmos-sdk/x/authz"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"

core "github.com/terra-project/core/types"
marketexported "github.com/terra-project/core/x/market/exported"
oracleexported "github.com/terra-project/core/x/oracle/exported"
wasmexported "github.com/terra-project/core/x/wasm/exported"
core "github.com/terra-money/core/types"
marketexported "github.com/terra-money/core/x/market/exported"
oracleexported "github.com/terra-money/core/x/oracle/exported"
wasmexported "github.com/terra-money/core/x/wasm/exported"
)

// MaxOracleMsgGasUsage is constant expected oracle msg gas cost
Expand Down
8 changes: 4 additions & 4 deletions custom/auth/ante/tax_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
authz "github.com/cosmos/cosmos-sdk/x/authz"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"

"github.com/terra-project/core/custom/auth/ante"
core "github.com/terra-project/core/types"
markettypes "github.com/terra-project/core/x/market/types"
wasmtypes "github.com/terra-project/core/x/wasm/types"
"github.com/terra-money/core/custom/auth/ante"
core "github.com/terra-money/core/types"
markettypes "github.com/terra-money/core/x/market/types"
wasmtypes "github.com/terra-money/core/x/wasm/types"
)

func (suite *AnteTestSuite) TestEnsureMempoolFeesGas() {
Expand Down
2 changes: 1 addition & 1 deletion custom/auth/client/cli/estimate_fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/flags"
authclient "github.com/cosmos/cosmos-sdk/x/auth/client"

feeutils "github.com/terra-project/core/custom/auth/client/utils"
feeutils "github.com/terra-money/core/custom/auth/client/utils"
)

// GetTxFeesEstimateCommand will create a send tx and sign it with the given key.
Expand Down
2 changes: 1 addition & 1 deletion custom/auth/client/rest/estimate_fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/types/rest"

feeutils "github.com/terra-project/core/custom/auth/client/utils"
feeutils "github.com/terra-money/core/custom/auth/client/utils"
)

// EstimateTxFeeRequestHandlerFn returns estimated tx fee. In particular,
Expand Down
Loading

0 comments on commit d727090

Please sign in to comment.