ethers.js/src.ts/constants/addresses.ts

9 lines
195 B
TypeScript
Raw Normal View History

2022-09-05 23:14:43 +03:00
/**
* A constant for the zero address.
2022-12-10 02:21:45 +03:00
*
* (**i.e.** ``"0x0000000000000000000000000000000000000000"``)
2022-09-05 23:14:43 +03:00
*/
2022-11-28 05:54:09 +03:00
export const ZeroAddress: string = "0x0000000000000000000000000000000000000000";
2022-09-05 23:14:43 +03:00