Skip to content

Commit 074d350

Browse files
committed
support xdai on multicall
1 parent d1011cc commit 074d350

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,8 @@ by default it looks at your network from the provider you passed in and makes th
462462
- kovan > '0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696'
463463
- rinkeby > '0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696'
464464
- ropsten > '0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696'
465-
- binance smart chain > '0xaf379c844f87a7b47ee6fe5e4a9720988eaea0af'
465+
- binance smart chain > '0xAf379C844f87A7b47EE6fe5E4a9720988EaEA0AF'
466+
- xdai > '0x2325b72990D81892E0e09cdE5C80DD221F147F8B'
466467
467468
If you wanted this to point at a different multicall contract address just pass that in the options when creating the multicall instance, example:
468469

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum-multicall",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result",
55
"main": "dist/index.js",
66
"scripts": {

src/enums/networks.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export enum Networks {
44
rinkeby = 4,
55
bsc = 56,
66
kovan = 42,
7+
xdai = 100,
78
}

src/multicall.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,9 @@ export class Multicall {
513513
case Networks.ropsten:
514514
return '0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696';
515515
case Networks.bsc:
516-
return '0xaf379c844f87a7b47ee6fe5e4a9720988eaea0af';
516+
return '0xAf379C844f87A7b47EE6fe5E4a9720988EaEA0AF';
517+
case Networks.xdai:
518+
return '0x2325b72990D81892E0e09cdE5C80DD221F147F8B';
517519
default:
518520
throw new Error(
519521
`Network - ${network} is not got a contract defined it only supports mainnet, kovan, rinkeby, bsc and ropsten`

0 commit comments

Comments
 (0)