config.terrain.json is the name generated by terrain, but the cw20 tutorial used terrain.config.json.
cw20_factory_token is named as cw20-factory-token in crates.io, maybe we should change all naming to cw20-factory-token in the tutorial when creating this new contract.
instantiate_contract and contract_address in test.rs are named instantiate and _contract_address in contract.rs.
Need to use the same name in contract.rs as in test.rs to pass unit test.
config.terrain.json
is the name generated by terrain, but the cw20 tutorial usedterrain.config.json
.cw20_factory_token
is named ascw20-factory-token
in crates.io, maybe we should change all naming tocw20-factory-token
in the tutorial when creating this new contract.instantiate_contract
andcontract_address
intest.rs
are namedinstantiate
and_contract_address
incontract.rs
. Need to use the same name incontract.rs
as intest.rs
to pass unit test.