You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
393 B
23 lines
393 B
---
|
|
title: eth_chainId
|
|
description: 获取BUZZUP当前的chainId
|
|
---
|
|
|
|
---
|
|
### 参数
|
|
- 该方法不接受任何参数
|
|
---
|
|
|
|
### 返回值
|
|
|
|
- <div>ChainId<span style={{marginLeft:10,color:'#707070'}}>hex encoded bytes</span></div>
|
|
---
|
|
|
|
### Request
|
|
|
|
```js
|
|
async function getAccounts() {
|
|
const chainId = await window.ethereum.request({ method: 'eth_chainId' });
|
|
console.log(chainId);
|
|
}
|
|
```
|