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

feat(abis): updated SDK abis and restored tests #1193

Merged
merged 2 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 0 additions & 1 deletion contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ const config: HardhatUserConfig = {
path: "./abi",
runOnCompile: true,
clear: true,
pretty: true,
only: [
"CurrencyManager",
"HypercertMinter",
Expand Down
3 changes: 2 additions & 1 deletion contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hypercerts-org/contracts",
"description": "EVM compatible protocol for managing impact claims",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.6",
"author": {
"name": "Hypercerts Foundation",
"url": "https://github.com/hypercerts-org/hypercerts"
Expand Down Expand Up @@ -65,6 +65,7 @@
"rimraf": "^5.0.5",
"rollup": "^4.0.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-node-polyfills": "^0.2.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"HypercertsExchange": {
"HypercertExchange": {
"address": "0x89524d8a0B1D7742579A7d8AE46D7679a4de1198",
"fullNamespace": "LooksRareProtocol",
"args": [
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export type DeploymentProtocol = {
};

export type DeploymentMarketplace = {
HypercertsExchange: `0x${string}`;
HypercertExchange: `0x${string}`;
TransferManager: `0x${string}`;
OrderValidatorV2A: `0x${string}`;
};
Expand All @@ -49,7 +49,7 @@ export type DeployedChains = keyof typeof DEPLOYMENTS.protocol;
const deployments = {
5: {
...DEPLOYMENTS.protocol["5"],
HypercertsExchange: DEPLOYMENTS.marketplace[5].HypercertsExchange.address,
HypercertExchange: DEPLOYMENTS.marketplace[5].HypercertExchange.address,
TransferManager: DEPLOYMENTS.marketplace[5].TransferManager.address,
OrderValidatorV2A: DEPLOYMENTS.marketplace[5].OrderValidator.address,
},
Expand Down
2 changes: 1 addition & 1 deletion contracts/tasks/deploy-marketplace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ task("deploy-marketplace", "Deploy marketplace contracts and verify")
};

const contracts: ContractDeployments = {
HypercertsExchange: {
HypercertExchange: {
address: hypercertsExchangeCreate2.address,
fullNamespace: "LooksRareProtocol",
args: hypercertsExchangeArgs,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LowLevelHypercertCaller

_LooksRare protocol team (👀,💎)_
_bitbeckers_

> LowLevelHypercertCaller

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OrderStructs

_LooksRare protocol team (👀,💎)_
_LooksRare protocol team (👀,💎); bitbeckers_

> OrderStructs

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"react-toastify": "^9.1.1",
"react-use": "^17.4.0",
"serve": "^14.0.1",
"viem": "1.18.9",
"viem": "1.19.9",
"wagmi": "1.4.5",
"yup": "^0.32.11"
},
Expand Down
Loading
Loading