Skip to content

Commit d5d8db3

Browse files
authored
Merge pull request #10 from rabbitholegg/sam/boost-3883-protocol-v2-sdk-creation-flow
Initial SDK release
2 parents a7517f7 + 2bcbb7b commit d5d8db3

File tree

337 files changed

+42070
-5488
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

337 files changed

+42070
-5488
lines changed

.changeset/README.md

+8

.changeset/config.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": [
4+
"@changesets/cli/changelog",
5+
{
6+
"repo": "rabbitholegg/boost-protocol"
7+
}
8+
],
9+
"commit": false,
10+
"fixed": [],
11+
"linked": [],
12+
"access": "restricted",
13+
"baseBranch": "main",
14+
"updateInternalDependencies": "patch",
15+
"ignore": []
16+
}

.changeset/polite-jars-lie.md

+5

.changeset/pre.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"mode": "pre",
3+
"tag": "alpha",
4+
"initialVersions": {
5+
"@boostxyz/evm": "0.0.0-alpha.0",
6+
"@boostxyz/sdk": "0.0.0-alpha.0"
7+
},
8+
"changesets": ["polite-jars-lie"]
9+
}

.github/workflows/on-pull-request.yml

+29
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,32 @@ jobs:
1212
name: Verify
1313
uses: ./.github/workflows/verify.yml
1414
secrets: inherit
15+
docs:
16+
name: Deploy SDK Typedoc
17+
needs: verify
18+
runs-on: ubuntu-latest
19+
timeout-minutes: 15
20+
env:
21+
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
22+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
23+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
24+
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
submodules: recursive
30+
fetch-depth: 0
31+
32+
- name: Install dependencies
33+
uses: ./.github/actions/install-dependencies
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
- name: Install Vercel CLI
37+
run: npm install --global vercel@latest
38+
- name: Pull Vercel Environment Information
39+
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
40+
- name: Build Project Artifacts
41+
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
42+
- name: Deploy Project Artifacts to Vercel
43+
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}

.github/workflows/on-push-to-main.yml

+30
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,36 @@ jobs:
1313
uses: ./.github/workflows/verify.yml
1414
secrets: inherit
1515

16+
docs:
17+
name: Deploy SDK Typedoc
18+
needs: verify
19+
runs-on: ubuntu-latest
20+
timeout-minutes: 15
21+
env:
22+
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
23+
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
24+
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
25+
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v4
29+
with:
30+
submodules: recursive
31+
fetch-depth: 0
32+
33+
- name: Install dependencies
34+
uses: ./.github/actions/install-dependencies
35+
env:
36+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37+
- name: Install Vercel CLI
38+
run: npm install --global vercel@latest
39+
- name: Pull Vercel Environment Information
40+
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
41+
- name: Build Project Artifacts
42+
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
43+
- name: Deploy Project Artifacts to Vercel
44+
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
45+
1646
changesets:
1747
name: Changesets
1848
needs: verify

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,8 @@ coverage
66
tsconfig.tsbuildinfo
77
.DS_Store
88
docs
9+
10+
.env*
11+
!.env.sample
12+
cache
13+
docs

biome.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
"noNamespace": "error",
4242
"noNonNullAssertion": "warn",
4343
"useAsConstAssertion": "warn",
44-
"useBlockStatements": "off"
44+
"useBlockStatements": "off",
45+
"useImportType": "error"
4546
},
4647
"suspicious": {
4748
"noEmptyBlockStatements": "error",

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,20 @@
2828
"@changesets/cli": "^2.27.7",
2929
"@commitlint/cli": "^19.3.0",
3030
"@commitlint/config-conventional": "^19.2.2",
31+
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
32+
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
3133
"@vitest/coverage-v8": "^1.6.0",
34+
"@wagmi/connectors": "^5.0.19",
35+
"@wagmi/core": "^2.11.2",
36+
"find-process": "^1.4.7",
37+
"hardhat": "^2.22.5",
3238
"lefthook": "^1.6.15",
3339
"prettier": "^3.2.5",
3440
"turbo": "^2.0.0",
3541
"typedoc": "^0.26.4",
42+
"typedoc-material-theme": "^1.1.0",
3643
"typescript": "^5.3.3",
44+
"viem": "^2.9.9",
3745
"vite": "^5.2.13",
3846
"vitest": "^1.6.0"
3947
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol/ERC1155Utils.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export interface ERC1155Utils$Type {
1212
"contractName": "ERC1155Utils",
1313
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
1414
"abi": [],
15-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
16-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
15+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
16+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
1717
"linkReferences": {},
1818
"deployedLinkReferences": {}
1919
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol/ERC1155Utils.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"contractName": "ERC1155Utils",
44
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
55
"abi": [],
6-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
7-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
6+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
7+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
88
"linkReferences": {},
99
"deployedLinkReferences": {}
1010
}

packages/evm/artifacts/@openzeppelin/contracts/utils/Arrays.sol/Arrays.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export interface Arrays$Type {
1212
"contractName": "Arrays",
1313
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
1414
"abi": [],
15-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
16-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
15+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
16+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
1717
"linkReferences": {},
1818
"deployedLinkReferences": {}
1919
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@openzeppelin/contracts/utils/Arrays.sol/Arrays.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"contractName": "Arrays",
44
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
55
"abi": [],
6-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
7-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
6+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
7+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
88
"linkReferences": {},
99
"deployedLinkReferences": {}
1010
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export interface Math$Type {
1212
"contractName": "Math",
1313
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
1414
"abi": [],
15-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
16-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
15+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
16+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
1717
"linkReferences": {},
1818
"deployedLinkReferences": {}
1919
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"contractName": "Math",
44
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
55
"abi": [],
6-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
7-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
6+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
7+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
88
"linkReferences": {},
99
"deployedLinkReferences": {}
1010
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@solady/utils/LibClone.sol/LibClone.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ export interface LibClone$Type {
2828
"type": "error"
2929
}
3030
],
31-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
32-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
31+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
32+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
3333
"linkReferences": {},
3434
"deployedLinkReferences": {}
3535
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

packages/evm/artifacts/@solady/utils/LibClone.sol/LibClone.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"type": "error"
2020
}
2121
],
22-
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
23-
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
22+
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
23+
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
2424
"linkReferences": {},
2525
"deployedLinkReferences": {}
2626
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"_format": "hh-sol-dbg-1",
3-
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
3+
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
44
}

0 commit comments

Comments
 (0)