-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Goulding <[email protected]>
- Loading branch information
1 parent
5fd7196
commit 0472d82
Showing
8 changed files
with
136 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import pMemoize from 'p-memoize' | ||
import { OmniCounterApp } from '@/omnicounter/sdk' | ||
import { createEndpointFactory } from '@layerzerolabs/protocol-utils-evm' | ||
import { EndpointFactory } from '@layerzerolabs/protocol-utils/src/index' | ||
import { OAppFactory } from '@layerzerolabs/ua-utils' | ||
import { OmniContractFactory } from '@layerzerolabs/utils-evm' | ||
|
||
/** | ||
* Syntactic sugar that creates an instance of EVM `OmniCounterApp` SDK | ||
* based on an `OmniPoint` with help of an `OmniContractFactory` | ||
* and an (optional) `EndpointFactory` | ||
* | ||
* @param {OmniContractFactory} contractFactory | ||
* @param {EndpointFactory} [endpointFactory] | ||
* @returns {EndpointFactory<Endpoint>} | ||
*/ | ||
export const createOmniCounterAppFactory = ( | ||
contractFactory: OmniContractFactory, | ||
endpointFactory: EndpointFactory = createEndpointFactory(contractFactory) | ||
): OAppFactory<OmniCounterApp> => | ||
pMemoize(async (point) => new OmniCounterApp(await contractFactory(point), endpointFactory)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from './factory' | ||
export * from './sdk' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
packages/ua-utils-evm-hardhat-test/test/oapp/options.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
import { TransactionReceipt } from '@ethersproject/providers' | ||
import { EndpointId, MainnetEndpointId } from '@layerzerolabs/lz-definitions' | ||
import { Options } from '@layerzerolabs/lz-utility-v2' | ||
import { createOmniCounterAppFactory } from '@layerzerolabs/omnicounter-utils-evm' | ||
import { configureOApp } from '@layerzerolabs/ua-utils' | ||
import { omniContractToPoint } from '@layerzerolabs/utils-evm' | ||
import { | ||
createConnectedContractFactory, | ||
createSignerFactory, | ||
OmniGraphBuilderHardhat, | ||
OmniGraphHardhat, | ||
} from '@layerzerolabs/utils-evm-hardhat' | ||
import { setupDefaultEndpoint } from '../__utils__/endpoint' | ||
import { deployOApp } from '../__utils__/oapp' | ||
|
||
describe('oapp/options', () => { | ||
const ethContract = { eid: EndpointId.ETHEREUM_MAINNET, contractName: 'DefaultOApp' } | ||
const avaxContract = { eid: EndpointId.AVALANCHE_MAINNET, contractName: 'DefaultOApp' } | ||
|
||
// This is the OApp config that we want to use against our contracts | ||
const config: OmniGraphHardhat = { | ||
contracts: [ | ||
{ | ||
contract: ethContract, | ||
}, | ||
{ | ||
contract: avaxContract, | ||
}, | ||
], | ||
connections: [ | ||
{ | ||
from: ethContract, | ||
to: avaxContract, | ||
}, | ||
{ | ||
from: avaxContract, | ||
to: ethContract, | ||
}, | ||
], | ||
} | ||
|
||
beforeEach(async () => { | ||
await setupDefaultEndpoint() | ||
await deployOApp() | ||
}) | ||
|
||
it('lzReceive option', async () => { | ||
const contractFactory = createConnectedContractFactory() | ||
const builder = await OmniGraphBuilderHardhat.fromConfig(config) | ||
const sdkFactory = createOmniCounterAppFactory(contractFactory) | ||
const signerFactory = createSignerFactory() | ||
|
||
// And finally the test assertions | ||
const ethPoint = omniContractToPoint(await contractFactory(ethContract)) | ||
const ethSdk = await sdkFactory(ethPoint) | ||
const ethSigner = await signerFactory(ethContract.eid) | ||
|
||
const avaxPoint = omniContractToPoint(await contractFactory(avaxContract)) | ||
const avaxSdk = await sdkFactory(avaxPoint) | ||
const avaxSigner = await signerFactory(avaxContract.eid) | ||
|
||
const transactions = await configureOApp(builder.graph, sdkFactory) | ||
for (const transaction of transactions) { | ||
const signer = transaction.point.eid === MainnetEndpointId.ETHEREUM_MAINNET ? ethSigner : avaxSigner | ||
const txResponse = await signer.signAndSend(transaction) | ||
const txReceipt: TransactionReceipt = await txResponse.wait() | ||
expect(txReceipt.status).toBe(1) | ||
} | ||
|
||
expect(await ethSdk.hasPeer(avaxPoint.eid, avaxPoint.address)).toBe(true) | ||
expect(await avaxSdk.hasPeer(ethPoint.eid, ethPoint.address)).toBe(true) | ||
|
||
const options = Options.newOptions().addExecutorLzReceiveOption(200000) | ||
const incrementTx = { | ||
...(await ethSdk.increment(avaxPoint.eid, 1, options.toHex())), | ||
gasLimit: 2000000, | ||
value: 1000000000000000, | ||
} | ||
const incrementTxResponse = await ethSigner.signAndSend(incrementTx) | ||
const incrementTxReceipt: TransactionReceipt = await incrementTxResponse.wait() | ||
expect(incrementTxReceipt.status).toEqual(1) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters