On this page
0 min read
Object to use for address mapping of existing deployed contracts. Key shall be string
and value shall be Address
1const addressMap = {2Messanger: "0x01cf0e2f2f715450",3Logger: "0x179b6b1cb6755e31",4}
Interaction is a Promise or function returning a promise.
1const ix = async () => {2return new Promise((resolve, reject) => {3setTimeout(() => {4resolve(1337)5})6}, 500)7}