-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
Added ABI, haskell contract, and purescript for Rarible 721 contract
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE DeriveGeneric #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
{-# LANGUAGE MultiParamTypeClasses #-} | ||
{-# LANGUAGE OverloadedStrings #-} | ||
{-# LANGUAGE QuasiQuotes #-} | ||
|
||
module Pixura.Contracts.ChainlinkEACAggregator where | ||
|
||
import Network.Ethereum.Contract.TH | ||
|
||
[abiFrom|contracts/abis/ChainlinkEACAggregator.json|] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE DeriveGeneric #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
{-# LANGUAGE MultiParamTypeClasses #-} | ||
{-# LANGUAGE OverloadedStrings #-} | ||
{-# LANGUAGE QuasiQuotes #-} | ||
{-# OPTIONS_GHC -fno-warn-unused-matches #-} | ||
|
||
module Pixura.Contracts.KnownOriginDigitalAsset where | ||
|
||
import Network.Ethereum.Contract.TH | ||
|
||
[abiFrom|contracts/abis/KnownOriginDigitalAsset.json|] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE DeriveGeneric #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
{-# LANGUAGE MultiParamTypeClasses #-} | ||
{-# LANGUAGE OverloadedStrings #-} | ||
{-# LANGUAGE QuasiQuotes #-} | ||
{-# OPTIONS_GHC -fno-warn-unused-matches #-} | ||
|
||
module Pixura.Contracts.MakersplaceV2 where | ||
|
||
import Network.Ethereum.Contract.TH | ||
|
||
[abiFrom|contracts/abis/MakersplaceV2.json|] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{-# LANGUAGE DataKinds #-} | ||
{-# LANGUAGE DeriveGeneric #-} | ||
{-# LANGUAGE FlexibleInstances #-} | ||
{-# LANGUAGE MultiParamTypeClasses #-} | ||
{-# LANGUAGE OverloadedStrings #-} | ||
{-# LANGUAGE QuasiQuotes #-} | ||
|
||
module Pixura.Contracts.Rarible where | ||
|
||
import Network.Ethereum.Contract.TH | ||
|
||
[abiFrom|contracts/abis/Rarible.json|] |