-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add dcl known functions to @radspec helper (#87)
- Loading branch information
1 parent
e306a11
commit debb71c
Showing
4 changed files
with
23 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default { | ||
'setOwnerCutPerMillion(uint256)': 'Set marketplace fees to `$1 / 1000000`%', | ||
'transferMarketplaceOwnership(address)': | ||
'Transfer ownership of the marketplace to `$1`', | ||
'transferOwnership(address)': 'Transfer ownership of the contract to `$1`', | ||
'pause()': 'Pause contract', | ||
'unpause()': 'Unpause Contract`' | ||
} |
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 @@ | ||
import dclKnownFunctions from './decentraland/knownFunctions' | ||
import baseKnownFunctions from './knownFunctions' | ||
|
||
export const knownFunctions = { | ||
...dclKnownFunctions, | ||
...baseKnownFunctions | ||
} |
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