Raw transaction 생성 시 gasPrice를 꼭 넣어야 하는지요?

안녕하세요?
kscn (v1.9.0) 으로 로컬 scn을 구축해서 운용하면 정상적인 코드인데, baobab에서 실행하면 signTransaction 하는 쪽에서 에러가 발생하는 상황입니다.

raw transaction 구성 item은 아래와 같습니다.
{
from = adminKeyring.address;
to = keyring.address;
value = ‘10000000000000000000’;
nonce = await libCaver.getNonce(adminKeyring.address); // nonce값도 정상적으로 얻어옴
gas = ‘50000’;
chainId = ${process.env.CHAIN_ID}; // 1001
feeRatio = 0;
}

1.9.0 버전부터는 gasPrice를 must로 넣어줘야 하는지요? 문의드립니다.

감사합니다.

안녕하세요

공란으로 두실셩우 Caver에서 내부적으로 필드를 채워주는 메커니즘을 가지고 있는데요,
혹시 발생한 에러를 첨부해주시겠어요?

넵 아래 에러 전문입니다.

raw tx: {
    "_type": "TxTypeValueTransfer",
    "_from": "0x08eb1b441f703d450e42483d2263015c05cd7903",
    "_gas": "0xc350",
    "_nonce": "0x7c",
    "_gasPrice": "0x0",
    "_chainId": "0x3e9",
    "_signatures": [
        {
            "_v": "0x01",
            "_r": "0x",
            "_s": "0x"
        }
    ],
    "_to": "0x58545c591e159ac78a2f8409ff09cff683f8dd42",
    "_value": "0x8ac7230489e80000"
}
signed rlp: null
(node:22141) UnhandledPromiseRejectionWarning: #<ErrorResponse>
(Use `node --trace-warnings ...` to show where the warning was created)
(node:22141) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)
(node:22141) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

감사합니다.

현재 테스트를 kas를 이용해서 baobab에 연결해서 하고 있는데 이게 혹시 문제가 될 소지가 있는지 문의드립니다.

kas node 설정정보는 아래와 같습니다.
KAS_X_CHAIN_ID=1001
KAS_ACCESS_KEY=‘my-access-key’
KAS_SECRET_ACCESS_KEY=‘my-secret-access-key’
KAS_NODE_URL=node-api.klaytnapi.com/v1/klaytn

gasPrice문제는 아닐거같습니다.

트랜잭션 생성때부터 코드 스냅을 올려주시면 좋을거같아요