-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #469 from polywrap/prealpha-dev
Prep 0.0.1-prealpha.41
- Loading branch information
Showing
200 changed files
with
5,466 additions
and
1,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ coverage | |
*.log | ||
w3 | ||
.w3 | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.0.1-prealpha.40 | ||
0.0.1-prealpha.41 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
testMatch: ["**/__tests__/**/?(*.)+(spec|test).[jt]s?(x)"] | ||
}; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions
10
packages/apis/ens/meta/queries/configureOpenDomain.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
configureOpenDomain( | ||
tld: $tld | ||
owner: $owner | ||
registrarAddress: $registrarAddress | ||
registryAddress: $registryAddress | ||
resolverAddress: $resolverAddress | ||
connection: { networkNameOrChainId: $network } | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"tld": "", | ||
"owner": "", | ||
"registrarAddress": "", | ||
"registryAddress": "", | ||
"resolverAddress": "", | ||
"network": "" | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/apis/ens/meta/queries/createSubdomainInOpenDomain.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
mutation { | ||
createSubdomainInOpenDomain( | ||
label: $label | ||
domain: $domain | ||
owner: $owner | ||
fifsRegistrarAddress: $fifsRegistrarAddress | ||
registryAddress: $registryAddress | ||
resolverAddress: $resolverAddress | ||
connection: { networkNameOrChainId: $network } | ||
) | ||
} |
9 changes: 9 additions & 0 deletions
9
packages/apis/ens/meta/queries/createSubdomainInOpenDomain.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"label": "", | ||
"domain": "", | ||
"owner": "", | ||
"fifsRegistrarAddress": "", | ||
"registryAddress": "", | ||
"resolverAddress": "", | ||
"network": "" | ||
} |
12 changes: 12 additions & 0 deletions
12
packages/apis/ens/meta/queries/createSubdomainInOpenDomainAndSetContentHash.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
mutation { | ||
createSubdomainInOpenDomainAndSetContentHash( | ||
label: $label | ||
domain: $domain | ||
owner: $owner | ||
fifsRegistrarAddress: $fifsRegistrarAddress | ||
registryAddress: $registryAddress | ||
resolverAddress: $resolverAddress | ||
cid: $cid | ||
connection: { networkNameOrChainId: $network } | ||
) | ||
} |
10 changes: 10 additions & 0 deletions
10
packages/apis/ens/meta/queries/createSubdomainInOpenDomainAndSetContentHash.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"label": "", | ||
"domain": "", | ||
"owner": "", | ||
"fifsRegistrarAddress": "", | ||
"registryAddress": "", | ||
"resolverAddress": "", | ||
"cid": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
mutation { | ||
deployFIFSRegistrar( | ||
registryAddress: $registryAddress | ||
tld: $tld | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"tld": "coolTLD", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getAddress( | ||
domain: $domain | ||
resolverAddress: $resolverAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "web3api.eth", | ||
"resolverAddress": "0x42D63ae25990889E35F215bC95884039Ba354115", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getAddressFromDomain( | ||
domain: $domain | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "mydomain.eth", | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getContentHash( | ||
domain: $domain | ||
resolverAddress: $resolverAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "realens.open.web3api.eth", | ||
"resolverAddress": "0x42D63ae25990889E35F215bC95884039Ba354115", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getExpiryTimes( | ||
domain: $domain | ||
registrarAddress: $registrarAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "", | ||
"registrarAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getNameFromAddress( | ||
address: $address | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"address": "0x61FfE691821291D02E9Ba5D33098ADcee71a3a17", | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getOwner( | ||
domain: $domain | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "open.web3api.eth", | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
query { | ||
getResolver( | ||
domain: $domain | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"domain": "open.web3api.eth", | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
mutation { | ||
registerDomain( | ||
domain: $domain | ||
registrarAddress: $registrarAddress | ||
registryAddress: $registryAddress | ||
owner: $owner | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"domain": "test.yoyo.eth", | ||
"registrarAddress": "0x0B2cE096F3b8e26B1497e81ca69a2b1Be28c7639", | ||
"registryAddress": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e", | ||
"owner": "0x61FfE691821291D02E9Ba5D33098ADcee71a3a17", | ||
"network": "ropsten" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
reverseRegisterDomain( | ||
domain: $domain | ||
reverseRegistryAddress: $reverseRegistryAddress | ||
owner: $owner | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"domain": "", | ||
"reverseRegistryAddress": "", | ||
"owner": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
setAddress( | ||
domain: $domain | ||
address: $address | ||
resolverAddress: $resolverAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"domain": "", | ||
"address": "", | ||
"resolverAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
setContentHash( | ||
domain: $domain | ||
cid: $cid | ||
resolverAddress: $resolverAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"domain": "", | ||
"cid": "", | ||
"resolverAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
setOwner( | ||
domain: $domain | ||
newOwner: $newOwner | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"domain": "", | ||
"newOwner": "", | ||
"registryAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
mutation { | ||
setRecord( | ||
domain: $domain | ||
owner: $owner | ||
resolverAddress: $resolverAddress | ||
ttl: $ttl | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"domain": "", | ||
"owner": "", | ||
"resolverAddress": "", | ||
"ttl": "", | ||
"registryAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
setResolver( | ||
domain: $domain | ||
resolverAddress: $resolverAddress | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"domain": "", | ||
"resolverAddress": "", | ||
"registryAddress": "", | ||
"network": "" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
mutation { | ||
setSubdomainOwner( | ||
subdomain: $subdomain | ||
owner: $owner | ||
registryAddress: $registryAddress | ||
connection: { | ||
networkNameOrChainId: $network | ||
} | ||
) | ||
} |
Oops, something went wrong.