Skip to content

Commit

Permalink
Merge pull request #10 from rabbitholegg/sam/boost-3883-protocol-v2-s…
Browse files Browse the repository at this point in the history
…dk-creation-flow

Initial SDK release
  • Loading branch information
sammccord authored Jul 23, 2024
2 parents a7517f7 + 2bcbb7b commit d5d8db3
Show file tree
Hide file tree
Showing 337 changed files with 42,070 additions and 5,488 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
16 changes: 16 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": [
"@changesets/cli/changelog",
{
"repo": "rabbitholegg/boost-protocol"
}
],
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/polite-jars-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@boostxyz/sdk": major
---

initial sdk alpha release
9 changes: 9 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"mode": "pre",
"tag": "alpha",
"initialVersions": {
"@boostxyz/evm": "0.0.0-alpha.0",
"@boostxyz/sdk": "0.0.0-alpha.0"
},
"changesets": ["polite-jars-lie"]
}
29 changes: 29 additions & 0 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,32 @@ jobs:
name: Verify
uses: ./.github/workflows/verify.yml
secrets: inherit
docs:
name: Deploy SDK Typedoc
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 15
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
30 changes: 30 additions & 0 deletions .github/workflows/on-push-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,36 @@ jobs:
uses: ./.github/workflows/verify.yml
secrets: inherit

docs:
name: Deploy SDK Typedoc
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 15
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}

changesets:
name: Changesets
needs: verify
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ coverage
tsconfig.tsbuildinfo
.DS_Store
docs

.env*
!.env.sample
cache
docs
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"noNamespace": "error",
"noNonNullAssertion": "warn",
"useAsConstAssertion": "warn",
"useBlockStatements": "off"
"useBlockStatements": "off",
"useImportType": "error"
},
"suspicious": {
"noEmptyBlockStatements": "error",
Expand Down
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,20 @@
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@vitest/coverage-v8": "^1.6.0",
"@wagmi/connectors": "^5.0.19",
"@wagmi/core": "^2.11.2",
"find-process": "^1.4.7",
"hardhat": "^2.22.5",
"lefthook": "^1.6.15",
"prettier": "^3.2.5",
"turbo": "^2.0.0",
"typedoc": "^0.26.4",
"typedoc-material-theme": "^1.1.0",
"typescript": "^5.3.3",
"viem": "^2.9.9",
"vite": "^5.2.13",
"vitest": "^1.6.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface ERC1155Utils$Type {
"contractName": "ERC1155Utils",
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "ERC1155Utils",
"sourceName": "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Utils.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122051492cae3ae4df375fdc2822e52906a416fe7ada22de05ff2a39e0237fc1b46364736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220924f25f62396ae568832d3d548ba14cb20d73e680d2e087017be43b3f1c3262a64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface Arrays$Type {
"contractName": "Arrays",
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "Arrays",
"sourceName": "@openzeppelin/contracts/utils/Arrays.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212202f362cca3b8c099b92f3f7bdda6a35b3a437aafeeefc9fd9a059fc689feb097164736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220bf2af3b0b941202955e4b99df1d74ab242967bf667835ba53bf85b8cef9a8a7464736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export interface Math$Type {
"contractName": "Math",
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"contractName": "Math",
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
"abi": [],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122054da9aa0625e097b1311a7043d1ea5179471f1b389bbc95beeb584145f3e11e464736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea26469706673582212203f37521b1f2144c519897c0d6693630121901a1231e4ad1dedc3403dddf4b50c64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export interface LibClone$Type {
"type": "error"
}
],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"type": "error"
}
],
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122044adfd5ebe74ac2414a655ee1e1f173bb1c472efaeb8fd59b05b8d753e39a6de64736f6c63430008190033",
"bytecode": "0x6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"deployedBytecode": "0x730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122083b3c031965781263f8d97eaf0613f741fcc51316de3a612eef4a1a3c727298d64736f6c63430008190033",
"linkReferences": {},
"deployedLinkReferences": {}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"_format": "hh-sol-dbg-1",
"buildInfo": "../../../build-info/0ab469e910ae3035995ca09344e77bdd.json"
"buildInfo": "../../../build-info/e069ca6627b0091d5c780871174cda28.json"
}
Loading

0 comments on commit d5d8db3

Please sign in to comment.