2023-12-13 17:17:37 +00:00
|
|
|
package e2e_test
|
|
|
|
|
|
|
|
import (
|
2024-04-24 11:41:25 +00:00
|
|
|
"math/big"
|
|
|
|
|
2023-12-13 17:17:37 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (suite *IntegrationTestSuite) TestGrpcClientUtil_Account() {
|
|
|
|
// ARRANGE
|
2024-04-24 11:41:25 +00:00
|
|
|
// setup 0g account
|
|
|
|
zgChainAcc := suite.ZgChain.NewFundedAccount("account-test", sdk.NewCoins(a0gi(big.NewInt(1e5))))
|
2023-12-13 17:17:37 +00:00
|
|
|
|
|
|
|
// ACT
|
2024-04-24 11:41:25 +00:00
|
|
|
rsp, err := suite.ZgChain.Grpc.BaseAccount(zgChainAcc.SdkAddress.String())
|
2023-12-13 17:17:37 +00:00
|
|
|
|
|
|
|
// ASSERT
|
|
|
|
suite.Require().NoError(err)
|
2024-04-24 11:41:25 +00:00
|
|
|
suite.Equal(zgChainAcc.SdkAddress.String(), rsp.Address)
|
2023-12-13 17:17:37 +00:00
|
|
|
suite.Greater(rsp.AccountNumber, uint64(1))
|
|
|
|
suite.Equal(uint64(0), rsp.Sequence)
|
|
|
|
}
|