Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🪚 OmniGraph™ Builder® #43

Merged
merged 14 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 93 additions & 0 deletions packages/ua-utils-evm-hardhat-test/test/builder.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
import { expect } from 'chai'
import hre from 'hardhat'
import { describe } from 'mocha'
import { eidAndDeploymentToPoint, OmniGraphBuilderHardhat } from '@layerzerolabs/ua-utils-evm-hardhat'
import { getNetworkRuntimeEnvironment } from '@layerzerolabs/utils-evm-hardhat'
import { OmniPoint } from '@layerzerolabs/ua-utils'
import assert from 'assert'

describe('builder', () => {
it('should collect all deployed DefaultOApp contracts', async () => {
const britneyEnv = await getNetworkRuntimeEnvironment('britney')
const vengaboysEnv = await getNetworkRuntimeEnvironment('vengaboys')

const britneyDeployment = await britneyEnv.deployments.get('DefaultOApp')
const vengaboysDeployment = await vengaboysEnv.deployments.get('DefaultOApp')

const britneyPoint: OmniPoint = eidAndDeploymentToPoint(britneyEnv.network.config.endpointId, britneyDeployment)
const vengaboysPoint: OmniPoint = eidAndDeploymentToPoint(
vengaboysEnv.network.config.endpointId,
vengaboysDeployment
)

const builder = await OmniGraphBuilderHardhat.fromDeployedContract(hre, 'DefaultOApp')

expect(builder.graph).to.eql({
contracts: [
{
point: vengaboysPoint,
config: undefined,
},
{
point: britneyPoint,
config: undefined,
},
],
connections: [
{
vector: { from: vengaboysPoint, to: britneyPoint },
config: undefined,
},
{
vector: { from: britneyPoint, to: vengaboysPoint },
config: undefined,
},
],
})
})

it('should collect all newly deployed DefaultOApp contracts', async () => {
const britneyEnv = await getNetworkRuntimeEnvironment('britney')
const vengaboysEnv = await getNetworkRuntimeEnvironment('vengaboys')

const [_, deployer] = await britneyEnv.getUnnamedAccounts()
assert(deployer, 'Missing deployer')

const britneyDeployment = await britneyEnv.deployments.deploy('DefaultOApp', {
from: deployer,
skipIfAlreadyDeployed: false,
})
const vengaboysDeployment = await vengaboysEnv.deployments.get('DefaultOApp')

const britneyPoint: OmniPoint = eidAndDeploymentToPoint(britneyEnv.network.config.endpointId, britneyDeployment)
const vengaboysPoint: OmniPoint = eidAndDeploymentToPoint(
vengaboysEnv.network.config.endpointId,
vengaboysDeployment
)

const builder = await OmniGraphBuilderHardhat.fromDeployedContract(hre, 'DefaultOApp')

expect(builder.graph).to.eql({
contracts: [
{
point: vengaboysPoint,
config: undefined,
},
{
point: britneyPoint,
config: undefined,
},
],
connections: [
{
vector: { from: vengaboysPoint, to: britneyPoint },
config: undefined,
},
{
vector: { from: britneyPoint, to: vengaboysPoint },
config: undefined,
},
],
})
})
})
7 changes: 6 additions & 1 deletion packages/ua-utils-evm-hardhat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
"@gnosis.pm/safe-ethers-lib": "^1.0.0",
"@gnosis.pm/safe-service-client": "1.1.1",
"@layerzerolabs/lz-definitions": "~1.5.62",
"@layerzerolabs/ua-utils": "~0.1.0",
"@layerzerolabs/utils-evm-hardhat": "~0.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@types/mocha": "^10.0.6",
"cli-ux": "^6.0.9",
Expand All @@ -49,14 +51,17 @@
"hardhat-deploy": "^0.11.22",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
"typescript": "^5.2.2",
"zod": "^3.22.4"
},
"peerDependencies": {
"@gnosis.pm/safe-core-sdk": "^2.0.0",
"@gnosis.pm/safe-core-sdk-types": "^1.0.0",
"@gnosis.pm/safe-ethers-lib": "^1.0.0",
"@gnosis.pm/safe-service-client": "1.1.1",
"@layerzerolabs/lz-definitions": "~1.5.62",
"@layerzerolabs/ua-utils": "~0.1.0",
"@layerzerolabs/utils-evm-hardhat": "~0.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"ethers": "^5.5.2",
"hardhat": "^2.19.0",
Expand Down
1 change: 1 addition & 0 deletions packages/ua-utils-evm-hardhat/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './omnigraph'
6 changes: 6 additions & 0 deletions packages/ua-utils-evm-hardhat/src/internal/assertions.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import assert from 'assert'
import 'hardhat-deploy/dist/src/type-extensions'
import { HardhatRuntimeEnvironment } from 'hardhat/types'

export const assertHardhatDeploy = (hre: HardhatRuntimeEnvironment) =>
assert(hre.deployments, `You don't seem to be using hardhat-deploy in your project`)
40 changes: 40 additions & 0 deletions packages/ua-utils-evm-hardhat/src/omnigraph/builder.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import 'hardhat-deploy/dist/src/type-extensions'
import type { HardhatRuntimeEnvironment } from 'hardhat/types'
import { OmniGraphBuilder } from '@layerzerolabs/ua-utils'
import { createNetworkLogger, getNetworkRuntimeEnvironment } from '@layerzerolabs/utils-evm-hardhat'
import { contractNameToPoint } from './coordinates'
import { vectorFromNodes } from '@layerzerolabs/ua-utils'
import { ignoreLoopback } from '@layerzerolabs/ua-utils'

export class OmniGraphBuilderHardhat<TNodeConfig, TEdgeConfig> extends OmniGraphBuilder<TNodeConfig, TEdgeConfig> {
static async fromDeployedContract(
hre: HardhatRuntimeEnvironment,
contractName: string
): Promise<OmniGraphBuilder<undefined, undefined>> {
const builder = new OmniGraphBuilder<undefined, undefined>()

for (const networkName of Object.keys(hre.config.networks)) {
const logger = createNetworkLogger(networkName)
const env = await getNetworkRuntimeEnvironment(networkName)
const point = await contractNameToPoint(env, contractName)

if (point == null) {
logger.warn(`Could not find contract '${contractName}'`)
logger.warn(``)
logger.warn(`- Make sure the contract has been deployed`)
logger.warn(`- Make sure to include the endpointId in your hardhat networks config`)

continue
}

builder.addNodes({ point, config: undefined })
}

return builder.reconnect(
ignoreLoopback((from, to) => ({
vector: vectorFromNodes(from, to),
config: undefined,
}))
)
}
}
27 changes: 27 additions & 0 deletions packages/ua-utils-evm-hardhat/src/omnigraph/coordinates.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import 'hardhat-deploy/dist/src/type-extensions'
import '@layerzerolabs/utils-evm-hardhat/type-extensions'
import type { EndpointId } from '@layerzerolabs/lz-definitions'
import type { OmniPoint } from '@layerzerolabs/ua-utils'
import type { Deployment } from 'hardhat-deploy/types'
import { HardhatRuntimeEnvironment } from 'hardhat/types'
import { assertHardhatDeploy } from '@/internal/assertions'

export const contractNameToPoint = async (
hre: HardhatRuntimeEnvironment,
contractName: string
): Promise<OmniPoint | undefined> => {
assertHardhatDeploy(hre)

const eid = hre.network.config.endpointId
if (eid == null) return undefined

const deployment = await hre.deployments.getOrNull(contractName)
if (deployment == null) return undefined

return eidAndDeploymentToPoint(eid, deployment)
}

export const eidAndDeploymentToPoint = (eid: EndpointId, { address }: Deployment): OmniPoint => ({
eid,
address,
})
2 changes: 2 additions & 0 deletions packages/ua-utils-evm-hardhat/src/omnigraph/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './builder'
export * from './coordinates'
32 changes: 22 additions & 10 deletions packages/ua-utils-evm-hardhat/tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
import { defineConfig } from 'tsup'

export default defineConfig({
entry: ['src/tasks/index.ts'],
outDir: './dist/tasks',
clean: true,
dts: true,
sourcemap: true,
splitting: false,
treeshake: true,
format: ['esm', 'cjs'],
})
export default defineConfig([
{
entry: ['src/index.ts'],
outDir: './dist',
clean: true,
dts: true,
sourcemap: true,
splitting: false,
treeshake: true,
format: ['esm', 'cjs'],
},
{
entry: ['src/tasks/index.ts'],
outDir: './dist/tasks',
clean: true,
dts: true,
sourcemap: true,
splitting: false,
treeshake: true,
format: ['esm', 'cjs'],
},
])
1 change: 1 addition & 0 deletions packages/ua-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "~2.6.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"zod": "^3.22.4"
Expand Down
Loading